diff --git a/app/src/processing/app/I18n.java b/app/src/processing/app/I18n.java index d87442c0a..6cc2312af 100644 --- a/app/src/processing/app/I18n.java +++ b/app/src/processing/app/I18n.java @@ -13,8 +13,10 @@ package processing.app; -import java.util.*; import java.text.MessageFormat; +import java.util.Locale; +import java.util.MissingResourceException; +import java.util.ResourceBundle; public class I18n { // start using current locale but still allow using the dropdown list later @@ -28,23 +30,24 @@ public class I18n { static String PROMPT_OK; static String PROMPT_BROWSE; - static protected void init (String language) throws MissingResourceException { - // there might be a null pointer exception ... most likely will never happen but the jvm gets mad - try { - if (language != null && language.trim().length() > 0) { - Locale locale = new Locale(language); - i18n = ResourceBundle.getBundle("processing.app.i18n.Resources", locale); - Locale.setDefault(locale); - } else { - i18n = ResourceBundle.getBundle("processing.app.i18n.Resources", Locale.getDefault()); - } - PROMPT_YES = _("Yes"); - PROMPT_NO = _("No"); - PROMPT_CANCEL = _("Cancel"); - PROMPT_OK = _("OK"); - PROMPT_BROWSE = _("Browse"); - } catch (java.lang.NullPointerException e) { + static protected void init(String language) throws MissingResourceException { + String[] languageParts = language.split("_"); + Locale locale = Locale.getDefault(); + // both language and country + if (languageParts.length == 2) { + locale = new Locale(languageParts[0], languageParts[1]); + // just language + } else if (languageParts.length == 1 && !"".equals(languageParts[0])) { + locale = new Locale(languageParts[0]); } + // there might be a null pointer exception ... most likely will never happen but the jvm gets mad + Locale.setDefault(locale); + i18n = ResourceBundle.getBundle("processing.app.i18n.Resources", Locale.getDefault()); + PROMPT_YES = _("Yes"); + PROMPT_NO = _("No"); + PROMPT_CANCEL = _("Cancel"); + PROMPT_OK = _("OK"); + PROMPT_BROWSE = _("Browse"); } public static String _(String s) { @@ -54,18 +57,18 @@ public class I18n { } catch (MissingResourceException e) { res = s; } - + // The single % is the arguments selector in .PO files. // We must put double %% inside the translations to avoid // getting .PO processing in the way. res = res.replace("%%", "%"); - + return res; } - public static String format(String fmt, Object ... args) { + public static String format(String fmt, Object... args) { // Single quote is used to escape curly bracket arguments. - + // - Prevents strings fixed at translation time to be fixed again fmt = fmt.replace("''", "'"); // - Replace ' with the escaped version '' @@ -73,10 +76,10 @@ public class I18n { return MessageFormat.format(fmt, args); } - + /** * Does nothing. - * + *
* This method is an hack to extract words with gettext tool. */ protected static void unusedStrings() { diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 6ff2d5ab9..b90e8f210 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -95,23 +95,28 @@ public class Preferences { new Language(_("System Default"), "", ""), new Language(_("Arabic"), "العربية", "ar"), new Language(_("Aragonese"), "Aragonés", "an"), + new Language(_("Belarusian"), "Беларуская мова", "be"), new Language(_("Bulgarian"), "български", "bg"), new Language(_("Catalan"), "Català", "ca"), - new Language(_("Croatian"), "Hrvatski", "hr_HR"), - new Language(_("Czech"), "český", "cs_CZ"), new Language(_("Chinese Simplified"), "简体中文", "zh_CN"), new Language(_("Chinese Traditional"), "繁體中文", "zh_TW"), + new Language(_("Croatian"), "Hrvatski", "hr_HR"), + new Language(_("Czech"), "český", "cs_CZ"), new Language(_("Danish"), "Dansk", "da_DK"), new Language(_("Dutch"), "Nederlands", "nl"), new Language(_("English"), "English", "en"), + new Language(_("English (United Kingdom)"), "English (United Kingdom)", "en_GB"), new Language(_("Estonian"), "Eesti", "et"), - new Language(_("Filipino"), "Pilipino", "tl"), + new Language(_("Estonian (Estonia)"), "Eesti keel", "et_EE"), + new Language(_("Filipino"), "Pilipino", "fil"), + new Language(_("Finnish"), "Suomi", "fi"), new Language(_("French"), "Français", "fr"), new Language(_("Canadian French"), "Canadienne-français", "fr_CA"), new Language(_("Galician"), "Galego", "gl"), new Language(_("Georgian"), "საქართველოს", "ka_GE"), new Language(_("German"), "Deutsch", "de_DE"), new Language(_("Greek"), "ελληνικά", "el_GR"), + new Language(_("Hebrew"), "עברית", "he"), new Language(_("Hindi"), "हिंदी", "hi"), new Language(_("Hungarian"), "Magyar", "hu"), new Language(_("Indonesian"), "Bahasa Indonesia", "id"), @@ -120,7 +125,6 @@ public class Preferences { new Language(_("Korean"), "한국어", "ko_KR"), new Language(_("Latvian"), "Latviešu", "lv_LV"), new Language(_("Lithuaninan"), "Lietuvių Kalba", "lt_LT"), - new Language(_("Marathi"), "मराठी", "mr"), new Language(_("Norwegian Bokmål"), "Norsk bokmål", "nb_NO"), new Language(_("Persian"), "فارسی", "fa"), new Language(_("Polish"), "Język Polski", "pl"), @@ -128,15 +132,19 @@ public class Preferences { new Language(_("Portuguese (Portugal)"), "Português (Portugal)", "pt_PT"), new Language(_("Romanian"), "Română", "ro"), new Language(_("Russian"), "Русский", "ru"), + new Language(_("Slovenian"), "Slovenščina", "sl_SI"), new Language(_("Spanish"), "Español", "es"), + new Language(_("Swedish"), "Svenska", "sv"), new Language(_("Tamil"), "தமிழ்", "ta"), new Language(_("Turkish"), "Türk", "tr"), - new Language(_("Ukrainian"), "Український", "uk"), }; + new Language(_("Ukrainian"), "Український", "uk"), + new Language(_("Vietnamese"), "Tiếng Việt", "vi"), + }; + // Incomplete languages Language missingLanguages[] = { new Language(_("Armenian"), "Հայերեն", "hy"), new Language(_("Asturian"), "Asturianu", "ast"), - new Language(_("Belarusian"), "Беларуская мова", "be"), new Language(_("Bosnian"), "Bosanski", "bs"), new Language(_("Burmese (Myanmar)"), "ဗမာစကား", "my_MM"), new Language(_("Chinese (China)"), "", "zh_CN"), @@ -144,16 +152,10 @@ public class Preferences { new Language(_("Chinese (Taiwan)"), "", "zh_TW"), new Language(_("Chinese (Taiwan) (Big5)"), "", "zh_TW.Big5"), new Language(_("Dutch (Netherlands)"), "Nederlands", "nl_NL"), - new Language(_("English (United Kingdom)"), "English (United Kingdom)", "en_GB"), - new Language(_("Estonian (Estonia)"), "Eesti keel", "et_EE"), - new Language(_("Finnish"), "Suomi", "fi"), - new Language(_("Hebrew"), "עברית", "he"), new Language(_("Nepali"), "नेपाली", "ne"), - new Language(_("Norwegian"), "Norsk", "no_NB"), + new Language(_("Marathi"), "मराठी", "mr"), new Language(_("Portugese"), "Português", "pt"), - new Language(_("Slovenian"), "Slovenščina", "sl_SL"), - new Language(_("Swedish"), "Svenska", "sv"), - new Language(_("Vietnamese"), "Tiếng Việt", "vi"), }; + }; /** * Standardized width for buttons. Mac OS X 10.3 wants 70 as its default, diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 56fa84a44..7ddf6760d 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -1424,10 +1424,7 @@ public class Sketch { importedLibraries = new LibraryList(); for (String item : preprocessor.getExtraImports()) { - Library lib = Base.importToLibraryTable.get(item); - //If needed can Debug libraryPath here - if (lib != null && !importedLibraries.contains(lib)) { importedLibraries.add(lib); } diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index 56f2c8867..5a2c1f46d 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -75,7 +75,7 @@ public class Compiler implements MessageConsumer { String _primaryClassName, boolean _verbose) throws RunnerException { sketch = _sketch; - verbose = _verbose; + verbose = _verbose || Preferences.getBoolean("build.verbose"); sketchIsCompiled = false; objectFiles = new ArrayListClosing the last open sketch will quit Arduino." msgstr "" -"
Yes \n" -"seguro que quiers salir-ne?Si zarras o zaguer sketch ubierto se " -"zarrará\n" -"Arduino." -#: Editor.java:2006 +#: Editor.java:2053 msgid "" -"
Do you " +" Do you " "want to save changes to this sketchIf you don't " "save, your changes will be lost." msgstr "" -"
Quiers " -"alzar os cambeos feitos a iste sketchSi no los "
-"alzas, os cambeos se perderán."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "Ya existe un fichero clamau \"{0}\" en \"{1}\""
+msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr "Ya existe una carpeta clamada \"{0}\". No s'ha puesto ubrir o sketch."
+msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -82,26 +72,22 @@ msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
msgstr ""
-"Una nueva versión d'Arduino ye disponible,\n"
-"Te fería goyo de visitar agora a pachina de descargas d'Arduino?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
msgstr ""
-"S'ha trobau un problema entre que se miraba d'ubrir o\n"
-"fichero utilizau ta alzar o resultau d'a consola."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
-msgstr "Arredol d'Arduino"
+msgstr ""
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "Adhibir un Fichero..."
+msgstr ""
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
msgstr ""
@@ -111,45 +97,38 @@ msgid ""
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
msgstr ""
-"Ha ocurriu una error entre que se miraba d'apanyar a codificación d'o\n"
-"fichero. No intentes alzar iste sketch porque puede sobrescribir a versión\n"
-"anterior. Utiliza Ubrir ta reabrir o sketch y intenta de nuevo.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
msgstr ""
-"S'ha trobau una error desconoixida entre que\n"
-"se cargaba o codigo especifico ta la tuya plataforma."
-#: Preferences.java:84
+#: Preferences.java:85
msgid "Arabic"
msgstr ""
-#: Preferences.java:85
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Archivar o sketch"
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Archivar o sketch como:"
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "S'ha cancelau l'archivo d'o sketch."
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
msgstr ""
-"S'ha cancelau l'archivo d'o sketch porque\n"
-"o sketch no s'ha puesto alzar correctament."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -159,131 +138,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
msgstr ""
-"Arduino no puede executar porque no ha puesto\n"
-"creyar una carpeta ta alzar a tuya configuración."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
msgstr ""
-"Arduino no se puede executar porque no ha puesto\n"
-"creyar una carpeta ta alzar o tuyo sketchbook."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
msgstr ""
-"Arduino requiere o JDK completo (no nomás o JRE)\n"
-"ta funcionar. Por favor instala o JDK 1.5 u superior.\n"
-"Podrás trobar mas información en a referencia."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Yes seguro que quiers borrar \"{0}\"?"
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Yes seguro que quiers borrar iste sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Formato automatico"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr "S'ha cancelau o formato automatico: masiaus gafetz cuchos."
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr "S'ha cancelau o formato automatico: masiaus parentesis cuchos."
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr "S'ha cancelau o formato automatico: masiaus gafetz dreitos."
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr "S'ha cancelau o formato automatico: masiaus parentesis dreitos."
+msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "S'ha rematau o formato automatico."
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Asociar automaticament fichers .ino con Arduino"
+msgstr ""
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Desplazamiento automatico"
-
-#: Editor.java:2572
-#, java-format
-msgid "Bad error line: {0}"
-msgstr "Linia d'error incorrecta: {0}"
-
-#: Editor.java:2089
-msgid "Bad file selected"
-msgstr "O fichero seleccionau ye incorrecto"
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
msgstr ""
-#: Editor.java:682
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Tarcheta"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "Totz dos NL & CR"
+msgstr ""
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Navegar"
+msgstr ""
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "A carpeta de construcción ha despareixiu u no s'ha puesto escribir"
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "Gravar o bootloader"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
msgstr ""
-"Se ye gravando o bootloader en a tarcheta I/O (podría tardar un "
-"minuto)..."
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -293,103 +279,119 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
-msgstr "Cancelar"
+msgstr ""
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr "No se puede renombrar"
+msgstr ""
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Retorno de Carro (CR)"
-
-#: Preferences.java:86
-msgid "Catalan"
-msgstr "Catalán"
-
-#: Preferences.java:403
-msgid "Check for updates on startup"
-msgstr "Verificar actualizacions en empecipiar"
+msgstr ""
#: Preferences.java:87
-msgid "Chinese Simplified"
-msgstr "Chinés Simplificau"
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
-msgstr "Zarrar"
+msgstr ""
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "Comentar/Descomentar "
+msgstr ""
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Error de compilación, por favor ninvia iste codigo a {0}"
+msgstr ""
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Compilando o sketch..."
+msgstr ""
#: EditorConsole.java:152
msgid "Console Error"
-msgstr "S'ha trobau una error de consola"
+msgstr ""
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
-msgstr "Copiar"
+msgstr ""
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "Copiar como HTML"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Copiar ta'l Foro"
+msgstr ""
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "No s'ha puesto adhibir ''{0}'' a lo sketch."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "No s'ha puesto copiar a una ubicación apropiada."
+msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "No s'ha puesto creyar a carpeta d'o sketch."
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr "No s'ha puesto creyar o sketch."
+msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "No s'ha puesto borrar \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "No s'ha puesto borrar o fichero existent ''{0}''."
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "No s'ha puesto borrar {0}"
+msgstr ""
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -406,98 +408,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
msgstr ""
-"No s'ha puesto ubrir a URL\n"
-"{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
msgstr ""
-"No s'ha puesto ubrir a carpeta\n"
-"{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
msgstr ""
-"No s'ha puesto tornar a alzar o sketch adequadament. Talment tiengas \n"
-"problemas en iste punto, y siga hora de copiar y apegar o tuyo codigo en \n"
-"belatro editor."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "No s'ha puesto tornar a alzar o sketch"
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
msgstr ""
-"No s'ha puesto leyer a configuración d'esquema de color. \n"
-"Te caldrá tornar a instalar Processing."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
msgstr ""
-"No s'ha puesto leyer a configuración predeterminada.\n"
-"Te caldrá tornar a instalar Arduino."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "No s'ha puesto leyer as preferencias de {0}"
+msgstr ""
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "No s'ha puesto eliminar a versión anterior de {0}"
+msgstr ""
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "No s'ha puesto renombrar \"{0}\" como \"{1}\""
+msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "No s'ha puesto renombrar o sketch. (0)"
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "No s'ha puesto renombrar o sketch. (1)"
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "No s'ha puesto renombrar o sketch. (2)"
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr "No s'ha puesto reemplazar {0}"
+msgstr ""
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "No s'ha puesto archivar o sketch"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "No s'ha puesto determinar a grandaria d'o programa: {0}"
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "No s'ha puesto fer"
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -508,108 +499,114 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
-msgstr "Retallar"
+msgstr ""
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
-msgstr "Danés"
+msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Reducir o sangrau"
+msgstr ""
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr "Borrar"
+msgstr ""
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
msgstr ""
-"O dispositivo no responde, revisa que siga seleccionau o puerto serie u "
-"REINICIA a tarcheta antes d'exportar"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Descartar totz os cambeos y recargar o sketch?"
+msgstr ""
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "No l'alces"
+msgstr ""
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
-msgstr "S'ha rematau l'alzau."
+msgstr ""
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "S'ha rematau a gravación d'o bootloader."
+msgstr ""
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
-msgstr "S'ha rematau a compilación."
+msgstr ""
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
-msgstr "S'ha rematau a impresión."
+msgstr ""
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
-msgstr "S'ha rematau a carga."
-
-#: Preferences.java:90
-msgid "Dutch"
-msgstr "Neerlandés"
-
-#: Editor.java:1116
-msgid "Edit"
-msgstr "Editar"
-
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr "Grandaria de tipo de letra ta l'editor: "
-
-#: Preferences.java:337
-msgid "Editor language: "
msgstr ""
#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
msgid "English"
-msgstr "Anglés"
+msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
-msgstr "Entorno"
+msgstr ""
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
-msgstr "Error"
+msgstr ""
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr "S'ha trobau una error en adhibir o fichero"
+msgstr ""
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Error en compilar."
+msgstr ""
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "S'ha trobau una error en obtener a carpeta de datos d'Arduino."
+msgstr ""
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "S'ha trobau una error en Serial.{0}()"
+msgstr ""
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
@@ -622,36 +619,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr "S'ha trobau una error en ubrir o puerto serie ''{0}''."
+msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
-msgstr "Error en leyer as preferencias"
+msgstr ""
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
msgstr ""
-"Error en leyer o fichero de preferencias. Por favor borra (u mueve)\n"
-"{0} y reinicia Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "S'ha trobau una error en gravar o bootloader."
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -660,167 +655,185 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Error entre que se cargaba o codigo {0}"
+msgstr ""
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "S'ha trobau una error en imprentar."
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
-msgstr "Eixemplos"
+msgstr ""
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "S'ha cancelau a exportación: en primeras has d'alzaus os cambeos."
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
-msgstr "FAQ.html"
+msgstr ""
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
-msgstr "Fichero"
+msgstr ""
#: Preferences.java:94
msgid "Filipino"
-msgstr "Filipino"
+msgstr ""
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
-msgstr "Buscar"
+msgstr ""
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Buscar o siguient"
+msgstr ""
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Buscar l'anterior"
+msgstr ""
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Trobar en a referencia"
+msgstr ""
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Buscar..."
+msgstr ""
#: FindReplace.java:80
msgid "Find:"
-msgstr "Buscar:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr "Reparar a Codificación y Recargar"
-
-#: ../../../processing/app/Base.java:2057
-msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
-msgid "French"
-msgstr "Francés"
-
-#: Editor.java:1083
-msgid "Frequently Asked Questions"
-msgstr "Preguntas freqüents"
-
#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
msgid "Galician"
-msgstr "Gallego"
+msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
-msgid "German"
-msgstr "Alemán"
-
-#: Editor.java:1041
-msgid "Getting Started"
-msgstr "Primers trangos"
-
#: Preferences.java:97
+msgid "German"
+msgstr ""
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
-msgstr "Griego"
+msgstr ""
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
-msgstr "Guide_Environment.html"
+msgstr ""
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
-msgstr "Guide_MacOSX.html"
+msgstr ""
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
-msgstr "Guide_Troubleshooting.html"
+msgstr ""
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
-msgstr "Guide_Windows.html"
+msgstr ""
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
-msgstr "Aduya"
+msgstr ""
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
msgstr ""
-"Qué te pareixe d'alzar en primeras o sketch \n"
-"antes de mirar de renombrar-lo?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "Que en yes de Borges tu!"
+msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
-msgstr "Hongaro"
+msgstr ""
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr "Ignorar mayusclas y minusclas"
+msgstr ""
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Ignorando o nombre incorrecto d'a biblioteca"
+msgstr ""
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
-msgstr "Ignorando sketch con nombre incorrecto"
+msgstr ""
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Importar Biblioteca..."
+msgstr ""
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -833,11 +846,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Incrementar o sangrau"
+msgstr ""
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -846,27 +859,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
-msgid "Italian"
-msgstr "Italián"
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr "Chaponés"
-
#: Preferences.java:102
-msgid "Korean"
+msgid "Italian"
msgstr ""
#: Preferences.java:103
-msgid "Latvian"
-msgstr "Letón"
-
-#: ../../../processing/app/Base.java:2903
-msgid "Library added to your libraries. Check \"Import library\" menu"
+msgid "Japanese"
msgstr ""
#: Preferences.java:104
+msgid "Korean"
+msgstr ""
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -874,113 +887,106 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
-msgstr "Mensache"
-
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
msgstr ""
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Falta o */ a la fin d'un /* comentario */"
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr "Mas preferencias se pueden editar dreitament en o fichero"
+msgstr ""
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
-msgstr "Movendo"
+msgstr ""
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Nombre d'o nuevo fichero:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
-msgstr "Nuevo"
+msgstr ""
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Nueva finestra d'editor"
+msgstr ""
#: EditorHeader.java:292
msgid "New Tab"
-msgstr "Nueva pestanya"
+msgstr ""
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Linia nueva (NL)"
+msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr "Siguient pestanya"
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
-msgstr "No"
+msgstr ""
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
msgstr ""
-"No i ha garra tarcheta seleccionada; por favor, triga una tarcheta d'o menú\n"
-"Ferramientas > Tarcheta."
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
-msgstr "No s'amenista garra cambeo ta o formato automatico."
+msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "No s'ha adhibiu garra fichero en o sketch."
+msgstr ""
#: Platform.java:167
msgid "No launcher available"
-msgstr "No i ha garra lanzador disponible"
+msgstr ""
#: SerialMonitor.java:112
msgid "No line ending"
-msgstr "No i ha garra fin de linia"
+msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "De verdat, ye hora que prengas un poquet d'aire fresco."
+msgstr ""
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "No i hai garra referencia disponible ta \"{0}\""
+msgstr ""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr "S'ha trobau una error no fatal entre que se configuraba l'Apariencia."
+msgstr ""
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
-msgstr "Nop"
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
@@ -993,62 +999,60 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr "Acceptar"
+msgstr ""
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "S'ha adhibiu un fichero en o sketch."
+msgstr ""
#: EditorToolbar.java:41
msgid "Open"
-msgstr "Ubrir"
+msgstr ""
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
-msgstr "Ubrir una URL"
+msgstr ""
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Ubrir un sketch d'Arduino..."
+msgstr ""
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Ubrir en unatra finestra"
+msgstr ""
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
-msgstr "Ubrir..."
+msgstr ""
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Configuración d'a pachina"
+msgstr ""
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "Apegar"
+msgstr ""
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
-msgstr "Persa"
+msgstr ""
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
msgstr ""
-"Por favor importa la biblioteca SPI fendo servir o menú\n"
-"Sketch > Importar Biblioteca."
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
-msgstr "Por favor instala o JDK 1.5 u posterior"
+msgstr ""
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1056,45 +1060,53 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "Preferencias"
+msgstr ""
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
-msgstr "Anterior"
+msgstr ""
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Pestanya anterior"
+msgstr ""
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "Imprentar"
+msgstr ""
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr "S'ha cancelau a impresión."
+msgstr ""
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Se ye imprentando..."
+msgstr ""
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr "Problema en ubrir a carpeta"
+msgstr ""
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "S'ha trobau un problema en ubrir a URL"
+msgstr ""
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "Problema en configurar a Plataforma"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1104,138 +1116,133 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "S'ha trobau un problema en obtener a carpeta de datos"
+msgstr ""
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "S'ha trobau un problema movendo {0} ta la carpeta de construcción"
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr ""
-"Problema en puyar codigo ta la tarcheta. Mira-te "
-"http://www.arduino.cc/en/Guide/Troubleshooting#upload ta trobar "
-"sucherencias."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "S'ha trobau un problema en renombrar"
+msgstr ""
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
msgstr ""
-"Processing no puede ubrir que os suyos propios sketches\n"
-"y atros fichers remataus en .ino u .pde"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "Programador"
+msgstr ""
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
-msgstr "Salir"
+msgstr ""
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Refer"
+msgstr ""
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "Referencia"
+msgstr ""
#: EditorHeader.java:300
msgid "Rename"
-msgstr "Renombrar"
+msgstr ""
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
-msgstr "Reemplazar"
+msgstr ""
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr "Reemplazar y Buscar"
+msgstr ""
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "Reemplazar-lo tot"
+msgstr ""
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Reemplazar a versión existent de {0}?"
+msgstr ""
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Reemplazar con:"
+msgstr ""
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr "Rumán"
+msgstr ""
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
-msgstr "Alzar"
+msgstr ""
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Alzar como..."
+msgstr ""
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "S'ha cancelau l'alzau."
+msgstr ""
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "Alzar os cambeos antes d'exportar?"
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Alzar os cambeos en \"{0}\"? "
+msgstr ""
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Alzar a carpeta de sketch como..."
+msgstr ""
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "Se ye alzando..."
+msgstr ""
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Selecciona (u creya una nueva) carpeta ta sketches..."
+msgstr ""
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Seleccionar-lo tot"
+msgstr ""
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Selecciona una imachen u belatro fichero de datos ta copiar en o sketch"
+msgstr ""
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Selecciona a nueva ubicación d'o sketchbook"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1243,215 +1250,202 @@ msgstr ""
#: SerialMonitor.java:93
msgid "Send"
-msgstr "Ninviar"
+msgstr ""
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "Monitor serie"
+msgstr ""
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
msgstr ""
-"O puerto serie ''{0}'' ya ye en uso. Mira de zarrar qualsiquier atro "
-"programa que lo podese estar usando."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
msgstr ""
-"No s'ha trobau o puerto serie ''{0}''. Yes seguro que trigués o correcto en "
-"o menú Ferramientas > Puerto Serie?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
msgstr ""
-"No s'ha trobau o puerto serie {0}.\n"
-"Quiers tornar a intentar a carga con belatro puerto serie?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Problemas de configuración"
+msgstr ""
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Amostrar a Carpeta de sketch"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Amostrar resultau detallau entre: "
+msgstr ""
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr "Sketch"
+msgstr ""
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "O sketch ha desapareixiu"
+msgstr ""
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "Ixe sketch no existe"
+msgstr ""
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr "O sketch ye nomás de lectura"
+msgstr ""
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "O sketch no tiene nombre"
+msgstr ""
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "O sketch ye nomás de lectura"
+msgstr ""
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
msgstr ""
-"O sketch ye masiau gran; leye-te "
-"http://www.arduino.cc/en/Guide/Troubleshooting#size ta trobar consellos de "
-"cómo reducir-lo."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
-msgstr "Sketchbook"
+msgstr ""
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "A carpeta sketchbook ha desapareixiu"
+msgstr ""
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "Ubicación d'o sketchbook:"
+msgstr ""
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
msgstr ""
-"Qualques fichers son marcaus como \"nomás de lectura\",\n"
-"asinas que amenesterás tornar a alzar iste sketch en unatra ubicación, y \n"
-"intentar-lo de nuevas."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
msgstr ""
-"Qualques fichers son marcaus como \"nomás de lectura\",\n"
-"asinas que te caldrá tornar a alzar iste sketch en belatro puesto."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Ya existe un sketch (u carpeta) clamau \"{0}\"."
+msgstr ""
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
-msgstr "Espanyol"
+msgstr ""
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr "Luz d'o sol"
+msgstr ""
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr "A parola clau 'BYTE' ya no ye suportada."
+msgstr ""
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "A clase Client s'ha renombrau como EthernetClient."
+msgstr ""
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr "A clase Server s'ha renombrau como EthernetServer."
+msgstr ""
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "A clase Udp s'ha renombrau como EthernetUdp."
+msgstr ""
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
msgstr ""
-"O que sigue ye o mensache d'error, pero Arduino habría de continar\n"
-"funcionando bien."
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
msgstr ""
-"Ye menester que o fichero \"{0}\" se trobe endentro d'a \n"
-"carpeta d'un sketch clamada \"{1}\".\n"
-"Quiers creyar ista carpeta, mover iste fichero y continar?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
msgstr ""
-"A biblioteca \"{0}\" no se puede fer servir.\n"
-"Os nombres de biblioteca han de contener nomás letras basicas y numers\n"
-"(Nomás ASCII sin espacios y no puede empecipiar con un numero)."
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
msgstr ""
-"O fichero prencipal no puede fer servir una extensión.\n"
-"(Talment siga ya hora de que pases ta un\n"
-"entorno de desembolique \"real\")"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr "O nombre no puede empecipiar con un punto."
+msgstr ""
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
msgstr ""
-"O sketch seleccionau ya no existe.\n"
-"Ye posible que te calga reiniciar Arduino\n"
-"ta esviellar o menú sketchbook."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1460,32 +1454,22 @@ msgid ""
"To get rid of this message, remove the sketch from\n"
"{1}"
msgstr ""
-"O sketch \"{0}\" no se puede fer servir.\n"
-"Os nombres de sketch han de contener nomás letras basicas y numers\n"
-"(Nomás ASCII sin espacios, y no puede empecipiar con un numero).\n"
-"Ta desfer-te d'iste mensache, elimina o sketch de {1}.\n"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
msgstr ""
-"A carpeta de sketches ha desapareixiu.\n"
-" Se mirará de tornar a alzar-la en o mesmo puesto,\n"
-"pero tot, fueras d'o codigo, se perderá."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
msgstr ""
-"O nombre d'o sketch s'ha habiu de modificar. Os nombres de sketch\n"
-"no pueden tener que caracters ASCII y numeros (pero no pueden\n"
-"empecipiar con un numero). A suya largaria ha d'estar menor a 64 caracters."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
@@ -1493,37 +1477,29 @@ msgid ""
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
msgstr ""
-"A carpeta sketchbook ya no existe.\n"
-"Arduino cambiará ta o puesto predeterminau\n"
-"d'o sketchbook y creyará una nueva carpeta sketchbook\n"
-"si ye menister. Dimpués, Arduino deixará de charrar d'ell mesmo\n"
-"en tercera persona."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
msgstr ""
-"Iste fichero ya s'ha copiau en o puesto\n"
-"dende o qual ye mirando d'adhibir-lo.\n"
-"No'n feré cosa."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr "Hora de fer un descanso"
+msgstr ""
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "Ferramientas"
+msgstr ""
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "Solución de problemas"
+msgstr ""
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
@@ -1547,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1558,14 +1534,14 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "S'ha trobau una excepción no apercazada de tipo: {0}"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "Desfer"
+msgstr ""
#: Platform.java:168
msgid ""
@@ -1573,157 +1549,146 @@ msgid ""
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
msgstr ""
-"No s'ha especificau a plataforma, u no i ha garra lanzador disponible.\n"
-"Ta habilitar a obridura d'URLs u carpetas, adhibe una linia como \n"
-"\"launcher=/rota/ta/app\" a o fichero preferences.txt"
#: UpdateCheck.java:111
msgid "Update"
-msgstr "Esviellar"
+msgstr ""
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
msgstr ""
-"Actualizar fichers de sketch a nueva extensión en alzar \n"
-"(.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
-msgstr "Cargar"
+msgstr ""
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Cargar fendo servir o programador"
+msgstr ""
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "S'ha cancelau a carga."
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Cargando ta la tarcheta I/O..."
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Cargando..."
+msgstr ""
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Fer servir a selección ta buscar-la"
+msgstr ""
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr "Fer servir un editor externo"
+msgstr ""
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr "Verificar"
+msgstr ""
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Verificar / Compilar"
+msgstr ""
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr "Verificar o codigo dimpués de cargar"
+msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "Visitar Arduino.cc"
+msgstr ""
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr "Alvertencia"
+msgstr ""
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
-msgstr "Wire.receive() s'ha renombrau como Wire.read()."
+msgstr ""
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "Wire.send() s'ha renombrau como Wire.write()."
+msgstr ""
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "Embolicar"
+msgstr ""
#: debug/Uploader.java:213
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
msgstr ""
-"S'ha trobau un Microcontrolador entivocau. Has trigau a tarcheta \n"
-"correcta d'o menú Ferramientas > Tarcheta?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
-msgstr "Sí"
+msgstr ""
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
-msgstr "No me puetz enganyuflar"
+msgstr ""
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "No puetz tener un fichero .cpp con o mesmo nombre que o sketch."
+msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-"No puetz renombrar o sketch como \"{0}\"\n"
-"porque o sketch ya tiene un fichero .cpp con ixe nombre"
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-"No puetz alzar o sketch como \"{0}\"\n"
-"porque o sketch ya tiene un fichero .cpp con ixe nombre."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
msgstr ""
-"No puetz alzar o sketch en una carpeta\n"
-"adentro d'ell mesmo. Isto podría seguir ta cutio."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr "Has ixuplidau o tuyo sketchbook"
+msgstr ""
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
msgstr ""
-"Por hue has plegau en o limite d'auto nombramiento de sketches nuevos\n"
-"Qué tal si te fas una gambadeta?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" no ye una extensión valida."
+msgstr ""
#: SketchCode.java:258
#, java-format
@@ -1733,117 +1698,85 @@ msgid ""
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
msgstr ""
-"\"{0}\" contiene caracters incorrectos. Si iste codigo se creyó con una "
-"versión anterior de Processing, talment te calga usar Ferramientas -> "
-"Correchir Codificación y Recargar ta esviellar o sketch a codificación "
-"UTF-8. Si no, talment te calga borrar os caracters incorrectos ta desfer-te "
-"d'ista alvertencia."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
msgstr ""
-"\n"
-"Dende Arduino 1.0, a parola clau 'BYTE' ya no ye suportada.\n"
-"Por favor fe servir Serial.write() en cuenta.\n"
-"\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Dende Arduino 1.0, a clase Client en a biblioteca Ethernet s'ha renombrau\n"
-"como EthernetClient.\n"
-"\n"
-
-#: debug/Compiler.java:478
-msgid ""
-"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"Dende Arduino 1.0, a clase Server en a biblioteca Ethernet s'ha \n"
-"renombrau como EthernetServer.\n"
-"\n"
-
-#: ../../../processing/app/debug/Compiler.java:451
-msgid ""
-"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
msgstr ""
-"\n"
-"Dende Arduino 1.0, a función Wire.receive() s'ha renombrau como Wire.read() "
-"ta mantener a consistencia con atras bibliotecas.\n"
-"\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-"\n"
-"Dende Arduino 1.0, a función Wire.send() s'ha renombrau como Wire.write() ta "
-"mantener a consistencia con atras bibliotecas.\n"
-"\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "compilación "
+msgstr ""
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr "createNewFile() ha retornau a valura \"false\""
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr "entorno"
+msgstr ""
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
-msgstr "http://arduino.cc/"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
@@ -1851,81 +1784,74 @@ msgstr ""
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
-msgstr "http://www.arduino.cc/en/Main/Software"
+msgstr ""
#: UpdateCheck.java:53
msgid "http://www.arduino.cc/latest.txt"
-msgstr "http://www.arduino.cc/latest.txt"
+msgstr ""
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
-msgstr "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "ignorando a grandaria invalida d'o tipo de letra {0}"
+msgstr ""
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
-msgstr "index.html"
+msgstr ""
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "o nombre ye null"
+msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
-msgstr "platforms.html"
+msgstr ""
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
msgstr ""
-"O buffer de bytes readBytesUntil() ye masiau chicot ta os {0} bytes dica y "
-"incluindo-ie o char {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: error interna... no s'ha puesto trobar o codigo"
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "serialMenu ye null"
+msgstr ""
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr ""
-"o puerto serie seleccionau {0} no existe u a tuya tarcheta ye sin connectar"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
+#: Preferences.java:391
+msgid "upload"
msgstr ""
-#: Preferences.java:375
-msgid "upload"
-msgstr "carga"
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "S'ha adhibiu {0} fichers en o sketch."
+msgstr ""
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr "{0} ha retornau {1}"
+msgstr ""
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr "{0} | Arduino {1}"
+msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_an.properties b/app/src/processing/app/i18n/Resources_an.properties
index 1f8b2a797..e94a5aa14 100644
--- a/app/src/processing/app/i18n/Resources_an.properties
+++ b/app/src/processing/app/i18n/Resources_an.properties
@@ -3,79 +3,79 @@
# This file is distributed under the same license as the Arduino IDE package.
# Juan Pablo Martinez Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Si zarras o zaguer sketch ubierto se zarrar\u00e1\nArduino.
+#: Base.java:773
+!\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Si no los alzas, os cambeos se perder\u00e1n.
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
-A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Ya existe un fichero clamau "{0}" en "{1}"
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Ya existe una carpeta clamada "{0}". No s'ha puesto ubrir o sketch.
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nueva versi\u00f3n d'Arduino ye disponible,\nTe fer\u00eda goyo de visitar agora a pachina de descargas d'Arduino?
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=S'ha trobau un problema entre que se miraba d'ubrir o\nfichero utilizau ta alzar o resultau d'a consola.
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
-#: Editor.java:1102
-About\ Arduino=Arredol d'Arduino
+#: Editor.java:1116
+!About\ Arduino=
-#: Editor.java:643
-Add\ File...=Adhibir un Fichero...
+#: Editor.java:650
+!Add\ File...=
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
!Add\ Library...=
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ha ocurriu una error entre que se miraba d'apanyar a codificaci\u00f3n d'o\nfichero. No intentes alzar iste sketch porque puede sobrescribir a versi\u00f3n\nanterior. Utiliza Ubrir ta reabrir o sketch y intenta de nuevo.\n
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=S'ha trobau una error desconoixida entre que\nse cargaba o codigo especifico ta la tuya plataforma.
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
-Archive\ Sketch=Archivar o sketch
+!Archive\ Sketch=
#: tools/Archiver.java:109
-Archive\ sketch\ as\:=Archivar o sketch como\:
+!Archive\ sketch\ as\:=
#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=S'ha cancelau l'archivo d'o sketch.
+!Archive\ sketch\ canceled.=
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=S'ha cancelau l'archivo d'o sketch porque\no sketch no s'ha puesto alzar correctament.
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
#: ../../../processing/app/I18n.java:83
!Arduino\ ARM\ (32-bits)\ Boards=
@@ -83,62 +83,68 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino no puede executar porque no ha puesto\ncreyar una carpeta ta alzar a tuya configuraci\u00f3n.
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino no se puede executar porque no ha puesto\ncreyar una carpeta ta alzar o tuyo sketchbook.
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requiere o JDK completo (no nom\u00e1s o JRE)\nta funcionar. Por favor instala o JDK 1.5 u superior.\nPodr\u00e1s trobar mas informaci\u00f3n en a referencia.
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Yes seguro que quiers borrar "{0}"?
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Yes seguro que quiers borrar iste sketch?
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
#: tools/AutoFormat.java:91
-Auto\ Format=Formato automatico
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
#: tools/AutoFormat.java:931
-Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=S'ha cancelau o formato automatico\: masiaus gafetz cuchos.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
#: tools/AutoFormat.java:922
-Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=S'ha cancelau o formato automatico\: masiaus parentesis cuchos.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
-#: tools/AutoFormat.java:928
-Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=S'ha cancelau o formato automatico\: masiaus gafetz dreitos.
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
-#: tools/AutoFormat.java:919
-Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=S'ha cancelau o formato automatico\: masiaus parentesis dreitos.
-
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=S'ha rematau o formato automatico.
-
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=Asociar automaticament fichers .ino con Arduino
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
#: SerialMonitor.java:110
-Autoscroll=Desplazamiento automatico
+!Autoscroll=
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
-Bad\ error\ line\:\ {0}=Linia d'error incorrecta\: {0}
+!Bad\ error\ line\:\ {0}=
-#: Editor.java:2089
-Bad\ file\ selected=O fichero seleccionau ye incorrecto
+#: Editor.java:2136
+!Bad\ file\ selected=
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=Tarcheta
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -147,23 +153,29 @@ Board=Tarcheta
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
-Both\ NL\ &\ CR=Totz dos NL & CR
+!Both\ NL\ &\ CR=
-#: Preferences.java:80
-Browse=Navegar
+#: Preferences.java:81
+!Browse=
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=A carpeta de construcci\u00f3n ha despareixiu u no s'ha puesto escribir
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
-Burn\ Bootloader=Gravar o bootloader
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Se ye gravando o bootloader en a tarcheta I/O (podr\u00eda tardar un minuto)...
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
#: ../../../processing/app/Base.java:368
!Can't\ open\ source\ sketch\!=
@@ -171,80 +183,92 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Se ye grava
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
-Cancel=Cancelar
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
-#: Sketch.java:459
-Cannot\ Rename=No se puede renombrar
+#: Sketch.java:455
+!Cannot\ Rename=
#: SerialMonitor.java:112
-Carriage\ return=Retorno de Carro (CR)
-
-#: Preferences.java:86
-Catalan=Catal\u00e1n
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=Verificar actualizacions en empecipiar
+!Carriage\ return=
#: Preferences.java:87
-Chinese\ Simplified=Chin\u00e9s Simplificau
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
!Chinese\ Traditional=
-#: Editor.java:514 Editor.java:1977
-Close=Zarrar
+#: Editor.java:521 Editor.java:2024
+!Close=
-#: Editor.java:1194 Editor.java:2702
-Comment/Uncomment=Comentar/Descomentar
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
-Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error de compilaci\u00f3n, por favor ninvia iste codigo a {0}
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Compilando o sketch...
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
#: EditorConsole.java:152
-Console\ Error=S'ha trobau una error de consola
+!Console\ Error=
-#: Editor.java:1143 Editor.java:2660
-Copy=Copiar
+#: Editor.java:1157 Editor.java:2707
+!Copy=
-#: Editor.java:1163 Editor.java:2676
-Copy\ as\ HTML=Copiar como HTML
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=Copiar ta'l Foro
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=No s'ha puesto adhibir ''{0}'' a lo sketch.
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=No s'ha puesto copiar a una ubicaci\u00f3n apropiada.
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=No s'ha puesto creyar a carpeta d'o sketch.
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
-#: Editor.java:2159
-Could\ not\ create\ the\ sketch.=No s'ha puesto creyar o sketch.
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=No s'ha puesto borrar "{0}".
+!Could\ not\ delete\ "{0}".=
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=No s'ha puesto borrar o fichero existent ''{0}''.
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
-Could\ not\ delete\ {0}=No s'ha puesto borrar {0}
+!Could\ not\ delete\ {0}=
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -258,140 +282,146 @@ Could\ not\ delete\ {0}=No s'ha puesto borrar {0}
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=No s'ha puesto ubrir a URL\n{0}
+!Could\ not\ open\ the\ URL\n{0}=
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=No s'ha puesto ubrir a carpeta\n{0}
+!Could\ not\ open\ the\ folder\n{0}=
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=No s'ha puesto tornar a alzar o sketch adequadament. Talment tiengas \nproblemas en iste punto, y siga hora de copiar y apegar o tuyo codigo en \nbelatro editor.
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=No s'ha puesto tornar a alzar o sketch
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=No s'ha puesto leyer a configuraci\u00f3n d'esquema de color. \nTe caldr\u00e1 tornar a instalar Processing.
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No s'ha puesto leyer a configuraci\u00f3n predeterminada.\nTe caldr\u00e1 tornar a instalar Arduino.
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
-Could\ not\ read\ preferences\ from\ {0}=No s'ha puesto leyer as preferencias de {0}
+!Could\ not\ read\ preferences\ from\ {0}=
-#: Base.java:2196
+#: Base.java:2482
#, java-format
-Could\ not\ remove\ old\ version\ of\ {0}=No s'ha puesto eliminar a versi\u00f3n anterior de {0}
+!Could\ not\ remove\ old\ version\ of\ {0}=
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=No s'ha puesto renombrar "{0}" como "{1}"
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=No s'ha puesto renombrar o sketch. (0)
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=No s'ha puesto renombrar o sketch. (1)
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=No s'ha puesto renombrar o sketch. (2)
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
-#: Base.java:2206
+#: Base.java:2492
#, java-format
-Could\ not\ replace\ {0}=No s'ha puesto reemplazar {0}
+!Could\ not\ replace\ {0}=
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=No s'ha puesto archivar o sketch
+!Couldn't\ archive\ sketch=
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=No s'ha puesto determinar a grandaria d'o programa\: {0}
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
-#: Sketch.java:620
-Couldn't\ do\ it=No s'ha puesto fer
+#: Sketch.java:616
+!Couldn't\ do\ it=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
-Cut=Retallar
+#: Editor.java:1149 Editor.java:2699
+!Cut=
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
-Danish=Dan\u00e9s
+#: Preferences.java:90
+!Danish=
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Reducir o sangrau
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
-#: Sketch.java:595 EditorHeader.java:314
-Delete=Borrar
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo no responde, revisa que siga seleccionau o puerto serie u REINICIA a tarcheta antes d'exportar
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=Descartar totz os cambeos y recargar o sketch?
+!Discard\ all\ changes\ and\ reload\ sketch?=
-#: Editor.java:2017
-Don't\ Save=No l'alces
+#: Editor.java:2064
+!Don't\ Save=
-#: Editor.java:2228 Editor.java:2264
-Done\ Saving.=S'ha rematau l'alzau.
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
-#: Editor.java:2463
-Done\ burning\ bootloader.=S'ha rematau a gravaci\u00f3n d'o bootloader.
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=S'ha rematau a compilaci\u00f3n.
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
-#: Editor.java:2517
-Done\ printing.=S'ha rematau a impresi\u00f3n.
+#: Editor.java:2564
+!Done\ printing.=
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=S'ha rematau a carga.
-
-#: Preferences.java:90
-Dutch=Neerland\u00e9s
-
-#: Editor.java:1116
-Edit=Editar
-
-#: Preferences.java:354
-Editor\ font\ size\:\ =Grandaria de tipo de letra ta l'editor\:
-
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
#: Preferences.java:91
-English=Angl\u00e9s
+!Dutch=
-#: Editor.java:1049
-Environment=Entorno
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
-Error=Error
+#: Editor.java:1130
+!Edit=
-#: Sketch.java:1069 Sketch.java:1092
-Error\ adding\ file=S'ha trobau una error en adhibir o fichero
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
-#: debug/Compiler.java:426
-Error\ compiling.=Error en compilar.
+#: Preferences.java:353
+!Editor\ language\:\ =
-#: Base.java:1433
-Error\ getting\ the\ Arduino\ data\ folder.=S'ha trobau una error en obtener a carpeta de datos d'Arduino.
+#: Preferences.java:92
+!English=
-#: Serial.java:567
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+!Error=
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
#, java-format
-Error\ inside\ Serial.{0}()=S'ha trobau una error en Serial.{0}()
+!Error\ inside\ Serial.{0}()=
#: ../../../processing/app/Base.java:1232
!Error\ loading\ libraries=
@@ -402,264 +432,274 @@ Error\ inside\ Serial.{0}()=S'ha trobau una error en Serial.{0}()
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=S'ha trobau una error en ubrir o puerto serie ''{0}''.
+!Error\ opening\ serial\ port\ ''{0}''.=
-#: Preferences.java:261
-Error\ reading\ preferences=Error en leyer as preferencias
+#: Preferences.java:277
+!Error\ reading\ preferences=
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Error en leyer o fichero de preferencias. Por favor borra (u mueve)\n{0} y reinicia Arduino.
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=S'ha trobau una error en gravar o bootloader.
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
#: ../../../processing/app/Editor.java:2555
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
#: SketchCode.java:83
#, java-format
-Error\ while\ loading\ code\ {0}=Error entre que se cargaba o codigo {0}
+!Error\ while\ loading\ code\ {0}=
-#: Editor.java:2520
-Error\ while\ printing.=S'ha trobau una error en imprentar.
+#: Editor.java:2567
+!Error\ while\ printing.=
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
-Examples=Eixemplos
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=S'ha cancelau a exportaci\u00f3n\: en primeras has d'alzaus os cambeos.
+#: Editor.java:516
+!Examples=
-#: Base.java:1814
-FAQ.html=FAQ.html
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
-#: Editor.java:484
-File=Fichero
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+!File=
#: Preferences.java:94
-Filipino=Filipino
+!Filipino=
#: FindReplace.java:124 FindReplace.java:127
-Find=Buscar
+!Find=
-#: Editor.java:1235
-Find\ Next=Buscar o siguient
+#: Editor.java:1249
+!Find\ Next=
-#: Editor.java:1245
-Find\ Previous=Buscar l'anterior
+#: Editor.java:1259
+!Find\ Previous=
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=Trobar en a referencia
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
-#: Editor.java:1220
-Find...=Buscar...
+#: Editor.java:1234
+!Find...=
#: FindReplace.java:80
-Find\:=Buscar\:
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=Reparar a Codificaci\u00f3n y Recargar
+!Fix\ Encoding\ &\ Reload=
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
-French=Franc\u00e9s
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Preguntas freq\u00fcents
-
#: Preferences.java:95
-Galician=Gallego
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
-German=Alem\u00e1n
-
-#: Editor.java:1041
-Getting\ Started=Primers trangos
-
#: Preferences.java:97
-Greek=Griego
+!German=
-#: Base.java:1799
-Guide_Environment.html=Guide_Environment.html
+#: Editor.java:1054
+!Getting\ Started=
-#: Base.java:1785
-Guide_MacOSX.html=Guide_MacOSX.html
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
-#: Base.java:1809
-Guide_Troubleshooting.html=Guide_Troubleshooting.html
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
-#: Base.java:1787
-Guide_Windows.html=Guide_Windows.html
+#: Preferences.java:98
+!Greek=
+
+#: Base.java:2085
+!Guide_Environment.html=
+
+#: Base.java:2071
+!Guide_MacOSX.html=
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+!Guide_Windows.html=
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
-Help=Aduya
+#: Editor.java:1015
+!Help=
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Qu\u00e9 te pareixe d'alzar en primeras o sketch \nantes de mirar de renombrar-lo?
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=Que en yes de Borges tu\!
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
-#: Preferences.java:98
-Hungarian=Hongaro
+#: Preferences.java:100
+!Hungarian=
#: FindReplace.java:96
-Ignore\ Case=Ignorar mayusclas y minusclas
+!Ignore\ Case=
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Ignorando o nombre incorrecto d'a biblioteca
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
-#: Base.java:1132
-Ignoring\ sketch\ with\ bad\ name=Ignorando sketch con nombre incorrecto
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
-#: Editor.java:629
-Import\ Library...=Importar Biblioteca...
+#: Editor.java:636
+!Import\ Library...=
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Incrementar o sangrau
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
-#: Preferences.java:99
+#: Preferences.java:101
!Indonesian=
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
-Italian=Itali\u00e1n
-
-#: Preferences.java:101
-Japanese=Chapon\u00e9s
-
#: Preferences.java:102
-!Korean=
+!Italian=
#: Preferences.java:103
-Latvian=Let\u00f3n
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+!Japanese=
#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
-Message=Mensache
+#: Base.java:2112
+!Message=
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ a la fin d'un /* comentario */
+#: Editor.java:2156
+!Moving=
-#: Preferences.java:433
-More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mas preferencias se pueden editar dreitament en o fichero
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
-#: Editor.java:2109
-Moving=Movendo
-
-#: Sketch.java:286
-Name\ for\ new\ file\:=Nombre d'o nuevo fichero\:
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
-New=Nuevo
+#: EditorToolbar.java:41 Editor.java:493
+!New=
#: EditorToolbar.java:46
-New\ Editor\ Window=Nueva finestra d'editor
+!New\ Editor\ Window=
#: EditorHeader.java:292
-New\ Tab=Nueva pestanya
+!New\ Tab=
#: SerialMonitor.java:112
-Newline=Linia nueva (NL)
+!Newline=
#: EditorHeader.java:340
-Next\ Tab=Siguient pestanya
+!Next\ Tab=
-#: UpdateCheck.java:108 Preferences.java:77
-No=No
+#: Preferences.java:78 UpdateCheck.java:108
+!No=
-#: debug/Compiler.java:79
-No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No i ha garra tarcheta seleccionada; por favor, triga una tarcheta d'o men\u00fa\nFerramientas > Tarcheta.
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
-No\ changes\ necessary\ for\ Auto\ Format.=No s'amenista garra cambeo ta o formato automatico.
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=No s'ha adhibiu garra fichero en o sketch.
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
#: Platform.java:167
-No\ launcher\ available=No i ha garra lanzador disponible
+!No\ launcher\ available=
#: SerialMonitor.java:112
-No\ line\ ending=No i ha garra fin de linia
+!No\ line\ ending=
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De verdat, ye hora que prengas un poquet d'aire fresco.
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=No i hai garra referencia disponible ta "{0}"
+!No\ reference\ available\ for\ "{0}"=
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=S'ha trobau una error no fatal entre que se configuraba l'Apariencia.
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-Nope=Nop
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
@@ -667,81 +707,87 @@ Nope=Nop
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=Acceptar
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=S'ha adhibiu un fichero en o sketch.
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
#: EditorToolbar.java:41
-Open=Ubrir
+!Open=
-#: Editor.java:2641
-Open\ URL=Ubrir una URL
+#: Editor.java:2688
+!Open\ URL=
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=Ubrir un sketch d'Arduino...
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
#: EditorToolbar.java:46
-Open\ in\ Another\ Window=Ubrir en unatra finestra
+!Open\ in\ Another\ Window=
-#: Editor.java:494 Base.java:903
-Open...=Ubrir...
+#: Base.java:903 Editor.java:501
+!Open...=
-#: Editor.java:556
-Page\ Setup=Configuraci\u00f3n d'a pachina
+#: Editor.java:563
+!Page\ Setup=
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
-Paste=Apegar
+#: Editor.java:1189 Editor.java:2731
+!Paste=
-#: Preferences.java:105
-Persian=Persa
+#: Preferences.java:109
+!Persian=
-#: debug/Compiler.java:465
-Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importa la biblioteca SPI fendo servir o men\u00fa\nSketch > Importar Biblioteca.
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=Por favor instala o JDK 1.5 u posterior
+#: Base.java:239
+!Please\ install\ JDK\ 1.5\ or\ later=
-#: Preferences.java:106
+#: Preferences.java:110
!Polish=
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
-Preferences=Preferencias
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
#: FindReplace.java:123 FindReplace.java:128
-Previous=Anterior
+!Previous=
#: EditorHeader.java:326
-Previous\ Tab=Pestanya anterior
+!Previous\ Tab=
-#: Editor.java:564
-Print=Imprentar
+#: Editor.java:571
+!Print=
-#: Editor.java:2524
-Printing\ canceled.=S'ha cancelau a impresi\u00f3n.
+#: Editor.java:2571
+!Printing\ canceled.=
-#: Editor.java:2500
-Printing...=Se ye imprentando...
+#: Editor.java:2547
+!Printing...=
-#: Base.java:1671
-Problem\ Opening\ Folder=Problema en ubrir a carpeta
+#: Base.java:1957
+!Problem\ Opening\ Folder=
-#: Base.java:1647
-Problem\ Opening\ URL=S'ha trobau un problema en ubrir a URL
+#: Base.java:1933
+!Problem\ Opening\ URL=
-#: Base.java:220
-Problem\ Setting\ the\ Platform=Problema en configurar a Plataforma
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
!Problem\ accessing\ board\ folder\ /www/sd=
@@ -749,248 +795,258 @@ Problem\ Setting\ the\ Platform=Problema en configurar a Plataforma
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
-Problem\ getting\ data\ folder=S'ha trobau un problema en obtener a carpeta de datos
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=S'ha trobau un problema movendo {0} ta la carpeta de construcci\u00f3n
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
#: debug/Uploader.java:209
-Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema en puyar codigo ta la tarcheta. Mira-te http\://www.arduino.cc/en/Guide/Troubleshooting\#upload ta trobar sucherencias.
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=S'ha trobau un problema en renombrar
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing no puede ubrir que os suyos propios sketches\ny atros fichers remataus en .ino u .pde
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
-Programmer=Programador
+#: Editor.java:704
+!Programmer=
-#: Editor.java:586 Base.java:782
-Quit=Salir
+#: Base.java:783 Editor.java:593
+!Quit=
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=Refer
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
-#: Editor.java:1065
-Reference=Referencia
+#: Editor.java:1078
+!Reference=
#: EditorHeader.java:300
-Rename=Renombrar
+!Rename=
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
-Replace=Reemplazar
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
#: FindReplace.java:122 FindReplace.java:129
-Replace\ &\ Find=Reemplazar y Buscar
+!Replace\ &\ Find=
#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=Reemplazar-lo tot
+!Replace\ All=
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=Reemplazar a versi\u00f3n existent de {0}?
+!Replace\ the\ existing\ version\ of\ {0}?=
#: FindReplace.java:81
-Replace\ with\:=Reemplazar con\:
+!Replace\ with\:=
-#: Preferences.java:109
-Romanian=Rum\u00e1n
+#: Preferences.java:113
+!Romanian=
-#: Preferences.java:110
+#: Preferences.java:114
!Russian=
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
-Save=Alzar
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
-#: Editor.java:530
-Save\ As...=Alzar como...
+#: Editor.java:537
+!Save\ As...=
-#: Editor.java:2270
-Save\ Canceled.=S'ha cancelau l'alzau.
+#: Editor.java:2317
+!Save\ Canceled.=
-#: Editor.java:2420
-Save\ changes\ before\ export?=Alzar os cambeos antes d'exportar?
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Alzar os cambeos en "{0}"?
+!Save\ changes\ to\ "{0}"?\ \ =
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Alzar a carpeta de sketch como...
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
-#: Editor.java:2223 Editor.java:2261
-Saving...=Se ye alzando...
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecciona (u creya una nueva) carpeta ta sketches...
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
-#: Editor.java:1184 Editor.java:2692
-Select\ All=Seleccionar-lo tot
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecciona una imachen u belatro fichero de datos ta copiar en o sketch
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=Selecciona a nueva ubicaci\u00f3n d'o sketchbook
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
#: ../../../processing/app/debug/Compiler.java:146
!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
#: SerialMonitor.java:93
-Send=Ninviar
+!Send=
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Monitor serie
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
-#: Serial.java:147
+#: Serial.java:174
#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=O puerto serie ''{0}'' ya ye en uso. Mira de zarrar qualsiquier atro programa que lo podese estar usando.
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=No s'ha trobau o puerto serie ''{0}''. Yes seguro que trigu\u00e9s o correcto en o men\u00fa Ferramientas > Puerto Serie?
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=No s'ha trobau o puerto serie {0}.\nQuiers tornar a intentar a carga con belatro puerto serie?
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
-#: Base.java:1440
-Settings\ issues=Problemas de configuraci\u00f3n
+#: Base.java:1681
+!Settings\ issues=
-#: Editor.java:634
-Show\ Sketch\ Folder=Amostrar a Carpeta de sketch
+#: Editor.java:641
+!Show\ Sketch\ Folder=
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =Amostrar resultau detallau entre\:
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
-#: Editor.java:600
-Sketch=Sketch
+#: Editor.java:607
+!Sketch=
-#: Sketch.java:1796
-Sketch\ Disappeared=O sketch ha desapareixiu
+#: Sketch.java:1754
+!Sketch\ Disappeared=
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=Ixe sketch no existe
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=O sketch ye nom\u00e1s de lectura
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
-#: Sketch.java:298
-Sketch\ is\ Untitled=O sketch no tiene nombre
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
-#: Sketch.java:724
-Sketch\ is\ read-only=O sketch ye nom\u00e1s de lectura
+#: Sketch.java:720
+!Sketch\ is\ read-only=
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=O sketch ye masiau gran; leye-te http\://www.arduino.cc/en/Guide/Troubleshooting\#size ta trobar consellos de c\u00f3mo reducir-lo.
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
-#: Editor.java:503
-Sketchbook=Sketchbook
-
-#: Base.java:257
-Sketchbook\ folder\ disappeared=A carpeta sketchbook ha desapareixiu
-
-#: Preferences.java:299
-Sketchbook\ location\:=Ubicaci\u00f3n d'o sketchbook\:
-
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Qualques fichers son marcaus como "nom\u00e1s de lectura",\nasinas que amenester\u00e1s tornar a alzar iste sketch en unatra ubicaci\u00f3n, y \nintentar-lo de nuevas.
-
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Qualques fichers son marcaus como "nom\u00e1s de lectura",\nasinas que te caldr\u00e1 tornar a alzar iste sketch en belatro puesto.
-
-#: Sketch.java:461
+#: ../../../processing/app/Sketch.java:1639
#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Ya existe un sketch (u carpeta) clamau "{0}".
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
-#: Preferences.java:111
-Spanish=Espanyol
-
-#: Base.java:537
-Sunshine=Luz d'o sol
-
-#: Preferences.java:83
-!System\ Default=
-
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
-
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A parola clau 'BYTE' ya no ye suportada.
-
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A clase Client s'ha renombrau como EthernetClient.
-
-#: debug/Compiler.java:477
-The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A clase Server s'ha renombrau como EthernetServer.
-
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp s'ha renombrau como EthernetUdp.
-
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=O que sigue ye o mensache d'error, pero Arduino habr\u00eda de continar\nfuncionando bien.
-
-#: Editor.java:2100
-#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Ye menester que o fichero "{0}" se trobe endentro d'a \ncarpeta d'un sketch clamada "{1}".\nQuiers creyar ista carpeta, mover iste fichero y continar?
-
-#: Base.java:1202
-#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A biblioteca "{0}" no se puede fer servir.\nOs nombres de biblioteca han de contener nom\u00e1s letras basicas y numers\n(Nom\u00e1s ASCII sin espacios y no puede empecipiar con un numero).
-
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O fichero prencipal no puede fer servir una extensi\u00f3n.\n(Talment siga ya hora de que pases ta un\nentorno de desembolique "real")
-
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=O nombre no puede empecipiar con un punto.
-
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=O sketch seleccionau ya no existe.\nYe posible que te calga reiniciar Arduino\nta esviellar o men\u00fa sketchbook.
-
-#: Base.java:1125
-#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=O sketch "{0}" no se puede fer servir.\nOs nombres de sketch han de contener nom\u00e1s letras basicas y numers\n(Nom\u00e1s ASCII sin espacios, y no puede empecipiar con un numero).\nTa desfer-te d'iste mensache, elimina o sketch de {1}.\n
-
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A carpeta de sketches ha desapareixiu.\n Se mirar\u00e1 de tornar a alzar-la en o mesmo puesto,\npero tot, fueras d'o codigo, se perder\u00e1.
-
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=O nombre d'o sketch s'ha habiu de modificar. Os nombres de sketch\nno pueden tener que caracters ASCII y numeros (pero no pueden\nempecipiar con un numero). A suya largaria ha d'estar menor a 64 caracters.
+#: Editor.java:510
+!Sketchbook=
#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A carpeta sketchbook ya no existe.\nArduino cambiar\u00e1 ta o puesto predeterminau\nd'o sketchbook y creyar\u00e1 una nueva carpeta sketchbook\nsi ye menister. Dimpu\u00e9s, Arduino deixar\u00e1 de charrar d'ell mesmo\nen tercera persona.
+!Sketchbook\ folder\ disappeared=
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Iste fichero ya s'ha copiau en o puesto\ndende o qual ye mirando d'adhibir-lo.\nNo'n fer\u00e9 cosa.
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
-Time\ for\ a\ Break=Hora de fer un descanso
+#: Base.java:535
+!Time\ for\ a\ Break=
-#: Editor.java:656
-Tools=Ferramientas
+#: Editor.java:663
+!Tools=
-#: Editor.java:1057
-Troubleshooting=Soluci\u00f3n de problemas
+#: Editor.java:1070
+!Troubleshooting=
#: ../../../processing/app/Preferences.java:117
!Turkish=
@@ -1009,7 +1065,7 @@ Troubleshooting=Soluci\u00f3n de problemas
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1017,214 +1073,213 @@ Troubleshooting=Soluci\u00f3n de problemas
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=S'ha trobau una excepci\u00f3n no apercazada de tipo\: {0}
+!Uncaught\ exception\ type\:\ {0}=
-#: Editor.java:1119 Editor.java:1341
-Undo=Desfer
+#: Editor.java:1133 Editor.java:1355
+!Undo=
#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=No s'ha especificau a plataforma, u no i ha garra lanzador disponible.\nTa habilitar a obridura d'URLs u carpetas, adhibe una linia como \n"launcher\=/rota/ta/app" a o fichero preferences.txt
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
#: UpdateCheck.java:111
-Update=Esviellar
+!Update=
-#: Preferences.java:412
-Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Actualizar fichers de sketch a nueva extensi\u00f3n en alzar \n(.pde -> .ino)
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
-#: Editor.java:538 EditorToolbar.java:41
-Upload=Cargar
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Cargar fendo servir o programador
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=S'ha cancelau a carga.
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=Cargando ta la tarcheta I/O...
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
-#: Sketch.java:1661
-Uploading...=Cargando...
+#: Sketch.java:1622
+!Uploading...=
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Fer servir a selecci\u00f3n ta buscar-la
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
-#: Preferences.java:393
-Use\ external\ editor=Fer servir un editor externo
+#: Preferences.java:409
+!Use\ external\ editor=
#: EditorToolbar.java:41 EditorToolbar.java:46
-Verify=Verificar
+!Verify=
-#: Editor.java:602
-Verify\ /\ Compile=Verificar / Compilar
+#: Editor.java:609
+!Verify\ /\ Compile=
-#: Preferences.java:384
-Verify\ code\ after\ upload=Verificar o codigo dimpu\u00e9s de cargar
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
-#: Editor.java:1091
-Visit\ Arduino.cc=Visitar Arduino.cc
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
-#: Base.java:1842
-Warning=Alvertencia
+#: Editor.java:1105
+!Visit\ Arduino.cc=
-#: debug/Compiler.java:501
-Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() s'ha renombrau como Wire.read().
+#: Base.java:2128
+!Warning=
-#: debug/Compiler.java:495
-Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() s'ha renombrau como Wire.write().
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
#: FindReplace.java:105
-Wrap\ Around=Embolicar
+!Wrap\ Around=
#: debug/Uploader.java:213
-Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=S'ha trobau un Microcontrolador entivocau. Has trigau a tarcheta \ncorrecta d'o men\u00fa Ferramientas > Tarcheta?
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
-#: UpdateCheck.java:108 Preferences.java:76
-Yes=S\u00ed
+#: Preferences.java:77 UpdateCheck.java:108
+!Yes=
-#: Sketch.java:1078
-You\ can't\ fool\ me=No me puetz enganyuflar
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No puetz tener un fichero .cpp con o mesmo nombre que o sketch.
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puetz renombrar o sketch como "{0}"\nporque o sketch ya tiene un fichero .cpp con ixe nombre
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puetz alzar o sketch como "{0}"\nporque o sketch ya tiene un fichero .cpp con ixe nombre.
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No puetz alzar o sketch en una carpeta\nadentro d'ell mesmo. Isto podr\u00eda seguir ta cutio.
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
-#: Base.java:1602
-You\ forgot\ your\ sketchbook=Has ixuplidau o tuyo sketchbook
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Por hue has plegau en o limite d'auto nombramiento de sketches nuevos\nQu\u00e9 tal si te fas una gambadeta?
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
!ZIP\ files\ or\ folders=
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" no ye una extensi\u00f3n valida.
+!".{0}"\ is\ not\ a\ valid\ extension.=
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contiene caracters incorrectos. Si iste codigo se crey\u00f3 con una versi\u00f3n anterior de Processing, talment te calga usar Ferramientas -> Correchir Codificaci\u00f3n y Recargar ta esviellar o sketch a codificaci\u00f3n UTF-8. Si no, talment te calga borrar os caracters incorrectos ta desfer-te d'ista alvertencia.
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nDende Arduino 1.0, a parola clau 'BYTE' ya no ye suportada.\nPor favor fe servir Serial.write() en cuenta.\n\n
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDende Arduino 1.0, a clase Client en a biblioteca Ethernet s'ha renombrau\ncomo EthernetClient.\n\n
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDende Arduino 1.0, a clase Server en a biblioteca Ethernet s'ha \nrenombrau como EthernetServer.\n\n
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDende Arduino 1.0, a funci\u00f3n Wire.receive() s'ha renombrau como Wire.read() ta mantener a consistencia con atras bibliotecas.\n\n
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDende Arduino 1.0, a funci\u00f3n Wire.send() s'ha renombrau como Wire.write() ta mantener a consistencia con atras bibliotecas.\n\n
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
!baud=
-#: Preferences.java:373
-compilation\ =compilaci\u00f3n
+#: Preferences.java:389
+!compilation\ =
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
-createNewFile()\ returned\ false=createNewFile() ha retornau a valura "false"
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
-environment=entorno
+#: Base.java:2090
+!environment=
-#: Editor.java:1094
-http\://arduino.cc/=http\://arduino.cc/
+#: Editor.java:1108
+!http\://arduino.cc/=
#: ../../../processing/app/debug/Compiler.java:49
!http\://github.com/arduino/Arduino/issues=
#: UpdateCheck.java:118
-http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
+!http\://www.arduino.cc/en/Main/Software=
#: UpdateCheck.java:53
-http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
+!http\://www.arduino.cc/latest.txt=
-#: Base.java:1789
-http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=ignorando a grandaria invalida d'o tipo de letra {0}
+!ignoring\ invalid\ font\ size\ {0}=
-#: Base.java:1794
-index.html=index.html
+#: Base.java:2080
+!index.html=
-#: Editor.java:927 Editor.java:934
-name\ is\ null=o nombre ye null
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
-#: Base.java:1804
-platforms.html=platforms.html
+#: Base.java:2090
+!platforms.html=
-#: Serial.java:424
+#: Serial.java:451
#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de bytes readBytesUntil() ye masiau chicot ta os {0} bytes dica y incluindo-ie o char {1}
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error interna... no s'ha puesto trobar o codigo
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
-#: Editor.java:923
-serialMenu\ is\ null=serialMenu ye null
+#: Editor.java:932
+!serialMenu\ is\ null=
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=o puerto serie seleccionau {0} no existe u a tuya tarcheta ye sin connectar
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
+#: Preferences.java:391
+!upload=
-#: Preferences.java:375
-upload=carga
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.=S'ha adhibiu {0} fichers en o sketch.
+!{0}\ files\ added\ to\ the\ sketch.=
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
-{0}\ returned\ {1}={0} ha retornau {1}
+!{0}\ returned\ {1}=
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
-{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+!{0}\ |\ Arduino\ {1}=
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
-{0}.html={0}.html
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_ar.po b/app/src/processing/app/i18n/Resources_ar.po
index 13255b7f9..38357a20d 100644
--- a/app/src/processing/app/i18n/Resources_ar.po
+++ b/app/src/processing/app/i18n/Resources_ar.po
@@ -11,8 +11,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: 2012-11-24 04:14+0000\n"
-"Last-Translator: belalmc Closing the last open sketch will quit Arduino."
+msgstr " Al zarrar l'últimu bocetu abiertu colará d'Arduino."
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr ""
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr ""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr ""
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr ""
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr ""
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr ""
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr ""
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Amestar biblioteca..."
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr ""
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr "Hebo un error desconocíu al intentar cargar\ncódigu específicu de la plataforma pa la máquina."
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr ""
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr ""
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr ""
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr ""
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr ""
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr ""
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr ""
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr ""
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr ""
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr "Arduino necesita un JDK completu (non namái JRE)\npa funcionar. Por favor, instale JDK 1.5 o mayor.\nPue alcontrar más información na referencia."
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr ""
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr ""
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr ""
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr ""
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr ""
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr ""
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr ""
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr ""
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr ""
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr ""
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr ""
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr ""
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr ""
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr ""
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr ""
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr ""
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr ""
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr ""
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr ""
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr ""
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr ""
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr ""
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr ""
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr ""
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr ""
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr ""
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr ""
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr ""
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr ""
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr ""
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr ""
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr ""
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr ""
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr ""
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr ""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr ""
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr ""
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr ""
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr ""
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr ""
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr ""
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr ""
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr ""
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr ""
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr ""
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr ""
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr ""
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr ""
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr ""
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr ""
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr ""
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr ""
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr ""
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr ""
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
+msgid "English"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr ""
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr ""
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr ""
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr ""
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr ""
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr ""
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr ""
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr ""
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr ""
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr ""
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr ""
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr ""
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr ""
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr ""
+
+#: Editor.java:491
+msgid "File"
+msgstr ""
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr ""
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr ""
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr ""
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr ""
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr ""
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr ""
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr ""
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr ""
+
+#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr ""
+
+#: Preferences.java:97
+msgid "German"
+msgstr ""
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr ""
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr ""
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr ""
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr ""
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr ""
+
+#: Editor.java:1015
+msgid "Help"
+msgstr ""
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr ""
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr ""
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr ""
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr ""
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr ""
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr "Inorando un mal nome de biblioteca"
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr ""
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr ""
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr ""
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr ""
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr ""
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr ""
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr ""
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr ""
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr ""
+
+#: Base.java:2112
+msgid "Message"
+msgstr ""
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr ""
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr ""
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr ""
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr ""
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr ""
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr ""
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr ""
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr ""
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr ""
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr ""
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr ""
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr ""
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr "De veres que non, ye hora de que tome l'aire un poco."
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr ""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr ""
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr ""
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr ""
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr ""
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr ""
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr ""
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr "Abrir un bocetu d'Arduino..."
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr ""
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr "Abrir..."
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr ""
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr ""
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr ""
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr "Por favor, instale JDK 1.5 o mayor"
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr ""
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr ""
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr ""
+
+#: Editor.java:571
+msgid "Print"
+msgstr ""
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr ""
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr ""
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr ""
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr ""
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr "Problema al configurar la plataforma"
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr ""
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr ""
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr ""
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr ""
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr ""
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr "Colar"
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr ""
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr ""
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr ""
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr ""
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr ""
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr ""
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr ""
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr ""
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr ""
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr ""
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr ""
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr ""
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr ""
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr ""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr ""
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr ""
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr ""
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr ""
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr ""
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr ""
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr ""
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr ""
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr ""
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr ""
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr ""
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr ""
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr ""
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr ""
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr ""
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr ""
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr ""
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr ""
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr "Desapaeció'l direutoriu Cartafueyu de bocetos"
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr ""
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr ""
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr ""
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr ""
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr "Soleyero"
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr ""
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr ""
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr ""
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr ""
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr ""
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr ""
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr "Sigui'l mensaxe d'error, pero Arduino tendría d'executase correutamente."
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr ""
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr "La biblioteca \"{0}\" nun pue utilizase.\nLos nomes de biblioteca tienen de contener namái lletres básiques y númberos.\n(Namái ASCII ensin espacios, y nun pue principiar con un númberu)"
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr ""
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr ""
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr ""
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr ""
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr ""
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr ""
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr "El direutoriu cartafueyu de bocetos yá nun esiste.\nArduino camudará al llugar predetermináu del cartafueyu\nde bocetos, y creará un direutoriu cartafueyu de bocetos\nnuevu si ye necesario. Arduino entós dexará de falar de\nsigo mesmu en tercera persona."
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr "Tiempu pa un descansu"
+
+#: Editor.java:663
+msgid "Tools"
+msgstr ""
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr ""
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr ""
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr ""
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr ""
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr ""
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr ""
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr ""
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr ""
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr ""
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr ""
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr ""
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr ""
+
+#: Base.java:2128
+msgid "Warning"
+msgstr ""
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr ""
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr ""
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr ""
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr ""
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr ""
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr ""
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr ""
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr ""
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr ""
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr "Algamó la llende de nomáu automáticu de bocetos nuevos\npa un día. ¿Qué tal si meyor va dar un paséu?"
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr ""
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr ""
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr ""
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr ""
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr ""
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr ""
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr ""
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr ""
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr ""
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr ""
+
+#: Base.java:2080
+msgid "index.html"
+msgstr ""
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr ""
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr ""
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr ""
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr ""
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr ""
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr ""
+
+#: Preferences.java:391
+msgid "upload"
+msgstr ""
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr ""
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr ""
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr ""
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_ast.properties b/app/src/processing/app/i18n/Resources_ast.properties
new file mode 100644
index 000000000..3fabf4f72
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_ast.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Al zarrar l'\u00faltimu bocetu abiertu colar\u00e1 d'Arduino.
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+!About\ Arduino=
+
+#: Editor.java:650
+!Add\ File...=
+
+#: Base.java:963
+Add\ Library...=Amestar biblioteca...
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Hebo un error desconoc\u00edu al intentar cargar\nc\u00f3digu espec\u00edficu de la plataforma pa la m\u00e1quina.
+
+#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
+!Aragonese=
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino necesita un JDK completu (non nam\u00e1i JRE)\npa funcionar. Por favor, instale JDK 1.5 o mayor.\nPue alcontrar m\u00e1s informaci\u00f3n na referencia.
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+!Browse=
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
+
+#: Sketch.java:455
+!Cannot\ Rename=
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+!Close=
+
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
+
+#: EditorConsole.java:152
+!Console\ Error=
+
+#: Editor.java:1157 Editor.java:2707
+!Copy=
+
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+!Could\ not\ delete\ {0}=
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+!Could\ not\ remove\ old\ version\ of\ {0}=
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+!Could\ not\ replace\ {0}=
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+!Cut=
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+!Danish=
+
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
+
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+!Don't\ Save=
+
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
+
+#: Editor.java:2564
+!Done\ printing.=
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+!Dutch=
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+!Edit=
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+!English=
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+!Error=
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+!Error\ opening\ serial\ port\ ''{0}''.=
+
+#: Preferences.java:277
+!Error\ reading\ preferences=
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+!Error\ while\ printing.=
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+!Estonian=
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+!Examples=
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+!File=
+
+#: Preferences.java:94
+!Filipino=
+
+#: FindReplace.java:124 FindReplace.java:127
+!Find=
+
+#: Editor.java:1249
+!Find\ Next=
+
+#: Editor.java:1259
+!Find\ Previous=
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+!Find...=
+
+#: FindReplace.java:80
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+!German=
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+!Greek=
+
+#: Base.java:2085
+!Guide_Environment.html=
+
+#: Base.java:2071
+!Guide_MacOSX.html=
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+!Guide_Windows.html=
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+!Help=
+
+#: Preferences.java:99
+!Hindi=
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+!Hungarian=
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+!Import\ Library...=
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
+
+#: Preferences.java:101
+!Indonesian=
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+!Italian=
+
+#: Preferences.java:103
+!Japanese=
+
+#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+!Lithuaninan=
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+!Message=
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+!Moving=
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+!New=
+
+#: EditorToolbar.java:46
+!New\ Editor\ Window=
+
+#: EditorHeader.java:292
+!New\ Tab=
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+!Next\ Tab=
+
+#: Preferences.java:78 UpdateCheck.java:108
+!No=
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De veres que non, ye hora de que tome l'aire un poco.
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+!Open=
+
+#: Editor.java:2688
+!Open\ URL=
+
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=Abrir un bocetu d'Arduino...
+
+#: EditorToolbar.java:46
+!Open\ in\ Another\ Window=
+
+#: Base.java:903 Editor.java:501
+Open...=Abrir...
+
+#: Editor.java:563
+!Page\ Setup=
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+!Paste=
+
+#: Preferences.java:109
+!Persian=
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale JDK 1.5 o mayor
+
+#: Preferences.java:110
+!Polish=
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
+
+#: FindReplace.java:123 FindReplace.java:128
+!Previous=
+
+#: EditorHeader.java:326
+!Previous\ Tab=
+
+#: Editor.java:571
+!Print=
+
+#: Editor.java:2571
+!Printing\ canceled.=
+
+#: Editor.java:2547
+!Printing...=
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+!Problem\ Opening\ URL=
+
+#: Base.java:227
+Problem\ Setting\ the\ Platform=Problema al configurar la plataforma
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+!Programmer=
+
+#: Base.java:783 Editor.java:593
+Quit=Colar
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+!Rename=
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
+
+#: FindReplace.java:122 FindReplace.java:129
+!Replace\ &\ Find=
+
+#: FindReplace.java:120 FindReplace.java:131
+!Replace\ All=
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+!Replace\ with\:=
+
+#: Preferences.java:113
+!Romanian=
+
+#: Preferences.java:114
+!Russian=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
+
+#: Editor.java:537
+!Save\ As...=
+
+#: Editor.java:2317
+!Save\ Canceled.=
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
+
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+!Send=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+!Settings\ issues=
+
+#: Editor.java:641
+!Show\ Sketch\ Folder=
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+!Sketch=
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
+
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
+
+#: Sketch.java:720
+!Sketch\ is\ read-only=
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+Sketchbook\ folder\ disappeared=Desapaeci\u00f3'l direutoriu Cartafueyu de bocetos
+
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+Sunshine=Soleyero
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Sigui'l mensaxe d'error, pero Arduino tendr\u00eda d'executase correutamente.
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=La biblioteca "{0}" nun pue utilizase.\nLos nomes de biblioteca tienen de contener nam\u00e1i lletres b\u00e1siques y n\u00famberos.\n(Nam\u00e1i ASCII ensin espacios, y nun pue principiar con un n\u00famberu)
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=El direutoriu cartafueyu de bocetos y\u00e1 nun esiste.\nArduino camudar\u00e1 al llugar predetermin\u00e1u del cartafueyu\nde bocetos, y crear\u00e1 un direutoriu cartafueyu de bocetos\nnuevu si ye necesario. Arduino ent\u00f3s dexar\u00e1 de falar de\nsigo mesmu en tercera persona.
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+Time\ for\ a\ Break=Tiempu pa un descansu
+
+#: Editor.java:663
+!Tools=
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+!Undo=
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+!Update=
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+!Uploading...=
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+!Verify=
+
+#: Editor.java:609
+!Verify\ /\ Compile=
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
+!Warning=
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+!Yes=
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Algam\u00f3 la llende de nom\u00e1u autom\u00e1ticu de bocetos nuevos\npa un d\u00eda. \u00bfQu\u00e9 tal si meyor va dar un pas\u00e9u?
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+!environment=
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+!index.html=
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+!platforms.html=
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_be.po b/app/src/processing/app/i18n/Resources_be.po
new file mode 100644
index 000000000..d8d9b0b5c
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_be.po
@@ -0,0 +1,1857 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+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: 2013-09-10 10:35+0000\n"
+"Last-Translator: cmaglie Closing the last open sketch will quit Arduino."
+msgstr " Зачыніце апошні адчынены скетч дзеля выхаду з Arduino."
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr ""
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr "Файл з імём \"{0}\" ужо існуе ў \"{1}\""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr "Каталог з імём \"{0}\" ужо існуе. Немагчыма адчыніць скетч."
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr "Бібліятэка з імём {0} ужо існуе"
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr "Даступная новая версія Arduino,\nжадаеце наведаць старонку спампоўкі Arduino?"
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr ""
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr "Аб Arduino"
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr "Дадаць Файл"
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Дадаць бібліятэку..."
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr ""
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr "Здарылася невядомая памылка падчас загрузкі\nплатформа-спецыфічнага коду для вашага камп'ютара."
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr "Арабская"
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr "Арагонская"
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr "Архіваваць Скетч"
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr "Архіваваць скетч як:"
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr "Архіваванне скетчу адменена."
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr "Архіваванне скетчу было скасавана, бо скетч\nне быў адпаведна захаваны."
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr "Платы Arduino ARM (32-біт)"
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr "Платы Arduino AVR"
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr "Немагчыма запусціць Arduino, бо\nнемагчыма стварыць каталог,\nкаб захаваць наладкі."
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr ""
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr "Arduino патрабуе поўны JDK (не толькі JRE)\nдля выканання. Калі ласка, усталюйце JDK 1.5\nці навей. Больш інфармацыі можна дазнацца\nпа спасылцы."
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr "Вы сапраўды жадаеце выдаліць \"{0}\"?"
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr "Вы сапраўды жадаеце выдаліць гэты скетч?"
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr "Аўтафармат скончаны"
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr "Аўтаматычна асацыяваць файлы .ino з Arduino"
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr "Аўтапракрутка"
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr "Абраны кепскі файл"
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr "Плата"
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr "Плата {0}:{1}:{2} не вызначае перавагі ''build.board''. Аўта-ўсталявана ў: {3}"
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr "Плата:"
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr ""
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr "Агляд"
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr "Каталог пабудовы знік ці недаступны для запісу"
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr "Балкагская"
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr "Прашыць Загрузчык"
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr ""
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr "Немагчыма адчыніць скетч!"
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr "Канадска-Французская"
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr "Адмена"
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr "Немагчыма Перайменаваць"
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr ""
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr "Каталонская"
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr "Дазнавацца пра абнаўленні падчас запуску"
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr "Кітайская спрошчаная"
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr "Кітайская традыцыйная"
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr "Зачыніць"
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr "Закаментаваць/Раскаментаваць"
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr "Памылка кампілятара, калі ласка дашліце гэты код на {0}"
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr "Кампіляцыя скетчу..."
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr "Памылка Кансолі"
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr "Капіяваць"
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr "Капіяваць як HTML"
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr "Памылка капіявання"
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr "Капіяваць у Форум"
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr "Немагчыма дадаць \"{0}\" у скетч."
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr "Немагчыма скапіяваць у партрэбнае месца."
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr "Немагчыма стварыць каталог скетчу."
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr "Немагчыма стварыць скетч"
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr "Немагчыма выдаліць \"{0}\"."
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr "Немагчыма выдаліць існуючы файл \"{0}\""
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr "Немагчыма выдаліць {0}"
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr "Немагчыма знайсці boards.txt у {0}. У вас рэліз pre-1.5?"
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr "Немагчыма знайсці інструмент {0}"
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr "Немагчыма знайсці інструмент {0} з пакету {1}"
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr "Немагчыма адчыніць URL\n{0}"
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr "Немагчыма адчыніць каталог\n{0}"
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr "Немагчыма слушна перазахаваць скетч. Можа здарыцца бяда,\nкалі вы зараз жа не зробіце копію крынічнага коду ў іншы рэдактар\nпраз буфер абмену."
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr "Немагчыма перазахаваць скетч"
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr ""
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr "Немагчыма прачытаць наладкі па-змоўчванню.\nПатрэбна пераўсталяваць Arduino."
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr "Немагчыма прачытаць наладкі з {0}"
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr "Немагчыма выдаліць старую весію {0}"
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr "НЕмагчыма перайменаваць \"{0}\" у \"{1}\""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr "Немагчыма перайменаваць скетч. (0)"
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr "Немагчыма перайменаваць скетч. (1)"
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr "Немагчыма перайменаваць скетч. (2)"
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr "Немагчыма замяніць {0}"
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr "Немагчыма архіваваць скетч"
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr "Немагчыма вызначыць памер праграмы: {0}"
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr "Немагчыма зрабіць гэта"
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr "Немагчыма апазнаць Плату на абраным порце. Спраўдзіце, што вы абралі той порт. Калі ўсё правільна, паспрабуйце націснць кнопку скіду на плаце пасля ініцыяцыі выгрузкі."
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr "Харвацкая"
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr "Выразаць"
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr "Чэшская"
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr "Дацкая"
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr "Паменьшыць водступ"
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr "Выдаліць"
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr ""
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr "Адрынуць усе змены і перазагрузіць скетч?"
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr "Не Захоўваць"
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr "Захаванне Выканана"
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr "Выканана прашыванне загрузчыка."
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr "Кампіляцыя выканана."
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr "Друк выкананы"
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr "Выгрузка выканана."
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr "Галадская"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr "Рэдагаваць"
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr "Памер шрыфту рэдактара:"
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr "Мова рэдактара:"
+
+#: Preferences.java:92
+msgid "English"
+msgstr "Англійская"
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr "Асяроддзе"
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr "Памылка"
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr "Памылка дадання файла"
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr "Памылка кампіляцыі."
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr ""
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr "Памылка унутры Serial.{0}()"
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr "Памылка загрузкі бібліятэк"
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr "памылка загрузкі {0}"
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr "Памылка адчынення паслядоўнага парта ''{0}''."
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr "Памылка чытання наладак"
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr "Памылка чытання файла наладак. Калі ласка выдаліце (ці перамясціце)\n{0} і перазапусціце Arduino."
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr ""
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr "Памылка падчас прашывання загрузчыка."
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr "Памылка падчас загрузкі коду {0}"
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr "Памылка падчас друку."
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr "Эстонская"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr "Ўзоры"
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr "Экспарт скасаваны, спачатку патрэбна захаваць змены."
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr "FAQ.html"
+
+#: Editor.java:491
+msgid "File"
+msgstr "Файл"
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr "Філіпіская"
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr "Шукаць"
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr "Шукаць Уперад"
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr "Шукаць Назад"
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr ""
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr "Шукаць..."
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr "Шукаць:"
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr ""
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr "Прымусовы скід хуткасці на 1200bps open/close на порт"
+
+#: Preferences.java:95
+msgid "French"
+msgstr "Французская"
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr "Галіцкая"
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr "Грузінская"
+
+#: Preferences.java:97
+msgid "German"
+msgstr "Нямецкая"
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr "З чаго пачаць"
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr "Грэцкая"
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr "Guide_Environment.html"
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr "Guide_MacOSX.html"
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr ""
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr "Guide_Windows.html"
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr "Іўрыт"
+
+#: Editor.java:1015
+msgid "Help"
+msgstr "Дапамога"
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr "Хіндзі"
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr "Як наконт спачатку захаваць скетч\nперад тым як спрабаваць перайменаваць яго?"
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr "Спадар абстракцыяніст?"
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr "Венгерская"
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr "Ігнараваць рэгістр"
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr "Ігнарую бібліятэку з кепскім імём"
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr "Ігнаруецца скетч з кепскім імём"
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr "Імпартаваць Бібліятэку"
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr "У Arduino 1.0 пашырэнне файлаў было зменена з .pde на.ino.\nНовыя скетчы (Уключаючы створаныя з дапамогай \n\"Захаваць-Як\") будуць утрымліваць новыя пашырэнні. \nПашырэнні існуючых скетчаў будуць адноўлены падчас \nзахоўвання, але вы можаце адмяніць гэта ў \"Preferences dialog.\"\n\nSave sketch and update its extension?"
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr "Павяліцыць водступ"
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr "Інданэзійская"
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr "Кепская бібліятэка знойдзена ў {0}: {1}"
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr "Італьянская"
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr "Японская"
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr "Карэйская"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "Латвіская"
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr "Біліятэка дададзена да вышых біліятэк. Выберыце меню \"Імпартаваць бібіятэкі\""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr "Літоўская"
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr "Даступна мала памяці, магчымы праблемы са стабільнасцю"
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr "Маратхі"
+
+#: Base.java:2112
+msgid "Message"
+msgstr "Паведамленне"
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr "Адсутнічаюць сімвалы */ канца /* каментара */"
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr "Болей наладак можна змяніць наўпрост у файле"
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr ""
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr "Імя для новага файла:"
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr "Новы"
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr "Новае вакно рэдактара"
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr "Новы Tab"
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr ""
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr "Наступны Tab"
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr "Не"
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr ""
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr ""
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr "У скетч не дададзена файлаў."
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr ""
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr "Сапраўды, вам патрэбна свежае паветра."
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr "Ня знойдзена супадзенняў з \"{0}\""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr "Нефатальная памылка падчас наладак вонкавага выгляду."
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr "Не-а"
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr "Нарвежскі Букмал"
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr "Не хапае памяці; глядзі http://www.arduino.cc/en/Guide/Troubleshooting#size для парадаў"
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr "OK"
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr "Да скетча даданы адзін файл."
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr "Адчыніць"
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr "Адчыніць URL"
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr "Адчыніць скетч Arduino..."
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr "Адчыніць у іншым вакне"
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr "Адчыніць..."
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr "Наладкі Старонкі"
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr "Уставіць"
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr "Персідская"
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr "Калі ласка, усталюйце JDK 1.5 ці навей"
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr "Польская"
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr "Наладкі"
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr "Папярэдні"
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr "Папярэдні Tab"
+
+#: Editor.java:571
+msgid "Print"
+msgstr "Друкаваць"
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr "Друк адменены"
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr "Друкаванне..."
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr "Немагчыма адчыніць каталог"
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr "Немагчыма адчыніць URL"
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr "Праблема выбару платформы."
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr ""
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr "Немагчыма перанесці {0} у каталог пабудовы"
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr "Немагчыма перайменаваць"
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr "Працэсар"
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr "Праграматар"
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr "Выйсці"
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr "Перарабіць"
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr ""
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr "Перайменаваць"
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr "Замяніць"
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr "Знайсці і Замяніць"
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr "Замяніць Усё"
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr "Замяніць версію {0}, што ўжо існуе?"
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr "Замяніць на:"
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr "Румынская"
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr "Руская"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr "Захаваць"
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr "Захаваць Як..."
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr "Захаванне Адменена"
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr "Захваць змены перад экспартам?"
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr "Захаваць змены ў \"{0}\"? "
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr "Захаваць каталог скетчаў як..."
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr "Захоўваем..."
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr "Абраць (ці стварыць новы) каталог для скетчаў..."
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr "Абраць Усё"
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr "Абярыце zip-файл ці каталог з бібліятэкай, якую патрэбна дадаць"
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr "Абярыце новае масца для каталога скетчаў"
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr "Абраная плата залежыць ад '{0}' (не інсталявана)"
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr "Адаслаць"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr "Serial-манітор"
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr "Порт \"{0}\" ужо выкарыстоўваецца. Паспрабуйце зачыніць праграмы, якія могуць выкарыстоўваць порт."
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr "Паслядоўны порт ''{0}'' ужо ўжываецца. Паспрабуйце зачыніць праграмы, якія могуць карыстацца ім."
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr "Serial-порт {0} ня знойдзены.\nПаспрабаваць выгрузку праз іншы порт?"
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr ""
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr "Паказаць Каталог Скетчаў"
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr "Паказаць падрабязны вывад падчас кампіляцыі"
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr "Паказваць падрабязны вывад падчас:"
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr "Скетч"
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr "Скетч Знік"
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr "Скетч Не Існуе"
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr "Скетч Толькі-для-Чытання"
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr "Скетч Безымянны"
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr "Скетч Толькі-для-Чытання"
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr "Скетч занадта вялікі; глядзі http://www.arduino.cc/en/Guide/Troubleshooting#size для вырашэння праблемы"
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr ""
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr "Каталог скетчу знік"
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr "Месцазнаходжанне каталогу скетчаў"
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr "Некаторыя файлы пазначаны \"толькі-для-чытання\",\nвам патрэбна перазахаваць скетч у іншым месцы\nі паспрабаваць ізноў"
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr "Некаторыя файлы пазначаны \"толькі-для-чытання\",\nвам патрэбна перазахаваць скетч у іншым месцы\nі паспрабаваць ізноў"
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr "Выбачайце, скетч (ці каталог) з імём \"{0}\" ужо існуе."
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr "Гішпанская"
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr "Сонца ўстае"
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr "System Default"
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr "Тамільская"
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr "Слова 'BYTE' больш не падтрымліваецца."
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr "Клас Client быў перайменаваны ў EthernetClient."
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr "Клас Server быў перайменаваны ў EthernetServer."
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr "Клас Udp быў перайменаваны ў EthernetUdp."
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr "Здарылася памылка, аднак Arduino павінны быць у добрым стане"
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr ""
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr "Бібліятэку \"{0}\" немагчыма выкарыстаць.\nІмя бібліятэкі павінна зкладацца толькі з літар і лічбаў.\n(толькі ASCII і без прабелаў, нельга пачынаць з лічбы)"
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr ""
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr ""
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr "Абраны скетч болей не існуе.\nМагчыма патрэбна перазапусціць Arduino\nдля аднаўлення спіса скетчаў"
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr "Скетч\"{0}\" немагчыма выкарыстаць.\nІмя скетча можа складацца толькі з літар і лічбаў\n(толькі ASCII і без прабелаў, нельга пачынаць з лічбы).\nКаб пазбавіцца ад гэтага паведамлення, выдаліце скетч з\n{1}"
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr "Папка скетчу знікла.\nСпрабуем перазахаваць у тым жа месцы,\nале ўсё акрамя коду будзе страчана."
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr ""
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr "Каталог скетчу больш не існуе.\nArduino пераключыцца на каталог па-змоўчванню\nці створыць новы каталог калі патрэбна.\nArduino спыніць казаць аб сабе у трэцяй асобе."
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr "Гэты файл ужо скапіяваны"
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr "Час зрабіць перапынак"
+
+#: Editor.java:663
+msgid "Tools"
+msgstr "Інструменты"
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr "Турэцкая"
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr "Украінская"
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr ""
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr "Адмяніць"
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr ""
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr "Абнавіць"
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr "Аднавіць пашырэнні імён скетчаў падчас захоўвання (*.pde->*.ino)"
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr "Выгрузіць"
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr "Выгрузіць праз праграматар"
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr "Выгрузка адменена."
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr ""
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr "Выгружаем..."
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr ""
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr "Карыстацца вонкавым рэдактарам"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr "Спраўдзіць"
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr "Спраўдзіць / Кампіляваць"
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr "Спаўдзіць код пасля выгрузкі"
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr "Наведаць Arduino.cc"
+
+#: Base.java:2128
+msgid "Warning"
+msgstr "Увага"
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr "Wire.receive() было перайменавана ў Wire.read()."
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr "Wire.send() быў перайменаваны ў Wire.write()."
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr "Пазначаць"
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr ""
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr "Так"
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr "Мяне не абдурыш"
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr "Вы не можаце назваць .cpp файл тым жа імём, што і скетч."
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr "Вы не можаце перайменаваць скетч у \"{0}\",\nтаму што скетч ужо мае .cpp файл з такім імём."
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr "Вы не можаце захаваць як \"{0}\",\nтаму што скетч ужо мае .cpp файл з такім імём."
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr "Вы не можаце захоўваць скетч у каталог\nунутры скетча. Гэта ўсё ўскладніць"
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr ""
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr "Вы дасягнулі ліміту аўтайменавання новых скетчаў\nна сёння. Мабыць варта лепш выйсці на шпацыр?"
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr "ZIP-файлы ці каталогі"
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr "ZIP не змяшчае бібліятэкі"
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr "пашырэнне .{0} не падыходзіць"
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr "\"{0}\" утрымлівае незразумелыя сімвалы. Калі гэты код быў створаны ў старой версіі Processing, вам варта ўжыць Tools -> Fix Encoding & Reload для абнаўлення скетча на кадыроўку UTF-8. Калі гэта не вырашыць праблему, спатрэбіцца выдаліць кепскія сімвалы ўручную, каб пазбавіцца ад гэтага паведамлення."
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr ""
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr "кампіляцыі"
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr "createNewFile() вярнула false"
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr "асяроддзе"
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr ""
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr ""
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr ""
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr "http://www.arduino.cc/playground/Learning/Linux"
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr "ігнарую памылковы памер шрыфта {0}"
+
+#: Base.java:2080
+msgid "index.html"
+msgstr "index.html"
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr ""
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr "platforms.html"
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr ""
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr "removeCode: internal error.. немагчыма знайсці код"
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr ""
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr "Абраны паслядоўны порт {0} не існуе, альбо плата не далучана"
+
+#: Preferences.java:391
+msgid "upload"
+msgstr "выгрузкі"
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr "{0} файлаў дададзена ў скетч."
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr "{0} вярнуў {1}"
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr ""
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_be.properties b/app/src/processing/app/i18n/Resources_be.properties
new file mode 100644
index 000000000..0040f6fd8
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_be.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0417\u0430\u0447\u044b\u043d\u0456\u0446\u0435 \u0430\u043f\u043e\u0448\u043d\u0456 \u0430\u0434\u0447\u044b\u043d\u0435\u043d\u044b \u0441\u043a\u0435\u0442\u0447 \u0434\u0437\u0435\u043b\u044f \u0432\u044b\u0445\u0430\u0434\u0443 \u0437 Arduino.
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u0424\u0430\u0439\u043b \u0437 \u0456\u043c\u0451\u043c "{0}" \u0443\u0436\u043e \u0456\u0441\u043d\u0443\u0435 \u045e "{1}"
+
+#: Editor.java:2169
+#, java-format
+A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u0437 \u0456\u043c\u0451\u043c "{0}" \u0443\u0436\u043e \u0456\u0441\u043d\u0443\u0435. \u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u0441\u043a\u0435\u0442\u0447.
+
+#: Base.java:2690
+#, java-format
+A\ library\ named\ {0}\ already\ exists=\u0411\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u0437 \u0456\u043c\u0451\u043c {0} \u0443\u0436\u043e \u0456\u0441\u043d\u0443\u0435
+
+#: UpdateCheck.java:103
+A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0414\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0456\u044f Arduino,\n\u0436\u0430\u0434\u0430\u0435\u0446\u0435 \u043d\u0430\u0432\u0435\u0434\u0430\u0446\u044c \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0443 \u0441\u043f\u0430\u043c\u043f\u043e\u045e\u043a\u0456 Arduino?
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+About\ Arduino=\u0410\u0431 Arduino
+
+#: Editor.java:650
+Add\ File...=\u0414\u0430\u0434\u0430\u0446\u044c \u0424\u0430\u0439\u043b
+
+#: Base.java:963
+Add\ Library...=\u0414\u0430\u0434\u0430\u0446\u044c \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443...
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0417\u0434\u0430\u0440\u044b\u043b\u0430\u0441\u044f \u043d\u0435\u0432\u044f\u0434\u043e\u043c\u0430\u044f \u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0456\n\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430-\u0441\u043f\u0435\u0446\u044b\u0444\u0456\u0447\u043d\u0430\u0433\u0430 \u043a\u043e\u0434\u0443 \u0434\u043b\u044f \u0432\u0430\u0448\u0430\u0433\u0430 \u043a\u0430\u043c\u043f'\u044e\u0442\u0430\u0440\u0430.
+
+#: Preferences.java:85
+Arabic=\u0410\u0440\u0430\u0431\u0441\u043a\u0430\u044f
+
+#: Preferences.java:86
+Aragonese=\u0410\u0440\u0430\u0433\u043e\u043d\u0441\u043a\u0430\u044f
+
+#: tools/Archiver.java:48
+Archive\ Sketch=\u0410\u0440\u0445\u0456\u0432\u0430\u0432\u0430\u0446\u044c \u0421\u043a\u0435\u0442\u0447
+
+#: tools/Archiver.java:109
+Archive\ sketch\ as\:=\u0410\u0440\u0445\u0456\u0432\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u044f\u043a\:
+
+#: tools/Archiver.java:139
+Archive\ sketch\ canceled.=\u0410\u0440\u0445\u0456\u0432\u0430\u0432\u0430\u043d\u043d\u0435 \u0441\u043a\u0435\u0442\u0447\u0443 \u0430\u0434\u043c\u0435\u043d\u0435\u043d\u0430.
+
+#: tools/Archiver.java:75
+Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0410\u0440\u0445\u0456\u0432\u0430\u0432\u0430\u043d\u043d\u0435 \u0441\u043a\u0435\u0442\u0447\u0443 \u0431\u044b\u043b\u043e \u0441\u043a\u0430\u0441\u0430\u0432\u0430\u043d\u0430, \u0431\u043e \u0441\u043a\u0435\u0442\u0447\n\u043d\u0435 \u0431\u044b\u045e \u0430\u0434\u043f\u0430\u0432\u0435\u0434\u043d\u0430 \u0437\u0430\u0445\u0430\u0432\u0430\u043d\u044b.
+
+#: ../../../processing/app/I18n.java:83
+Arduino\ ARM\ (32-bits)\ Boards=\u041f\u043b\u0430\u0442\u044b Arduino ARM (32-\u0431\u0456\u0442)
+
+#: ../../../processing/app/I18n.java:82
+Arduino\ AVR\ Boards=\u041f\u043b\u0430\u0442\u044b Arduino AVR
+
+#: Base.java:1682
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u0430\u043f\u0443\u0441\u0446\u0456\u0446\u044c Arduino, \u0431\u043e\n\u043d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0441\u0442\u0432\u0430\u0440\u044b\u0446\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433,\n\u043a\u0430\u0431 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456.
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u043f\u043e\u045e\u043d\u044b JDK (\u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u0456 JRE)\n\u0434\u043b\u044f \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u043d\u044f. \u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430, \u0443\u0441\u0442\u0430\u043b\u044e\u0439\u0446\u0435 JDK 1.5\n\u0446\u0456 \u043d\u0430\u0432\u0435\u0439. \u0411\u043e\u043b\u044c\u0448 \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0456 \u043c\u043e\u0436\u043d\u0430 \u0434\u0430\u0437\u043d\u0430\u0446\u0446\u0430\n\u043f\u0430 \u0441\u043f\u0430\u0441\u044b\u043b\u0446\u044b.
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0412\u044b \u0441\u0430\u043f\u0440\u0430\u045e\u0434\u044b \u0436\u0430\u0434\u0430\u0435\u0446\u0435 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c "{0}"?
+
+#: Sketch.java:587
+Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0412\u044b \u0441\u0430\u043f\u0440\u0430\u045e\u0434\u044b \u0436\u0430\u0434\u0430\u0435\u0446\u0435 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0433\u044d\u0442\u044b \u0441\u043a\u0435\u0442\u0447?
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+Auto\ Format\ finished.=\u0410\u045e\u0442\u0430\u0444\u0430\u0440\u043c\u0430\u0442 \u0441\u043a\u043e\u043d\u0447\u0430\u043d\u044b
+
+#: Preferences.java:439
+Automatically\ associate\ .ino\ files\ with\ Arduino=\u0410\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u0430 \u0430\u0441\u0430\u0446\u044b\u044f\u0432\u0430\u0446\u044c \u0444\u0430\u0439\u043b\u044b .ino \u0437 Arduino
+
+#: SerialMonitor.java:110
+Autoscroll=\u0410\u045e\u0442\u0430\u043f\u0440\u0430\u043a\u0440\u0443\u0442\u043a\u0430
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+Bad\ file\ selected=\u0410\u0431\u0440\u0430\u043d\u044b \u043a\u0435\u043f\u0441\u043a\u0456 \u0444\u0430\u0439\u043b
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+Board=\u041f\u043b\u0430\u0442\u0430
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u041f\u043b\u0430\u0442\u0430 {0}\:{1}\:{2} \u043d\u0435 \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u0435 \u043f\u0435\u0440\u0430\u0432\u0430\u0433\u0456 ''build.board''. \u0410\u045e\u0442\u0430-\u045e\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u043d\u0430 \u045e\: {3}
+
+#: ../../../processing/app/EditorStatus.java:472
+Board\:\ =\u041f\u043b\u0430\u0442\u0430\:
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+Browse=\u0410\u0433\u043b\u044f\u0434
+
+#: Sketch.java:1392 Sketch.java:1423
+Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u0430\u0431\u0443\u0434\u043e\u0432\u044b \u0437\u043d\u0456\u043a \u0446\u0456 \u043d\u0435\u0434\u0430\u0441\u0442\u0443\u043f\u043d\u044b \u0434\u043b\u044f \u0437\u0430\u043f\u0456\u0441\u0443
+
+#: ../../../processing/app/Preferences.java:80
+Bulgarian=\u0411\u0430\u043b\u043a\u0430\u0433\u0441\u043a\u0430\u044f
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+Burn\ Bootloader=\u041f\u0440\u0430\u0448\u044b\u0446\u044c \u0417\u0430\u0433\u0440\u0443\u0437\u0447\u044b\u043a
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+Can't\ open\ source\ sketch\!=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u0441\u043a\u0435\u0442\u0447\!
+
+#: ../../../processing/app/Preferences.java:92
+Canadian\ French=\u041a\u0430\u043d\u0430\u0434\u0441\u043a\u0430-\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+Cancel=\u0410\u0434\u043c\u0435\u043d\u0430
+
+#: Sketch.java:455
+Cannot\ Rename=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u041f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+Catalan=\u041a\u0430\u0442\u0430\u043b\u043e\u043d\u0441\u043a\u0430\u044f
+
+#: Preferences.java:419
+Check\ for\ updates\ on\ startup=\u0414\u0430\u0437\u043d\u0430\u0432\u0430\u0446\u0446\u0430 \u043f\u0440\u0430 \u0430\u0431\u043d\u0430\u045e\u043b\u0435\u043d\u043d\u0456 \u043f\u0430\u0434\u0447\u0430\u0441 \u0437\u0430\u043f\u0443\u0441\u043a\u0443
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+Chinese\ Simplified=\u041a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f \u0441\u043f\u0440\u043e\u0448\u0447\u0430\u043d\u0430\u044f
+
+#: Preferences.java:89
+Chinese\ Traditional=\u041a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f \u0442\u0440\u0430\u0434\u044b\u0446\u044b\u0439\u043d\u0430\u044f
+
+#: Editor.java:521 Editor.java:2024
+Close=\u0417\u0430\u0447\u044b\u043d\u0456\u0446\u044c
+
+#: Editor.java:1208 Editor.java:2749
+Comment/Uncomment=\u0417\u0430\u043a\u0430\u043c\u0435\u043d\u0442\u0430\u0432\u0430\u0446\u044c/\u0420\u0430\u0441\u043a\u0430\u043c\u0435\u043d\u0442\u0430\u0432\u0430\u0446\u044c
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043a\u0430\u043c\u043f\u0456\u043b\u044f\u0442\u0430\u0440\u0430, \u043a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0434\u0430\u0448\u043b\u0456\u0446\u0435 \u0433\u044d\u0442\u044b \u043a\u043e\u0434 \u043d\u0430 {0}
+
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=\u041a\u0430\u043c\u043f\u0456\u043b\u044f\u0446\u044b\u044f \u0441\u043a\u0435\u0442\u0447\u0443...
+
+#: EditorConsole.java:152
+Console\ Error=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u041a\u0430\u043d\u0441\u043e\u043b\u0456
+
+#: Editor.java:1157 Editor.java:2707
+Copy=\u041a\u0430\u043f\u0456\u044f\u0432\u0430\u0446\u044c
+
+#: Editor.java:1177 Editor.java:2723
+Copy\ as\ HTML=\u041a\u0430\u043f\u0456\u044f\u0432\u0430\u0446\u044c \u044f\u043a HTML
+
+#: ../../../processing/app/EditorStatus.java:456
+Copy\ error=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043a\u0430\u043f\u0456\u044f\u0432\u0430\u043d\u043d\u044f
+
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=\u041a\u0430\u043f\u0456\u044f\u0432\u0430\u0446\u044c \u0443 \u0424\u043e\u0440\u0443\u043c
+
+#: Sketch.java:1089
+#, java-format
+Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0434\u0430\u0434\u0430\u0446\u044c "{0}" \u0443 \u0441\u043a\u0435\u0442\u0447.
+
+#: Editor.java:2188
+Could\ not\ copy\ to\ a\ proper\ location.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0441\u043a\u0430\u043f\u0456\u044f\u0432\u0430\u0446\u044c \u0443 \u043f\u0430\u0440\u0442\u0440\u044d\u0431\u043d\u0430\u0435 \u043c\u0435\u0441\u0446\u0430.
+
+#: Editor.java:2179
+Could\ not\ create\ the\ sketch\ folder.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0441\u0442\u0432\u0430\u0440\u044b\u0446\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0441\u043a\u0435\u0442\u0447\u0443.
+
+#: Editor.java:2206
+Could\ not\ create\ the\ sketch.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0441\u0442\u0432\u0430\u0440\u044b\u0446\u044c \u0441\u043a\u0435\u0442\u0447
+
+#: Sketch.java:617
+#, java-format
+Could\ not\ delete\ "{0}".=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c "{0}".
+
+#: Sketch.java:1066
+#, java-format
+Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0456\u0441\u043d\u0443\u044e\u0447\u044b \u0444\u0430\u0439\u043b "{0}"
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+Could\ not\ delete\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c {0}
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u043d\u0430\u0439\u0441\u0446\u0456 boards.txt \u0443 {0}. \u0423 \u0432\u0430\u0441 \u0440\u044d\u043b\u0456\u0437 pre-1.5?
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+Could\ not\ find\ tool\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u043d\u0430\u0439\u0441\u0446\u0456 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 {0}
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u043d\u0430\u0439\u0441\u0446\u0456 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 {0} \u0437 \u043f\u0430\u043a\u0435\u0442\u0443 {1}
+
+#: Base.java:1934
+#, java-format
+Could\ not\ open\ the\ URL\n{0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c URL\n{0}
+
+#: Base.java:1958
+#, java-format
+Could\ not\ open\ the\ folder\n{0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433\n{0}
+
+#: Sketch.java:1769
+Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0441\u043b\u0443\u0448\u043d\u0430 \u043f\u0435\u0440\u0430\u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447. \u041c\u043e\u0436\u0430 \u0437\u0434\u0430\u0440\u044b\u0446\u0446\u0430 \u0431\u044f\u0434\u0430,\n\u043a\u0430\u043b\u0456 \u0432\u044b \u0437\u0430\u0440\u0430\u0437 \u0436\u0430 \u043d\u0435 \u0437\u0440\u043e\u0431\u0456\u0446\u0435 \u043a\u043e\u043f\u0456\u044e \u043a\u0440\u044b\u043d\u0456\u0447\u043d\u0430\u0433\u0430 \u043a\u043e\u0434\u0443 \u045e \u0456\u043d\u0448\u044b \u0440\u044d\u0434\u0430\u043a\u0442\u0430\u0440\n\u043f\u0440\u0430\u0437 \u0431\u0443\u0444\u0435\u0440 \u0430\u0431\u043c\u0435\u043d\u0443.
+
+#: Sketch.java:1768
+Could\ not\ re-save\ sketch=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0440\u0430\u0447\u044b\u0442\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456 \u043f\u0430-\u0437\u043c\u043e\u045e\u0447\u0432\u0430\u043d\u043d\u044e.\n\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u043f\u0435\u0440\u0430\u045e\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u0446\u044c Arduino.
+
+#: Preferences.java:258
+#, java-format
+Could\ not\ read\ preferences\ from\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0440\u0430\u0447\u044b\u0442\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456 \u0437 {0}
+
+#: Base.java:2482
+#, java-format
+Could\ not\ remove\ old\ version\ of\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0441\u0442\u0430\u0440\u0443\u044e \u0432\u0435\u0441\u0456\u044e {0}
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+Could\ not\ rename\ "{0}"\ to\ "{1}"=\u041d\u0415\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c "{0}" \u0443 "{1}"
+
+#: Sketch.java:475
+Could\ not\ rename\ the\ sketch.\ (0)=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447. (0)
+
+#: Sketch.java:496
+Could\ not\ rename\ the\ sketch.\ (1)=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447. (1)
+
+#: Sketch.java:503
+Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447. (2)
+
+#: Base.java:2492
+#, java-format
+Could\ not\ replace\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u0430\u043c\u044f\u043d\u0456\u0446\u044c {0}
+
+#: tools/Archiver.java:74
+Couldn't\ archive\ sketch=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0440\u0445\u0456\u0432\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447
+
+#: Sketch.java:1647
+Couldn't\ determine\ program\ size\:\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0432\u044b\u0437\u043d\u0430\u0447\u044b\u0446\u044c \u043f\u0430\u043c\u0435\u0440 \u043f\u0440\u0430\u0433\u0440\u0430\u043c\u044b\: {0}
+
+#: Sketch.java:616
+Couldn't\ do\ it=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u0440\u0430\u0431\u0456\u0446\u044c \u0433\u044d\u0442\u0430
+
+#: debug/BasicUploader.java:209
+Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u043f\u0430\u0437\u043d\u0430\u0446\u044c \u041f\u043b\u0430\u0442\u0443 \u043d\u0430 \u0430\u0431\u0440\u0430\u043d\u044b\u043c \u043f\u043e\u0440\u0446\u0435. \u0421\u043f\u0440\u0430\u045e\u0434\u0437\u0456\u0446\u0435, \u0448\u0442\u043e \u0432\u044b \u0430\u0431\u0440\u0430\u043b\u0456 \u0442\u043e\u0439 \u043f\u043e\u0440\u0442. \u041a\u0430\u043b\u0456 \u045e\u0441\u0451 \u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u0430, \u043f\u0430\u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u043d\u0430\u0446\u0456\u0441\u043d\u0446\u044c \u043a\u043d\u043e\u043f\u043a\u0443 \u0441\u043a\u0456\u0434\u0443 \u043d\u0430 \u043f\u043b\u0430\u0446\u0435 \u043f\u0430\u0441\u043b\u044f \u0456\u043d\u0456\u0446\u044b\u044f\u0446\u044b\u0456 \u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456.
+
+#: ../../../processing/app/Preferences.java:82
+Croatian=\u0425\u0430\u0440\u0432\u0430\u0446\u043a\u0430\u044f
+
+#: Editor.java:1149 Editor.java:2699
+Cut=\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c
+
+#: ../../../processing/app/Preferences.java:83
+Czech=\u0427\u044d\u0448\u0441\u043a\u0430\u044f
+
+#: Preferences.java:90
+Danish=\u0414\u0430\u0446\u043a\u0430\u044f
+
+#: Editor.java:1224 Editor.java:2765
+Decrease\ Indent=\u041f\u0430\u043c\u0435\u043d\u044c\u0448\u044b\u0446\u044c \u0432\u043e\u0434\u0441\u0442\u0443\u043f
+
+#: EditorHeader.java:314 Sketch.java:591
+Delete=\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+Discard\ all\ changes\ and\ reload\ sketch?=\u0410\u0434\u0440\u044b\u043d\u0443\u0446\u044c \u0443\u0441\u0435 \u0437\u043c\u0435\u043d\u044b \u0456 \u043f\u0435\u0440\u0430\u0437\u0430\u0433\u0440\u0443\u0437\u0456\u0446\u044c \u0441\u043a\u0435\u0442\u0447?
+
+#: Editor.java:2064
+Don't\ Save=\u041d\u0435 \u0417\u0430\u0445\u043e\u045e\u0432\u0430\u0446\u044c
+
+#: Editor.java:2275 Editor.java:2311
+Done\ Saving.=\u0417\u0430\u0445\u0430\u0432\u0430\u043d\u043d\u0435 \u0412\u044b\u043a\u0430\u043d\u0430\u043d\u0430
+
+#: Editor.java:2510
+Done\ burning\ bootloader.=\u0412\u044b\u043a\u0430\u043d\u0430\u043d\u0430 \u043f\u0440\u0430\u0448\u044b\u0432\u0430\u043d\u043d\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u044b\u043a\u0430.
+
+#: Editor.java:1911 Editor.java:1928
+Done\ compiling.=\u041a\u0430\u043c\u043f\u0456\u043b\u044f\u0446\u044b\u044f \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u0430.
+
+#: Editor.java:2564
+Done\ printing.=\u0414\u0440\u0443\u043a \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u044b
+
+#: Editor.java:2395 Editor.java:2431
+Done\ uploading.=\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u0430.
+
+#: Preferences.java:91
+Dutch=\u0413\u0430\u043b\u0430\u0434\u0441\u043a\u0430\u044f
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+Edit=\u0420\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c
+
+#: Preferences.java:370
+Editor\ font\ size\:\ =\u041f\u0430\u043c\u0435\u0440 \u0448\u0440\u044b\u0444\u0442\u0443 \u0440\u044d\u0434\u0430\u043a\u0442\u0430\u0440\u0430\:
+
+#: Preferences.java:353
+Editor\ language\:\ =\u041c\u043e\u0432\u0430 \u0440\u044d\u0434\u0430\u043a\u0442\u0430\u0440\u0430\:
+
+#: Preferences.java:92
+English=\u0410\u043d\u0433\u043b\u0456\u0439\u0441\u043a\u0430\u044f
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+Environment=\u0410\u0441\u044f\u0440\u043e\u0434\u0434\u0437\u0435
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=\u041f\u0430\u043c\u044b\u043b\u043a\u0430
+
+#: Sketch.java:1065 Sketch.java:1088
+Error\ adding\ file=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0434\u0430\u0434\u0430\u043d\u043d\u044f \u0444\u0430\u0439\u043b\u0430
+
+#: debug/Compiler.java:369
+Error\ compiling.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043a\u0430\u043c\u043f\u0456\u043b\u044f\u0446\u044b\u0456.
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+Error\ inside\ Serial.{0}()=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0443\u043d\u0443\u0442\u0440\u044b Serial.{0}()
+
+#: ../../../processing/app/Base.java:1232
+Error\ loading\ libraries=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0456 \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+Error\ loading\ {0}=\u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0456 {0}
+
+#: Serial.java:181
+#, java-format
+Error\ opening\ serial\ port\ ''{0}''.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0430\u0434\u0447\u044b\u043d\u0435\u043d\u043d\u044f \u043f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u0430\u0433\u0430 \u043f\u0430\u0440\u0442\u0430 ''{0}''.
+
+#: Preferences.java:277
+Error\ reading\ preferences=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0447\u044b\u0442\u0430\u043d\u043d\u044f \u043d\u0430\u043b\u0430\u0434\u0430\u043a
+
+#: Preferences.java:279
+#, java-format
+Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0447\u044b\u0442\u0430\u043d\u043d\u044f \u0444\u0430\u0439\u043b\u0430 \u043d\u0430\u043b\u0430\u0434\u0430\u043a. \u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u0435 (\u0446\u0456 \u043f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u0435)\n{0} \u0456 \u043f\u0435\u0440\u0430\u0437\u0430\u043f\u0443\u0441\u0446\u0456\u0446\u0435 Arduino.
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+Error\ while\ burning\ bootloader.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u043f\u0440\u0430\u0448\u044b\u0432\u0430\u043d\u043d\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u044b\u043a\u0430.
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+Error\ while\ loading\ code\ {0}=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0456 \u043a\u043e\u0434\u0443 {0}
+
+#: Editor.java:2567
+Error\ while\ printing.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0434\u0440\u0443\u043a\u0443.
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+Estonian=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0430\u044f
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+Examples=\u040e\u0437\u043e\u0440\u044b
+
+#: Editor.java:2482
+Export\ canceled,\ changes\ must\ first\ be\ saved.=\u042d\u043a\u0441\u043f\u0430\u0440\u0442 \u0441\u043a\u0430\u0441\u0430\u0432\u0430\u043d\u044b, \u0441\u043f\u0430\u0447\u0430\u0442\u043a\u0443 \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0437\u043c\u0435\u043d\u044b.
+
+#: Base.java:2100
+FAQ.html=FAQ.html
+
+#: Editor.java:491
+File=\u0424\u0430\u0439\u043b
+
+#: Preferences.java:94
+Filipino=\u0424\u0456\u043b\u0456\u043f\u0456\u0441\u043a\u0430\u044f
+
+#: FindReplace.java:124 FindReplace.java:127
+Find=\u0428\u0443\u043a\u0430\u0446\u044c
+
+#: Editor.java:1249
+Find\ Next=\u0428\u0443\u043a\u0430\u0446\u044c \u0423\u043f\u0435\u0440\u0430\u0434
+
+#: Editor.java:1259
+Find\ Previous=\u0428\u0443\u043a\u0430\u0446\u044c \u041d\u0430\u0437\u0430\u0434
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+Find...=\u0428\u0443\u043a\u0430\u0446\u044c...
+
+#: FindReplace.java:80
+Find\:=\u0428\u0443\u043a\u0430\u0446\u044c\:
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u041f\u0440\u044b\u043c\u0443\u0441\u043e\u0432\u044b \u0441\u043a\u0456\u0434 \u0445\u0443\u0442\u043a\u0430\u0441\u0446\u0456 \u043d\u0430 1200bps open/close \u043d\u0430 \u043f\u043e\u0440\u0442
+
+#: Preferences.java:95
+French=\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+Galician=\u0413\u0430\u043b\u0456\u0446\u043a\u0430\u044f
+
+#: ../../../processing/app/Preferences.java:94
+Georgian=\u0413\u0440\u0443\u0437\u0456\u043d\u0441\u043a\u0430\u044f
+
+#: Preferences.java:97
+German=\u041d\u044f\u043c\u0435\u0446\u043a\u0430\u044f
+
+#: Editor.java:1054
+Getting\ Started=\u0417 \u0447\u0430\u0433\u043e \u043f\u0430\u0447\u0430\u0446\u044c
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+Greek=\u0413\u0440\u044d\u0446\u043a\u0430\u044f
+
+#: Base.java:2085
+Guide_Environment.html=Guide_Environment.html
+
+#: Base.java:2071
+Guide_MacOSX.html=Guide_MacOSX.html
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+Guide_Windows.html=Guide_Windows.html
+
+#: ../../../processing/app/Preferences.java:95
+Hebrew=\u0406\u045e\u0440\u044b\u0442
+
+#: Editor.java:1015
+Help=\u0414\u0430\u043f\u0430\u043c\u043e\u0433\u0430
+
+#: Preferences.java:99
+Hindi=\u0425\u0456\u043d\u0434\u0437\u0456
+
+#: Sketch.java:295
+How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u042f\u043a \u043d\u0430\u043a\u043e\u043d\u0442 \u0441\u043f\u0430\u0447\u0430\u0442\u043a\u0443 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447\n\u043f\u0435\u0440\u0430\u0434 \u0442\u044b\u043c \u044f\u043a \u0441\u043f\u0440\u0430\u0431\u0430\u0432\u0430\u0446\u044c \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c \u044f\u0433\u043e?
+
+#: Sketch.java:882
+How\ very\ Borges\ of\ you=\u0421\u043f\u0430\u0434\u0430\u0440 \u0430\u0431\u0441\u0442\u0440\u0430\u043a\u0446\u044b\u044f\u043d\u0456\u0441\u0442?
+
+#: Preferences.java:100
+Hungarian=\u0412\u0435\u043d\u0433\u0435\u0440\u0441\u043a\u0430\u044f
+
+#: FindReplace.java:96
+Ignore\ Case=\u0406\u0433\u043d\u0430\u0440\u0430\u0432\u0430\u0446\u044c \u0440\u044d\u0433\u0456\u0441\u0442\u0440
+
+#: Base.java:1058
+Ignoring\ bad\ library\ name=\u0406\u0433\u043d\u0430\u0440\u0443\u044e \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443 \u0437 \u043a\u0435\u043f\u0441\u043a\u0456\u043c \u0456\u043c\u0451\u043c
+
+#: Base.java:1436
+Ignoring\ sketch\ with\ bad\ name=\u0406\u0433\u043d\u0430\u0440\u0443\u0435\u0446\u0446\u0430 \u0441\u043a\u0435\u0442\u0447 \u0437 \u043a\u0435\u043f\u0441\u043a\u0456\u043c \u0456\u043c\u0451\u043c
+
+#: Editor.java:636
+Import\ Library...=\u0406\u043c\u043f\u0430\u0440\u0442\u0430\u0432\u0430\u0446\u044c \u0411\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443
+
+#: ../../../processing/app/Sketch.java:736
+In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u0423 Arduino 1.0 \u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0435 \u0444\u0430\u0439\u043b\u0430\u045e \u0431\u044b\u043b\u043e \u0437\u043c\u0435\u043d\u0435\u043d\u0430 \u0437 .pde \u043d\u0430.ino.\n\u041d\u043e\u0432\u044b\u044f \u0441\u043a\u0435\u0442\u0447\u044b (\u0423\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u044b \u0441\u0442\u0432\u043e\u0440\u0430\u043d\u044b\u044f \u0437 \u0434\u0430\u043f\u0430\u043c\u043e\u0433\u0430\u0439 \n"\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c-\u042f\u043a") \u0431\u0443\u0434\u0443\u0446\u044c \u0443\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0446\u044c \u043d\u043e\u0432\u044b\u044f \u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0456. \n\u041f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0456 \u0456\u0441\u043d\u0443\u044e\u0447\u044b\u0445 \u0441\u043a\u0435\u0442\u0447\u0430\u045e \u0431\u0443\u0434\u0443\u0446\u044c \u0430\u0434\u043d\u043e\u045e\u043b\u0435\u043d\u044b \u043f\u0430\u0434\u0447\u0430\u0441 \n\u0437\u0430\u0445\u043e\u045e\u0432\u0430\u043d\u043d\u044f, \u0430\u043b\u0435 \u0432\u044b \u043c\u043e\u0436\u0430\u0446\u0435 \u0430\u0434\u043c\u044f\u043d\u0456\u0446\u044c \u0433\u044d\u0442\u0430 \u045e "Preferences dialog."\n\nSave sketch and update its extension?
+
+#: Editor.java:1216 Editor.java:2757
+Increase\ Indent=\u041f\u0430\u0432\u044f\u043b\u0456\u0446\u044b\u0446\u044c \u0432\u043e\u0434\u0441\u0442\u0443\u043f
+
+#: Preferences.java:101
+Indonesian=\u0406\u043d\u0434\u0430\u043d\u044d\u0437\u0456\u0439\u0441\u043a\u0430\u044f
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+Invalid\ library\ found\ in\ {0}\:\ {1}=\u041a\u0435\u043f\u0441\u043a\u0430\u044f \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u0430 \u045e {0}\: {1}
+
+#: Preferences.java:102
+Italian=\u0406\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0430\u044f
+
+#: Preferences.java:103
+Japanese=\u042f\u043f\u043e\u043d\u0441\u043a\u0430\u044f
+
+#: Preferences.java:104
+Korean=\u041a\u0430\u0440\u044d\u0439\u0441\u043a\u0430\u044f
+
+#: Preferences.java:105
+Latvian=\u041b\u0430\u0442\u0432\u0456\u0441\u043a\u0430\u044f
+
+#: Base.java:2699
+Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0411\u0456\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u0434\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u0430 \u0434\u0430 \u0432\u044b\u0448\u044b\u0445 \u0431\u0456\u043b\u0456\u044f\u0442\u044d\u043a. \u0412\u044b\u0431\u0435\u0440\u044b\u0446\u0435 \u043c\u0435\u043d\u044e "\u0406\u043c\u043f\u0430\u0440\u0442\u0430\u0432\u0430\u0446\u044c \u0431\u0456\u0431\u0456\u044f\u0442\u044d\u043a\u0456"
+
+#: Preferences.java:106
+Lithuaninan=\u041b\u0456\u0442\u043e\u045e\u0441\u043a\u0430\u044f
+
+#: ../../../processing/app/Sketch.java:1660
+Low\ memory\ available,\ stability\ problems\ may\ occur=\u0414\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u043c\u0430\u043b\u0430 \u043f\u0430\u043c\u044f\u0446\u0456, \u043c\u0430\u0433\u0447\u044b\u043c\u044b \u043f\u0440\u0430\u0431\u043b\u0435\u043c\u044b \u0441\u0430 \u0441\u0442\u0430\u0431\u0456\u043b\u044c\u043d\u0430\u0441\u0446\u044e
+
+#: Preferences.java:107
+Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0456
+
+#: Base.java:2112
+Message=\u041f\u0430\u0432\u0435\u0434\u0430\u043c\u043b\u0435\u043d\u043d\u0435
+
+#: Sketch.java:1712
+Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u0410\u0434\u0441\u0443\u0442\u043d\u0456\u0447\u0430\u044e\u0446\u044c \u0441\u0456\u043c\u0432\u0430\u043b\u044b */ \u043a\u0430\u043d\u0446\u0430 /* \u043a\u0430\u043c\u0435\u043d\u0442\u0430\u0440\u0430 */
+
+#: Preferences.java:449
+More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0411\u043e\u043b\u0435\u0439 \u043d\u0430\u043b\u0430\u0434\u0430\u043a \u043c\u043e\u0436\u043d\u0430 \u0437\u043c\u044f\u043d\u0456\u0446\u044c \u043d\u0430\u045e\u043f\u0440\u043e\u0441\u0442 \u0443 \u0444\u0430\u0439\u043b\u0435
+
+#: Editor.java:2156
+!Moving=
+
+#: Sketch.java:282
+Name\ for\ new\ file\:=\u0406\u043c\u044f \u0434\u043b\u044f \u043d\u043e\u0432\u0430\u0433\u0430 \u0444\u0430\u0439\u043b\u0430\:
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+New=\u041d\u043e\u0432\u044b
+
+#: EditorToolbar.java:46
+New\ Editor\ Window=\u041d\u043e\u0432\u0430\u0435 \u0432\u0430\u043a\u043d\u043e \u0440\u044d\u0434\u0430\u043a\u0442\u0430\u0440\u0430
+
+#: EditorHeader.java:292
+New\ Tab=\u041d\u043e\u0432\u044b Tab
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+Next\ Tab=\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u044b Tab
+
+#: Preferences.java:78 UpdateCheck.java:108
+No=\u041d\u0435
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+No\ files\ were\ added\ to\ the\ sketch.=\u0423 \u0441\u043a\u0435\u0442\u0447 \u043d\u0435 \u0434\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u0430 \u0444\u0430\u0439\u043b\u0430\u045e.
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0421\u0430\u043f\u0440\u0430\u045e\u0434\u044b, \u0432\u0430\u043c \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0441\u0432\u0435\u0436\u0430\u0435 \u043f\u0430\u0432\u0435\u0442\u0440\u0430.
+
+#: Editor.java:1872
+#, java-format
+No\ reference\ available\ for\ "{0}"=\u041d\u044f \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u0430 \u0441\u0443\u043f\u0430\u0434\u0437\u0435\u043d\u043d\u044f\u045e \u0437 "{0}"
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u041d\u0435\u0444\u0430\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u043d\u0430\u043b\u0430\u0434\u0430\u043a \u0432\u043e\u043d\u043a\u0430\u0432\u0430\u0433\u0430 \u0432\u044b\u0433\u043b\u044f\u0434\u0443.
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+Nope=\u041d\u0435-\u0430
+
+#: ../../../processing/app/Preferences.java:108
+Norwegian\ Bokm\u00e5l=\u041d\u0430\u0440\u0432\u0435\u0436\u0441\u043a\u0456 \u0411\u0443\u043a\u043c\u0430\u043b
+
+#: ../../../processing/app/Sketch.java:1656
+Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u041d\u0435 \u0445\u0430\u043f\u0430\u0435 \u043f\u0430\u043c\u044f\u0446\u0456; \u0433\u043b\u044f\u0434\u0437\u0456 http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0434\u043b\u044f \u043f\u0430\u0440\u0430\u0434\u0430\u045e
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=OK
+
+#: Sketch.java:992 Editor.java:376
+One\ file\ added\ to\ the\ sketch.=\u0414\u0430 \u0441\u043a\u0435\u0442\u0447\u0430 \u0434\u0430\u0434\u0430\u043d\u044b \u0430\u0434\u0437\u0456\u043d \u0444\u0430\u0439\u043b.
+
+#: EditorToolbar.java:41
+Open=\u0410\u0434\u0447\u044b\u043d\u0456\u0446\u044c
+
+#: Editor.java:2688
+Open\ URL=\u0410\u0434\u0447\u044b\u043d\u0456\u0446\u044c URL
+
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=\u0410\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u0441\u043a\u0435\u0442\u0447 Arduino...
+
+#: EditorToolbar.java:46
+Open\ in\ Another\ Window=\u0410\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u0443 \u0456\u043d\u0448\u044b\u043c \u0432\u0430\u043a\u043d\u0435
+
+#: Base.java:903 Editor.java:501
+Open...=\u0410\u0434\u0447\u044b\u043d\u0456\u0446\u044c...
+
+#: Editor.java:563
+Page\ Setup=\u041d\u0430\u043b\u0430\u0434\u043a\u0456 \u0421\u0442\u0430\u0440\u043e\u043d\u043a\u0456
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+Paste=\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c
+
+#: Preferences.java:109
+Persian=\u041f\u0435\u0440\u0441\u0456\u0434\u0441\u043a\u0430\u044f
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=\u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430, \u0443\u0441\u0442\u0430\u043b\u044e\u0439\u0446\u0435 JDK 1.5 \u0446\u0456 \u043d\u0430\u0432\u0435\u0439
+
+#: Preferences.java:110
+Polish=\u041f\u043e\u043b\u044c\u0441\u043a\u0430\u044f
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+Preferences=\u041d\u0430\u043b\u0430\u0434\u043a\u0456
+
+#: FindReplace.java:123 FindReplace.java:128
+Previous=\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u0456
+
+#: EditorHeader.java:326
+Previous\ Tab=\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u0456 Tab
+
+#: Editor.java:571
+Print=\u0414\u0440\u0443\u043a\u0430\u0432\u0430\u0446\u044c
+
+#: Editor.java:2571
+Printing\ canceled.=\u0414\u0440\u0443\u043a \u0430\u0434\u043c\u0435\u043d\u0435\u043d\u044b
+
+#: Editor.java:2547
+Printing...=\u0414\u0440\u0443\u043a\u0430\u0432\u0430\u043d\u043d\u0435...
+
+#: Base.java:1957
+Problem\ Opening\ Folder=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433
+
+#: Base.java:1933
+Problem\ Opening\ URL=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c URL
+
+#: Base.java:227
+Problem\ Setting\ the\ Platform=\u041f\u0440\u0430\u0431\u043b\u0435\u043c\u0430 \u0432\u044b\u0431\u0430\u0440\u0443 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b.
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+Problem\ moving\ {0}\ to\ the\ build\ folder=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u043d\u0435\u0441\u0446\u0456 {0} \u0443 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u0430\u0431\u0443\u0434\u043e\u0432\u044b
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+Problem\ with\ rename=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+Processor=\u041f\u0440\u0430\u0446\u044d\u0441\u0430\u0440
+
+#: Editor.java:704
+Programmer=\u041f\u0440\u0430\u0433\u0440\u0430\u043c\u0430\u0442\u0430\u0440
+
+#: Base.java:783 Editor.java:593
+Quit=\u0412\u044b\u0439\u0441\u0446\u0456
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+Redo=\u041f\u0435\u0440\u0430\u0440\u0430\u0431\u0456\u0446\u044c
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+Rename=\u041f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+Replace=\u0417\u0430\u043c\u044f\u043d\u0456\u0446\u044c
+
+#: FindReplace.java:122 FindReplace.java:129
+Replace\ &\ Find=\u0417\u043d\u0430\u0439\u0441\u0446\u0456 \u0456 \u0417\u0430\u043c\u044f\u043d\u0456\u0446\u044c
+
+#: FindReplace.java:120 FindReplace.java:131
+Replace\ All=\u0417\u0430\u043c\u044f\u043d\u0456\u0446\u044c \u0423\u0441\u0451
+
+#: Sketch.java:1043
+#, java-format
+Replace\ the\ existing\ version\ of\ {0}?=\u0417\u0430\u043c\u044f\u043d\u0456\u0446\u044c \u0432\u0435\u0440\u0441\u0456\u044e {0}, \u0448\u0442\u043e \u045e\u0436\u043e \u0456\u0441\u043d\u0443\u0435?
+
+#: FindReplace.java:81
+Replace\ with\:=\u0417\u0430\u043c\u044f\u043d\u0456\u0446\u044c \u043d\u0430\:
+
+#: Preferences.java:113
+Romanian=\u0420\u0443\u043c\u044b\u043d\u0441\u043a\u0430\u044f
+
+#: Preferences.java:114
+Russian=\u0420\u0443\u0441\u043a\u0430\u044f
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+Save=\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c
+
+#: Editor.java:537
+Save\ As...=\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u042f\u043a...
+
+#: Editor.java:2317
+Save\ Canceled.=\u0417\u0430\u0445\u0430\u0432\u0430\u043d\u043d\u0435 \u0410\u0434\u043c\u0435\u043d\u0435\u043d\u0430
+
+#: Editor.java:2467
+Save\ changes\ before\ export?=\u0417\u0430\u0445\u0432\u0430\u0446\u044c \u0437\u043c\u0435\u043d\u044b \u043f\u0435\u0440\u0430\u0434 \u044d\u043a\u0441\u043f\u0430\u0440\u0442\u0430\u043c?
+
+#: Editor.java:2020
+#, java-format
+Save\ changes\ to\ "{0}"?\ \ =\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0437\u043c\u0435\u043d\u044b \u045e "{0}"?
+
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0441\u043a\u0435\u0442\u0447\u0430\u045e \u044f\u043a...
+
+#: Editor.java:2270 Editor.java:2308
+Saving...=\u0417\u0430\u0445\u043e\u045e\u0432\u0430\u0435\u043c...
+
+#: Base.java:1909
+Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0410\u0431\u0440\u0430\u0446\u044c (\u0446\u0456 \u0441\u0442\u0432\u0430\u0440\u044b\u0446\u044c \u043d\u043e\u0432\u044b) \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0434\u043b\u044f \u0441\u043a\u0435\u0442\u0447\u0430\u045e...
+
+#: Editor.java:1198 Editor.java:2739
+Select\ All=\u0410\u0431\u0440\u0430\u0446\u044c \u0423\u0441\u0451
+
+#: Base.java:2636
+Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=\u0410\u0431\u044f\u0440\u044b\u0446\u0435 zip-\u0444\u0430\u0439\u043b \u0446\u0456 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0437 \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0430\u0439, \u044f\u043a\u0443\u044e \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0434\u0430\u0434\u0430\u0446\u044c
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+Select\ new\ sketchbook\ location=\u0410\u0431\u044f\u0440\u044b\u0446\u0435 \u043d\u043e\u0432\u0430\u0435 \u043c\u0430\u0441\u0446\u0430 \u0434\u043b\u044f \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430 \u0441\u043a\u0435\u0442\u0447\u0430\u045e
+
+#: ../../../processing/app/debug/Compiler.java:146
+Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=\u0410\u0431\u0440\u0430\u043d\u0430\u044f \u043f\u043b\u0430\u0442\u0430 \u0437\u0430\u043b\u0435\u0436\u044b\u0446\u044c \u0430\u0434 '{0}' (\u043d\u0435 \u0456\u043d\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u043d\u0430)
+
+#: SerialMonitor.java:93
+Send=\u0410\u0434\u0430\u0441\u043b\u0430\u0446\u044c
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+Serial\ Monitor=Serial-\u043c\u0430\u043d\u0456\u0442\u043e\u0440
+
+#: Serial.java:174
+#, java-format
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u041f\u043e\u0440\u0442 "{0}" \u0443\u0436\u043e \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u0435\u0446\u0446\u0430. \u041f\u0430\u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u0437\u0430\u0447\u044b\u043d\u0456\u0446\u044c \u043f\u0440\u0430\u0433\u0440\u0430\u043c\u044b, \u044f\u043a\u0456\u044f \u043c\u043e\u0433\u0443\u0446\u044c \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u0446\u044c \u043f\u043e\u0440\u0442.
+
+#: Serial.java:121
+#, java-format
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u041f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u044b \u043f\u043e\u0440\u0442 ''{0}'' \u0443\u0436\u043e \u045e\u0436\u044b\u0432\u0430\u0435\u0446\u0446\u0430. \u041f\u0430\u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u0437\u0430\u0447\u044b\u043d\u0456\u0446\u044c \u043f\u0440\u0430\u0433\u0440\u0430\u043c\u044b, \u044f\u043a\u0456\u044f \u043c\u043e\u0433\u0443\u0446\u044c \u043a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u0446\u0430 \u0456\u043c.
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Serial-\u043f\u043e\u0440\u0442 {0} \u043d\u044f \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b.\n\u041f\u0430\u0441\u043f\u0440\u0430\u0431\u0430\u0432\u0430\u0446\u044c \u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0443 \u043f\u0440\u0430\u0437 \u0456\u043d\u0448\u044b \u043f\u043e\u0440\u0442?
+
+#: Base.java:1681
+!Settings\ issues=
+
+#: Editor.java:641
+Show\ Sketch\ Folder=\u041f\u0430\u043a\u0430\u0437\u0430\u0446\u044c \u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u0421\u043a\u0435\u0442\u0447\u0430\u045e
+
+#: ../../../processing/app/EditorStatus.java:468
+Show\ verbose\ output\ during\ compilation=\u041f\u0430\u043a\u0430\u0437\u0430\u0446\u044c \u043f\u0430\u0434\u0440\u0430\u0431\u044f\u0437\u043d\u044b \u0432\u044b\u0432\u0430\u0434 \u043f\u0430\u0434\u0447\u0430\u0441 \u043a\u0430\u043c\u043f\u0456\u043b\u044f\u0446\u044b\u0456
+
+#: Preferences.java:387
+Show\ verbose\ output\ during\:\ =\u041f\u0430\u043a\u0430\u0437\u0432\u0430\u0446\u044c \u043f\u0430\u0434\u0440\u0430\u0431\u044f\u0437\u043d\u044b \u0432\u044b\u0432\u0430\u0434 \u043f\u0430\u0434\u0447\u0430\u0441\:
+
+#: Editor.java:607
+Sketch=\u0421\u043a\u0435\u0442\u0447
+
+#: Sketch.java:1754
+Sketch\ Disappeared=\u0421\u043a\u0435\u0442\u0447 \u0417\u043d\u0456\u043a
+
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=\u0421\u043a\u0435\u0442\u0447 \u041d\u0435 \u0406\u0441\u043d\u0443\u0435
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+Sketch\ is\ Read-Only=\u0421\u043a\u0435\u0442\u0447 \u0422\u043e\u043b\u044c\u043a\u0456-\u0434\u043b\u044f-\u0427\u044b\u0442\u0430\u043d\u043d\u044f
+
+#: Sketch.java:294
+Sketch\ is\ Untitled=\u0421\u043a\u0435\u0442\u0447 \u0411\u0435\u0437\u044b\u043c\u044f\u043d\u043d\u044b
+
+#: Sketch.java:720
+Sketch\ is\ read-only=\u0421\u043a\u0435\u0442\u0447 \u0422\u043e\u043b\u044c\u043a\u0456-\u0434\u043b\u044f-\u0427\u044b\u0442\u0430\u043d\u043d\u044f
+
+#: Sketch.java:1653
+Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u0421\u043a\u0435\u0442\u0447 \u0437\u0430\u043d\u0430\u0434\u0442\u0430 \u0432\u044f\u043b\u0456\u043a\u0456; \u0433\u043b\u044f\u0434\u0437\u0456 http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0434\u043b\u044f \u0432\u044b\u0440\u0430\u0448\u044d\u043d\u043d\u044f \u043f\u0440\u0430\u0431\u043b\u0435\u043c\u044b
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+Sketchbook\ folder\ disappeared=\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u0441\u043a\u0435\u0442\u0447\u0443 \u0437\u043d\u0456\u043a
+
+#: Preferences.java:315
+Sketchbook\ location\:=\u041c\u0435\u0441\u0446\u0430\u0437\u043d\u0430\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0435 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0443 \u0441\u043a\u0435\u0442\u0447\u0430\u045e
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u041d\u0435\u043a\u0430\u0442\u043e\u0440\u044b\u044f \u0444\u0430\u0439\u043b\u044b \u043f\u0430\u0437\u043d\u0430\u0447\u0430\u043d\u044b "\u0442\u043e\u043b\u044c\u043a\u0456-\u0434\u043b\u044f-\u0447\u044b\u0442\u0430\u043d\u043d\u044f",\n\u0432\u0430\u043c \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u043f\u0435\u0440\u0430\u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0443 \u0456\u043d\u0448\u044b\u043c \u043c\u0435\u0441\u0446\u044b\n\u0456 \u043f\u0430\u0441\u043f\u0440\u0430\u0431\u0430\u0432\u0430\u0446\u044c \u0456\u0437\u043d\u043e\u045e
+
+#: Sketch.java:721
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u041d\u0435\u043a\u0430\u0442\u043e\u0440\u044b\u044f \u0444\u0430\u0439\u043b\u044b \u043f\u0430\u0437\u043d\u0430\u0447\u0430\u043d\u044b "\u0442\u043e\u043b\u044c\u043a\u0456-\u0434\u043b\u044f-\u0447\u044b\u0442\u0430\u043d\u043d\u044f",\n\u0432\u0430\u043c \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u043f\u0435\u0440\u0430\u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0443 \u0456\u043d\u0448\u044b\u043c \u043c\u0435\u0441\u0446\u044b\n\u0456 \u043f\u0430\u0441\u043f\u0440\u0430\u0431\u0430\u0432\u0430\u0446\u044c \u0456\u0437\u043d\u043e\u045e
+
+#: Sketch.java:457
+#, java-format
+Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0412\u044b\u0431\u0430\u0447\u0430\u0439\u0446\u0435, \u0441\u043a\u0435\u0442\u0447 (\u0446\u0456 \u043a\u0430\u0442\u0430\u043b\u043e\u0433) \u0437 \u0456\u043c\u0451\u043c "{0}" \u0443\u0436\u043e \u0456\u0441\u043d\u0443\u0435.
+
+#: Preferences.java:115
+Spanish=\u0413\u0456\u0448\u043f\u0430\u043d\u0441\u043a\u0430\u044f
+
+#: Base.java:540
+Sunshine=\u0421\u043e\u043d\u0446\u0430 \u045e\u0441\u0442\u0430\u0435
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+System\ Default=System Default
+
+#: Preferences.java:116
+Tamil=\u0422\u0430\u043c\u0456\u043b\u044c\u0441\u043a\u0430\u044f
+
+#: debug/Compiler.java:414
+The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0421\u043b\u043e\u0432\u0430 'BYTE' \u0431\u043e\u043b\u044c\u0448 \u043d\u0435 \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435\u0446\u0446\u0430.
+
+#: debug/Compiler.java:426
+The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u041a\u043b\u0430\u0441 Client \u0431\u044b\u045e \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u044b \u045e EthernetClient.
+
+#: debug/Compiler.java:420
+The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u041a\u043b\u0430\u0441 Server \u0431\u044b\u045e \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u044b \u045e EthernetServer.
+
+#: debug/Compiler.java:432
+The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u041a\u043b\u0430\u0441 Udp \u0431\u044b\u045e \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u044b \u045e EthernetUdp.
+
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u0417\u0434\u0430\u0440\u044b\u043b\u0430\u0441\u044f \u043f\u0430\u043c\u044b\u043b\u043a\u0430, \u0430\u0434\u043d\u0430\u043a Arduino \u043f\u0430\u0432\u0456\u043d\u043d\u044b \u0431\u044b\u0446\u044c \u0443 \u0434\u043e\u0431\u0440\u044b\u043c \u0441\u0442\u0430\u043d\u0435
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u0411\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443 "{0}" \u043d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u044c.\n\u0406\u043c\u044f \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0456 \u043f\u0430\u0432\u0456\u043d\u043d\u0430 \u0437\u043a\u043b\u0430\u0434\u0430\u0446\u0446\u0430 \u0442\u043e\u043b\u044c\u043a\u0456 \u0437 \u043b\u0456\u0442\u0430\u0440 \u0456 \u043b\u0456\u0447\u0431\u0430\u045e.\n(\u0442\u043e\u043b\u044c\u043a\u0456 ASCII \u0456 \u0431\u0435\u0437 \u043f\u0440\u0430\u0431\u0435\u043b\u0430\u045e, \u043d\u0435\u043b\u044c\u0433\u0430 \u043f\u0430\u0447\u044b\u043d\u0430\u0446\u044c \u0437 \u043b\u0456\u0447\u0431\u044b)
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u0410\u0431\u0440\u0430\u043d\u044b \u0441\u043a\u0435\u0442\u0447 \u0431\u043e\u043b\u0435\u0439 \u043d\u0435 \u0456\u0441\u043d\u0443\u0435.\n\u041c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u043f\u0435\u0440\u0430\u0437\u0430\u043f\u0443\u0441\u0446\u0456\u0446\u044c Arduino\n\u0434\u043b\u044f \u0430\u0434\u043d\u0430\u045e\u043b\u0435\u043d\u043d\u044f \u0441\u043f\u0456\u0441\u0430 \u0441\u043a\u0435\u0442\u0447\u0430\u045e
+
+#: Base.java:1430
+#, java-format
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\u0421\u043a\u0435\u0442\u0447"{0}" \u043d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u044c.\n\u0406\u043c\u044f \u0441\u043a\u0435\u0442\u0447\u0430 \u043c\u043e\u0436\u0430 \u0441\u043a\u043b\u0430\u0434\u0430\u0446\u0446\u0430 \u0442\u043e\u043b\u044c\u043a\u0456 \u0437 \u043b\u0456\u0442\u0430\u0440 \u0456 \u043b\u0456\u0447\u0431\u0430\u045e\n(\u0442\u043e\u043b\u044c\u043a\u0456 ASCII \u0456 \u0431\u0435\u0437 \u043f\u0440\u0430\u0431\u0435\u043b\u0430\u045e, \u043d\u0435\u043b\u044c\u0433\u0430 \u043f\u0430\u0447\u044b\u043d\u0430\u0446\u044c \u0437 \u043b\u0456\u0447\u0431\u044b).\n\u041a\u0430\u0431 \u043f\u0430\u0437\u0431\u0430\u0432\u0456\u0446\u0446\u0430 \u0430\u0434 \u0433\u044d\u0442\u0430\u0433\u0430 \u043f\u0430\u0432\u0435\u0434\u0430\u043c\u043b\u0435\u043d\u043d\u044f, \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u0435 \u0441\u043a\u0435\u0442\u0447 \u0437\n{1}
+
+#: Sketch.java:1755
+The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u041f\u0430\u043f\u043a\u0430 \u0441\u043a\u0435\u0442\u0447\u0443 \u0437\u043d\u0456\u043a\u043b\u0430.\n\u0421\u043f\u0440\u0430\u0431\u0443\u0435\u043c \u043f\u0435\u0440\u0430\u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0443 \u0442\u044b\u043c \u0436\u0430 \u043c\u0435\u0441\u0446\u044b,\n\u0430\u043b\u0435 \u045e\u0441\u0451 \u0430\u043a\u0440\u0430\u043c\u044f \u043a\u043e\u0434\u0443 \u0431\u0443\u0434\u0437\u0435 \u0441\u0442\u0440\u0430\u0447\u0430\u043d\u0430.
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u0441\u043a\u0435\u0442\u0447\u0443 \u0431\u043e\u043b\u044c\u0448 \u043d\u0435 \u0456\u0441\u043d\u0443\u0435.\nArduino \u043f\u0435\u0440\u0430\u043a\u043b\u044e\u0447\u044b\u0446\u0446\u0430 \u043d\u0430 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u0430-\u0437\u043c\u043e\u045e\u0447\u0432\u0430\u043d\u043d\u044e\n\u0446\u0456 \u0441\u0442\u0432\u043e\u0440\u044b\u0446\u044c \u043d\u043e\u0432\u044b \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043a\u0430\u043b\u0456 \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430.\nArduino \u0441\u043f\u044b\u043d\u0456\u0446\u044c \u043a\u0430\u0437\u0430\u0446\u044c \u0430\u0431 \u0441\u0430\u0431\u0435 \u0443 \u0442\u0440\u044d\u0446\u044f\u0439 \u0430\u0441\u043e\u0431\u0435.
+
+#: Sketch.java:1075
+This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0413\u044d\u0442\u044b \u0444\u0430\u0439\u043b \u0443\u0436\u043e \u0441\u043a\u0430\u043f\u0456\u044f\u0432\u0430\u043d\u044b
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+Time\ for\ a\ Break=\u0427\u0430\u0441 \u0437\u0440\u0430\u0431\u0456\u0446\u044c \u043f\u0435\u0440\u0430\u043f\u044b\u043d\u0430\u043a
+
+#: Editor.java:663
+Tools=\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+Turkish=\u0422\u0443\u0440\u044d\u0446\u043a\u0430\u044f
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+Ukrainian=\u0423\u043a\u0440\u0430\u0456\u043d\u0441\u043a\u0430\u044f
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+Undo=\u0410\u0434\u043c\u044f\u043d\u0456\u0446\u044c
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+Update=\u0410\u0431\u043d\u0430\u0432\u0456\u0446\u044c
+
+#: Preferences.java:428
+Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0410\u0434\u043d\u0430\u0432\u0456\u0446\u044c \u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0456 \u0456\u043c\u0451\u043d \u0441\u043a\u0435\u0442\u0447\u0430\u045e \u043f\u0430\u0434\u0447\u0430\u0441 \u0437\u0430\u0445\u043e\u045e\u0432\u0430\u043d\u043d\u044f (*.pde->*.ino)
+
+#: EditorToolbar.java:41 Editor.java:545
+Upload=\u0412\u044b\u0433\u0440\u0443\u0437\u0456\u0446\u044c
+
+#: EditorToolbar.java:46 Editor.java:553
+Upload\ Using\ Programmer=\u0412\u044b\u0433\u0440\u0443\u0437\u0456\u0446\u044c \u043f\u0440\u0430\u0437 \u043f\u0440\u0430\u0433\u0440\u0430\u043c\u0430\u0442\u0430\u0440
+
+#: Editor.java:2403 Editor.java:2439
+Upload\ canceled.=\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u0430\u0434\u043c\u0435\u043d\u0435\u043d\u0430.
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+Uploading...=\u0412\u044b\u0433\u0440\u0443\u0436\u0430\u0435\u043c...
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+Use\ external\ editor=\u041a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u0446\u0430 \u0432\u043e\u043d\u043a\u0430\u0432\u044b\u043c \u0440\u044d\u0434\u0430\u043a\u0442\u0430\u0440\u0430\u043c
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+Verify=\u0421\u043f\u0440\u0430\u045e\u0434\u0437\u0456\u0446\u044c
+
+#: Editor.java:609
+Verify\ /\ Compile=\u0421\u043f\u0440\u0430\u045e\u0434\u0437\u0456\u0446\u044c / \u041a\u0430\u043c\u043f\u0456\u043b\u044f\u0432\u0430\u0446\u044c
+
+#: Preferences.java:400
+Verify\ code\ after\ upload=\u0421\u043f\u0430\u045e\u0434\u0437\u0456\u0446\u044c \u043a\u043e\u0434 \u043f\u0430\u0441\u043b\u044f \u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+Visit\ Arduino.cc=\u041d\u0430\u0432\u0435\u0434\u0430\u0446\u044c Arduino.cc
+
+#: Base.java:2128
+Warning=\u0423\u0432\u0430\u0433\u0430
+
+#: debug/Compiler.java:444
+Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0431\u044b\u043b\u043e \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u0430 \u045e Wire.read().
+
+#: debug/Compiler.java:438
+Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0431\u044b\u045e \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u044b \u045e Wire.write().
+
+#: FindReplace.java:105
+Wrap\ Around=\u041f\u0430\u0437\u043d\u0430\u0447\u0430\u0446\u044c
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+Yes=\u0422\u0430\u043a
+
+#: Sketch.java:1074
+You\ can't\ fool\ me=\u041c\u044f\u043d\u0435 \u043d\u0435 \u0430\u0431\u0434\u0443\u0440\u044b\u0448
+
+#: Sketch.java:411
+You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u043d\u0430\u0437\u0432\u0430\u0446\u044c .cpp \u0444\u0430\u0439\u043b \u0442\u044b\u043c \u0436\u0430 \u0456\u043c\u0451\u043c, \u0448\u0442\u043e \u0456 \u0441\u043a\u0435\u0442\u0447.
+
+#: Sketch.java:421
+You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0443 "{0}",\n\u0442\u0430\u043c\u0443 \u0448\u0442\u043e \u0441\u043a\u0435\u0442\u0447 \u0443\u0436\u043e \u043c\u0430\u0435 .cpp \u0444\u0430\u0439\u043b \u0437 \u0442\u0430\u043a\u0456\u043c \u0456\u043c\u0451\u043c.
+
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u044f\u043a "{0}",\n\u0442\u0430\u043c\u0443 \u0448\u0442\u043e \u0441\u043a\u0435\u0442\u0447 \u0443\u0436\u043e \u043c\u0430\u0435 .cpp \u0444\u0430\u0439\u043b \u0437 \u0442\u0430\u043a\u0456\u043c \u0456\u043c\u0451\u043c.
+
+#: Sketch.java:883
+You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u0437\u0430\u0445\u043e\u045e\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0443 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\n\u0443\u043d\u0443\u0442\u0440\u044b \u0441\u043a\u0435\u0442\u0447\u0430. \u0413\u044d\u0442\u0430 \u045e\u0441\u0451 \u045e\u0441\u043a\u043b\u0430\u0434\u043d\u0456\u0446\u044c
+
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0412\u044b \u0434\u0430\u0441\u044f\u0433\u043d\u0443\u043b\u0456 \u043b\u0456\u043c\u0456\u0442\u0443 \u0430\u045e\u0442\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u043d\u044f \u043d\u043e\u0432\u044b\u0445 \u0441\u043a\u0435\u0442\u0447\u0430\u045e\n\u043d\u0430 \u0441\u0451\u043d\u043d\u044f. \u041c\u0430\u0431\u044b\u0446\u044c \u0432\u0430\u0440\u0442\u0430 \u043b\u0435\u043f\u0448 \u0432\u044b\u0439\u0441\u0446\u0456 \u043d\u0430 \u0448\u043f\u0430\u0446\u044b\u0440?
+
+#: Base.java:2638
+ZIP\ files\ or\ folders=ZIP-\u0444\u0430\u0439\u043b\u044b \u0446\u0456 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0456
+
+#: Base.java:2661
+Zip\ doesn't\ contain\ a\ library=ZIP \u043d\u0435 \u0437\u043c\u044f\u0448\u0447\u0430\u0435 \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0456
+
+#: Sketch.java:364
+#, java-format
+".{0}"\ is\ not\ a\ valid\ extension.=\u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0435 .{0} \u043d\u0435 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0437\u0456\u0446\u044c
+
+#: SketchCode.java:258
+#, java-format
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0443\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435 \u043d\u0435\u0437\u0440\u0430\u0437\u0443\u043c\u0435\u043b\u044b\u044f \u0441\u0456\u043c\u0432\u0430\u043b\u044b. \u041a\u0430\u043b\u0456 \u0433\u044d\u0442\u044b \u043a\u043e\u0434 \u0431\u044b\u045e \u0441\u0442\u0432\u043e\u0440\u0430\u043d\u044b \u045e \u0441\u0442\u0430\u0440\u043e\u0439 \u0432\u0435\u0440\u0441\u0456\u0456 Processing, \u0432\u0430\u043c \u0432\u0430\u0440\u0442\u0430 \u045e\u0436\u044b\u0446\u044c Tools -> Fix Encoding & Reload \u0434\u043b\u044f \u0430\u0431\u043d\u0430\u045e\u043b\u0435\u043d\u043d\u044f \u0441\u043a\u0435\u0442\u0447\u0430 \u043d\u0430 \u043a\u0430\u0434\u044b\u0440\u043e\u045e\u043a\u0443 UTF-8. \u041a\u0430\u043b\u0456 \u0433\u044d\u0442\u0430 \u043d\u0435 \u0432\u044b\u0440\u0430\u0448\u044b\u0446\u044c \u043f\u0440\u0430\u0431\u043b\u0435\u043c\u0443, \u0441\u043f\u0430\u0442\u0440\u044d\u0431\u0456\u0446\u0446\u0430 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u043a\u0435\u043f\u0441\u043a\u0456\u044f \u0441\u0456\u043c\u0432\u0430\u043b\u044b \u045e\u0440\u0443\u0447\u043d\u0443\u044e, \u043a\u0430\u0431 \u043f\u0430\u0437\u0431\u0430\u0432\u0456\u0446\u0446\u0430 \u0430\u0434 \u0433\u044d\u0442\u0430\u0433\u0430 \u043f\u0430\u0432\u0435\u0434\u0430\u043c\u043b\u0435\u043d\u043d\u044f.
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+compilation\ =\u043a\u0430\u043c\u043f\u0456\u043b\u044f\u0446\u044b\u0456
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+createNewFile()\ returned\ false=createNewFile() \u0432\u044f\u0440\u043d\u0443\u043b\u0430 false
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+environment=\u0430\u0441\u044f\u0440\u043e\u0434\u0434\u0437\u0435
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
+
+#: Preferences.java:625
+#, java-format
+ignoring\ invalid\ font\ size\ {0}=\u0456\u0433\u043d\u0430\u0440\u0443\u044e \u043f\u0430\u043c\u044b\u043b\u043a\u043e\u0432\u044b \u043f\u0430\u043c\u0435\u0440 \u0448\u0440\u044b\u0444\u0442\u0430 {0}
+
+#: Base.java:2080
+index.html=index.html
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+platforms.html=platforms.html
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. \u043d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u043d\u0430\u0439\u0441\u0446\u0456 \u043a\u043e\u0434
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u0410\u0431\u0440\u0430\u043d\u044b \u043f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u044b \u043f\u043e\u0440\u0442 {0} \u043d\u0435 \u0456\u0441\u043d\u0443\u0435, \u0430\u043b\u044c\u0431\u043e \u043f\u043b\u0430\u0442\u0430 \u043d\u0435 \u0434\u0430\u043b\u0443\u0447\u0430\u043d\u0430
+
+#: Preferences.java:391
+upload=\u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456
+
+#: Editor.java:380
+#, java-format
+{0}\ files\ added\ to\ the\ sketch.={0} \u0444\u0430\u0439\u043b\u0430\u045e \u0434\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u0430 \u045e \u0441\u043a\u0435\u0442\u0447.
+
+#: debug/Compiler.java:365
+#, java-format
+{0}\ returned\ {1}={0} \u0432\u044f\u0440\u043d\u0443\u045e {1}
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_bg.po b/app/src/processing/app/i18n/Resources_bg.po
index 166786603..5e247b880 100644
--- a/app/src/processing/app/i18n/Resources_bg.po
+++ b/app/src/processing/app/i18n/Resources_bg.po
@@ -9,7 +9,7 @@ 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: 2013-01-08 08:27+0000\n"
+"PO-Revision-Date: 2013-09-10 11:16+0000\n"
"Last-Translator: Valentin Laskov Closing the last open sketch will quit Arduino."
msgstr ""
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
msgstr ""
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -71,8 +71,7 @@ msgstr ""
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr "Dostopna je nova različica Arduino.\n"
-"Ali želite obiskati stran za prenos Arduino?"
+msgstr ""
#: EditorConsole.java:153
msgid ""
@@ -80,15 +79,15 @@ msgid ""
"files used to store the console output."
msgstr ""
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
-msgstr "O Arduino"
+msgstr "O Arduinu"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "Dodaj datoteko..."
+msgstr "Dodaj datoteku..."
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
msgstr ""
@@ -99,112 +98,111 @@ msgid ""
"the old version. Use Open to re-open the sketch and try again.\n"
msgstr ""
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "Prišlo je do neznane napake med naganjem\n"
-"arhitehturno-odvisne kode za vaš računalnik."
-
-#: Preferences.java:84
-msgid "Arabic"
msgstr ""
#: Preferences.java:85
+msgid "Arabic"
+msgstr "arapski"
+
+#: Preferences.java:86
msgid "Aragonese"
-msgstr ""
+msgstr "aragonski"
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Arhiviraj skico"
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Arhiviraj skico kot:"
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Arhiviranje skice preklicano."
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr "Arhiviranje skice je bilo preklicano,\n"
-"ker skice ni možno pravilno shraniti."
+msgstr ""
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
-msgstr ""
+msgstr "Arduino ARM (32-bita) ploče"
#: ../../../processing/app/I18n.java:82
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
msgstr ""
-"Arduino se ne more zagnati, saj ne\n"
-"more ustvariti mape za shranjevanje nastavitev."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
msgstr ""
-"Arduino se ne more zagnati, saj ne\n"
-"more ustvariti mape za shranjevanje skice."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
msgstr ""
-"Za delovanje Arduino potrebuje celoten sistem\n"
-"JDK (ne le JRE). Prosim namestite JDK 1.5 ali novejši."
-"Več informacij v referenci."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Ste prepričani, da želite izbrisati \"{0}\"?"
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Ste prepričani, da želite izbrisati to skico?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Avtomatsko oblikovanje"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr "Avtomatsko oblikovanje preklicano: Preveč levih zavitih oklepajev."
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr "Avtomatsko oblikovanje preklicano: Preveč levih oklepajev."
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr "Avtomatsko oblikovanje preklicano: Preveč desnih zavitih oklepajev."
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr "Avtomatsko oblikovanje preklicano: Preveč desnih oklepajev."
+msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "Avtomatsko oblikovanje končano."
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
msgstr ""
@@ -212,58 +210,66 @@ msgstr ""
msgid "Autoscroll"
msgstr ""
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
-msgstr "Napaka v vrstici: {0}"
+msgstr ""
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
msgstr ""
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
msgstr ""
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "plošča"
+msgstr "Ploča"
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
msgstr ""
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr ""
+msgstr "Pretraži"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
+msgstr "bugarski"
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
msgstr ""
-#: Editor.java:699
+#: Editor.java:708
msgid "Burn Bootloader"
-msgstr "Posodobi nalagalnik"
+msgstr "Snimi bootloader"
-#: Editor.java:2457
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Posodabljanje nalagalnika na plošči (lahko traja nekaj minut)..."
+msgstr ""
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -271,105 +277,121 @@ msgstr ""
#: ../../../processing/app/Preferences.java:92
msgid "Canadian French"
-msgstr ""
+msgstr "kanadski francuski"
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
-msgstr "Prekliči"
+msgstr "Otkaži"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr ""
+msgstr "Nije moguće preimenovati"
#: SerialMonitor.java:112
msgid "Carriage return"
msgstr ""
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
+msgstr "katalonski"
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
msgstr ""
-#: Preferences.java:403
-msgid "Check for updates on startup"
-msgstr "Preveri posodobitve ob zagonu"
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
-#: Preferences.java:87
-msgid "Chinese Simplified"
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr "pojednostavljeni kineski"
+
+#: Preferences.java:89
msgid "Chinese Traditional"
-msgstr ""
+msgstr "tradicionalni kineski"
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
-msgstr "Zapri"
+msgstr "Zatvori"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "Zakomentiraj/odkomentiraj"
+msgstr "Komentar/Ukloni komentar"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Napaka prevajalnika, prosim posreduj kodo {0}"
+msgstr ""
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Prevajam skico..."
+msgstr ""
#: EditorConsole.java:152
msgid "Console Error"
-msgstr ""
+msgstr "Greška u konzoli"
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "Kopiraj"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "Kopiraj kot HTML"
+msgstr "Kopiraj kao HTML"
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Kopiraj za Forum"
+msgstr "Kopiraj za forum"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "Ne morem dodati ''{0}'' k skici."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Ne morem izbrisati \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Ne morem izbrisati obstoječe datoteke ''{0}''."
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "Ne morem izbrisati {0}"
+msgstr "Nije moguće obrisati {0}"
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -386,96 +408,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
msgstr ""
-"Napaka pri odpiranju naslova URL\n"
-"{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
msgstr ""
-"Napaka odpiranju mape\n"
-"{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
msgstr ""
-"Skice ni bilo mogoče ponovno shraniti. Na vidiku so problemi, zato je\n"
-"verjetno zdaj ravno pravi čas za kopiranje in lepljenje vaše kode v drug\n"
-"urejevalnik."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "Skice ni bilo možno ponovno shraniti"
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
msgstr ""
-"Nastavitev barvne sheme ni bilo možno prebrati.\n"
-"Potrebna je ponovna namestitev Processing."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
msgstr ""
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
msgstr ""
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "Ne morem odstraniti stare različice {0}"
+msgstr "Nije moguće ukloniti staru verziju {0}."
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "Skice ni možno preimenovati. (0)"
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Skice ni možno preimenovati. (1)"
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Skice ni možno preimenovati. (2)"
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr "Ne morem zamenjati {0}"
+msgstr "Nije moguće zamijeniti {0}"
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Skice ni bilo možno arhivirati"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Velikosti programa ni bilo možno določiti: {0}"
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -484,29 +497,29 @@ msgstr ""
#: ../../../processing/app/Preferences.java:82
msgid "Croatian"
-msgstr ""
+msgstr "hrvatski"
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "Izreži"
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
-msgstr ""
+msgstr "češki"
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
-msgstr ""
+msgstr "danski"
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Zmanjšaj zamik"
+msgstr "Smanji uvlaku"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr "Izbriši"
+msgstr "Obriši"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
@@ -514,76 +527,83 @@ msgstr ""
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Zavrzi vse spremembe in ponovno naloži\n"
-"skico?"
-
-#: Editor.java:2017
-msgid "Don't Save"
-msgstr "Ne shrani"
-
-#: Editor.java:2228 Editor.java:2264
-msgid "Done Saving."
-msgstr "Shranjevanje končano."
-
-#: Editor.java:2463
-msgid "Done burning bootloader."
-msgstr "Posodobitev nalagalnika končana."
-
-#: Editor.java:1864 Editor.java:1881
-msgid "Done compiling."
-msgstr "Prevajanje končano."
-
-#: Editor.java:2517
-msgid "Done printing."
-msgstr "Tiskanje končano."
-
-#: Editor.java:2348 Editor.java:2384
-msgid "Done uploading."
-msgstr "Nalaganje končano."
-
-#: Preferences.java:90
-msgid "Dutch"
msgstr ""
-#: Editor.java:1116
-msgid "Edit"
-msgstr "Uredi"
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr ""
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr "Velikost črk urejevalnika:"
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr "Snimanje završeno."
-#: Preferences.java:337
-msgid "Editor language: "
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr "Kompajliranje završeno."
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr "Štampanje završeno."
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
msgstr ""
#: Preferences.java:91
-msgid "English"
+msgid "Dutch"
+msgstr "holandski"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
msgstr ""
-#: Editor.java:1049
+#: Editor.java:1130
+msgid "Edit"
+msgstr "Uredi"
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr "Jezik uređivača:"
+
+#: Preferences.java:92
+msgid "English"
+msgstr "engleski"
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
-msgstr "Okolje"
+msgstr "Okruženje"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
-msgstr "Napaka"
+msgstr "Greška"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr "Napaka pri dodajanju datoteke"
+msgstr ""
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Napaka pri prevajanju."
+msgstr ""
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "Napaka pri nalaganju mape s podatki Arduino."
+msgstr ""
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
msgstr ""
@@ -599,16 +619,16 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr ""
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
@@ -619,14 +639,14 @@ msgstr ""
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Napaka med posodobitvijo nalagalnika."
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -635,165 +655,185 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Napaka med nalaganjem kode {0}"
+msgstr ""
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "Napaka med tiskanjem."
+msgstr "Greška prilikom štampanja."
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
+msgstr "estonski"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
msgstr ""
-#: Editor.java:509
+#: Editor.java:516
msgid "Examples"
-msgstr "Primeri"
+msgstr "Primjeri"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Izvoz preklican, spremembe morajo biti prej shranjene."
-
-#: Base.java:1814
-msgid "FAQ.html"
msgstr ""
-#: Editor.java:484
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr "FAQ.html"
+
+#: Editor.java:491
msgid "File"
-msgstr "Datoteka"
+msgstr ""
#: Preferences.java:94
msgid "Filipino"
-msgstr ""
+msgstr "filipinski"
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
-msgstr "Išči"
-
-#: Editor.java:1235
-msgid "Find Next"
msgstr ""
-#: Editor.java:1245
+#: Editor.java:1249
+msgid "Find Next"
+msgstr "Pronađi sljedeće"
+
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Najdi prejšnje"
+msgstr "Pronađi prethodno"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Poišči v Referenci"
+msgstr "Pretraga referenci"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Išči..."
+msgstr "Traži..."
#: FindReplace.java:80
msgid "Find:"
-msgstr "Išči:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
msgstr ""
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
-msgid "French"
-msgstr ""
-
-#: Editor.java:1083
-msgid "Frequently Asked Questions"
-msgstr "Pogosto zastavljena vprašanja"
-
#: Preferences.java:95
-msgid "Galician"
-msgstr ""
+msgid "French"
+msgstr "francuski"
-#: ../../../processing/app/Preferences.java:94
-msgid "Georgian"
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
msgstr ""
#: Preferences.java:96
-msgid "German"
-msgstr ""
+msgid "Galician"
+msgstr "galicijski"
-#: Editor.java:1041
-msgid "Getting Started"
-msgstr "Začetek"
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr "gruzijski"
#: Preferences.java:97
+msgid "German"
+msgstr "njemački"
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr "Prvi koraci"
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
-msgstr ""
+msgstr "grčki"
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
-msgstr ""
+msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
-msgstr "Guide_MacOSX.html"
-
-#: Base.java:1809
-msgid "Guide_Troubleshooting.html"
msgstr ""
-#: Base.java:1787
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr "Guide_Troubleshooting.html"
+
+#: Base.java:2073
msgid "Guide_Windows.html"
-msgstr "Guide_Windows.html"
+msgstr ""
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
-msgstr ""
+msgstr "hebrejski"
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
-msgstr "Pomoč"
+msgstr "Pomoć"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
-msgstr ""
+msgstr "hindu"
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
msgstr ""
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
-msgstr ""
+msgstr "mađarski"
#: FindReplace.java:96
msgid "Ignore Case"
msgstr ""
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
msgstr ""
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr ""
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Uvozi knjižnico..."
+msgstr "Uvezi biblioteku..."
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -806,96 +846,90 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Povečaj zamik"
+msgstr "Povećaj uvlaku"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
-msgstr ""
+msgstr "indonezijski"
#: ../../../processing/app/Base.java:1204
#, java-format
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
-msgid "Italian"
-msgstr ""
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr ""
-
#: Preferences.java:102
-msgid "Korean"
-msgstr ""
+msgid "Italian"
+msgstr "italijanski"
#: Preferences.java:103
-msgid "Latvian"
-msgstr ""
+msgid "Japanese"
+msgstr "japanski"
-#: ../../../processing/app/Base.java:2903
+#: Preferences.java:104
+msgid "Korean"
+msgstr "korejski"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "latvijski"
+
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
msgstr ""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
-msgstr ""
+msgstr "litvanijski"
#: ../../../processing/app/Sketch.java:1660
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
-msgstr ""
+msgstr "marati"
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
-msgstr "Sporočilo"
+msgstr "Poruka"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Manjka */ na koncu /* komentarja */"
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
msgstr ""
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
+msgstr "Premještam"
+
+#: Sketch.java:282
+msgid "Name for new file:"
msgstr ""
-#: Sketch.java:286
-msgid "Name for new file:"
-msgstr "Ime nove datoteke:"
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
-msgstr "Nova"
+msgstr ""
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Novo okno urejevalnika"
+msgstr ""
#: EditorHeader.java:292
msgid "New Tab"
-msgstr "Nov zavihek"
+msgstr "Novi tab"
#: SerialMonitor.java:112
msgid "Newline"
@@ -903,21 +937,21 @@ msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr "Naslednji zavihek"
+msgstr "Sljedeći tab"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
+msgstr "Ne"
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
msgstr ""
-#: debug/Compiler.java:79
-msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Plošča ni izbrana: prosim izberite ploščo v meniju Orodja > Plošča"
-
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
msgstr ""
@@ -929,11 +963,11 @@ msgstr ""
msgid "No line ending"
msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "Resno, čas je za svež zrak."
+msgstr ""
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
msgstr ""
@@ -942,21 +976,22 @@ msgstr ""
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Ne-kritična napaka med nalaganjem 'Look & Feel'."
+msgstr ""
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
-msgstr ""
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
+msgstr "Ne"
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
-msgstr ""
+msgstr "norveški Bokmål"
#: ../../../processing/app/Sketch.java:1656
msgid ""
@@ -964,106 +999,114 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr ""
+msgstr "U redu"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
msgstr ""
#: EditorToolbar.java:41
msgid "Open"
-msgstr "Odpri"
+msgstr ""
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
-msgstr "Odpri URL"
+msgstr "Otvori URL"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Odpri Arduino skico..."
+msgstr ""
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Odpri v novem oknu"
+msgstr ""
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
-msgstr "Odpri..."
+msgstr ""
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Nastavitve strani"
+msgstr "Postavke stranice"
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "Prilepi"
+msgstr "Zalijepi"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
-msgstr ""
+msgstr "perzijski"
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Prosim uvozite knjižnico SPI v Skica > Uvoz knjižnice"
-
-#: Base.java:232
-msgid "Please install JDK 1.5 or later"
-msgstr "Prosim namestite JDK 1.5 ali novejši"
-
-#: Preferences.java:106
-msgid "Polish"
msgstr ""
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr "Molimo vas da instalirate JDK 1.5 ili noviji"
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr "poljski"
+
#: ../../../processing/app/Editor.java:718
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "Nastavitve"
+msgstr "Opcije"
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
-msgstr "Prejšnji"
+msgstr ""
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Prejšnji zavihek"
+msgstr "Prethodni tab"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "Tiskaj"
+msgstr "Štampaj"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr "Tiskanje preklicano."
+msgstr "Štampanje otkazano."
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Tiskanje..."
+msgstr "Štampam..."
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr "Problem pri odpiranju mape"
+msgstr ""
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "Problem pri odpiranju URL"
+msgstr ""
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "Problem pri nastavljanju platforme"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1073,26 +1116,26 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "Problem pri nalaganju mape s podatki"
+msgstr ""
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Problem pri premikanju {0} v mapo 'build'"
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr ""
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Problem pri preimenovanju"
+msgstr ""
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
@@ -1100,106 +1143,106 @@ msgstr ""
#: ../../../processing/app/I18n.java:86
msgid "Processor"
-msgstr ""
+msgstr "Procesor"
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
msgstr "Programer"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
-msgstr "Izhod"
+msgstr ""
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Uveljavi"
+msgstr "Naprijed"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "Referenca"
+msgstr "Reference"
#: EditorHeader.java:300
msgid "Rename"
msgstr "Preimenuj"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
-msgstr "Zamenjaj"
+msgstr ""
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr "Zamenjan & išči"
+msgstr ""
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "Zamenjaj vse"
+msgstr ""
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Zamenjam trenutno različico {0}?"
+msgstr ""
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Zamenjaj z:"
+msgstr ""
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr ""
+msgstr "rumunski"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
+msgstr "ruski"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
-msgid "Save"
-msgstr "Shrani"
-
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Skrani kot..."
+msgstr "Sačuvaj kao..."
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "Shranjevanje preklicano."
+msgstr "Snimanje prekinuto."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "Skrani spremembe pred izvozom?"
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Shrani spremembe v \"{0}\"? "
+msgstr ""
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Shrani skico kot ..."
+msgstr "Sačuvaj folder skice kao..."
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "Shranjevanje..."
+msgstr "Snimam..."
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Izberite (ali ustvarite novo) mapo za skice..."
+msgstr ""
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Izberi vse"
+msgstr "Označi sve"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Izberi sliko ali drugo datoteko za dodajanje k skici"
+msgstr ""
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Izberi novo lokacijo skice"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1207,155 +1250,168 @@ msgstr ""
#: SerialMonitor.java:93
msgid "Send"
-msgstr "Pošlji"
+msgstr ""
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
msgstr ""
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
msgstr ""
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
msgstr ""
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
msgstr ""
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Nastavitve"
-
-#: Editor.java:634
-msgid "Show Sketch Folder"
msgstr ""
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr "Prikaži folder skice"
+
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
msgstr ""
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
msgstr "Skica"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "Skica je izginila"
-
-#: Base.java:1095
-msgid "Sketch Does Not Exist"
-msgstr "Skica ne obstaja"
-
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-msgid "Sketch is Read-Only"
msgstr ""
-#: Sketch.java:298
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr ""
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr "Skica je samo za čitanje"
+
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "Skica je Neimenovana"
+msgstr "Skica nema ime"
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "Skica je samo za branje"
+msgstr "Skica je samo za čitanje"
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
msgstr ""
-"Prevelika slica; glej http://www.arduino.cc/en/Guide/Troubleshooting#size za "
-"nasvet glede zmanjšanja"
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
msgstr ""
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "Manjka mapa skice"
+msgstr ""
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "Lokacija skice:"
+msgstr ""
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
msgstr ""
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
msgstr ""
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
msgstr ""
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
-msgstr ""
+msgstr "španski"
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr "Sonce"
+msgstr ""
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
-msgstr ""
+msgstr "Početno sistemski"
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
+msgstr "tamilski"
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
msgstr ""
-#: debug/Compiler.java:471
-msgid "The 'BYTE' keyword is no longer supported."
-msgstr "Beseda 'BYTE' ni več podprta."
-
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "Razred Client je bil preimenovan v EthernetClient."
+msgstr ""
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr "Razred Server je bil preimenovan v EthernetServer."
+msgstr ""
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "Razred Udp je bil preimenovan v EthernetUdp."
+msgstr ""
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "Kljub sporočilu o napaki bo Arduino deloval pravilno"
+msgstr ""
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
@@ -1363,7 +1419,7 @@ msgid ""
"Create this folder, move the file, and continue?"
msgstr ""
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
@@ -1371,27 +1427,25 @@ msgid ""
"(ASCII only and no spaces, and it cannot start with a number)"
msgstr ""
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
msgstr ""
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr "Ime se ne sme začeti s piko."
+msgstr ""
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
msgstr ""
-"Izbrana skica Arduino ne obstaja\n"
-"več. Ponovno lahko zaženete Arduino"
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1401,27 +1455,21 @@ msgid ""
"{1}"
msgstr ""
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
msgstr ""
-"Mapa s skico je izginila.\n"
-" Skico po ponovno shranjena na isto lokacijo,\n"
-"vendar vse razen programske kode bo izgubljeno."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
msgstr ""
-"Ime skice je bilo spremenjeno. Ime skice je lahko sestavljeno le\n"
-"iz znakov ASCII ter številk (vendar se ne sme začeti s številko).\n"
-"Ime mora tudi biti krajše od 64 znakov."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
@@ -1429,12 +1477,8 @@ msgid ""
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
msgstr ""
-"Mapa skice ne obstaja več.\n"
-"Arduino bo naložil privzeto lokacijo za skico in.\n"
-"ustvaril novo mapo za skico (če je potrebno). Arduino bo"
-"nato nehal govoriti o sebi v tretji osebi."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
@@ -1445,21 +1489,21 @@ msgstr ""
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr "Čas za odmor"
+msgstr ""
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "Orodja"
+msgstr "Alati"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "Odpravljanje napak"
+msgstr "Rješavanje problema"
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
-msgstr ""
+msgstr "turski"
#: ../../../processing/app/Editor.java:2507
msgid "Type board password to access its console"
@@ -1471,7 +1515,7 @@ msgstr ""
#: ../../../processing/app/Preferences.java:118
msgid "Ukrainian"
-msgstr ""
+msgstr "ukrajinski"
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
@@ -1479,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1490,14 +1534,14 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Neujeta izjema tipa: {0}"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "Razveljavi"
+msgstr "Nazad"
#: Platform.java:168
msgid ""
@@ -1508,71 +1552,75 @@ msgstr ""
#: UpdateCheck.java:111
msgid "Update"
-msgstr "Posodobitev"
+msgstr ""
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
msgstr ""
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
-msgstr "Naloži"
+msgstr ""
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Naloži z programatorjem"
+msgstr ""
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "Nalaganje preklicano."
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Nalaganje na ploščo..."
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Nalagam..."
+msgstr ""
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr "Uporabi zunanji urejevalnik"
+msgstr ""
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr "Preveri"
+msgstr ""
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Preveri / prevedi"
+msgstr "Verifikacija / Kompajliranje"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "Obišči Arduino.cc"
+msgstr "Posjeti Arduino.cc"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr "Opozorilo"
+msgstr "Upozorenje"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr ""
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "Wire.send() je bil preimenovan v Wire.write()."
+msgstr ""
#: FindReplace.java:105
msgid "Wrap Around"
@@ -1584,64 +1632,60 @@ msgid ""
"> Board menu?"
msgstr ""
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
+msgstr "Da"
+
+#: Sketch.java:1074
+msgid "You can't fool me"
msgstr ""
-#: Sketch.java:1078
-msgid "You can't fool me"
-msgstr "Ne moreš me preslepiti"
-
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
msgstr ""
-"Skice ne morete ponovno shraniti v njeno\n"
-"lastno mapo. To bi se lahko nadaljevalo\n"
-"v neskončnost."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr "Pozabili ste skico"
+msgstr ""
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr "Dosegli ste dnevno mejo za poimenovanje\n"
-"novih skic. Kaj pravite na sprehod?"
+msgstr ""
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
msgstr ""
@@ -1655,107 +1699,88 @@ msgid ""
"todelete the bad characters to get rid of this warning."
msgstr ""
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
msgstr ""
-"\n"
-"Od Arduina 0019 naprej knjižnica Ethernet uporablja knjižnico SPI.\n"
-"Izgleda, da tudi vi oz. neka druga knjižnica hkrati uporablja knjižnico SPI.\n"
-"\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
msgstr ""
-"\n"
-"Od Arduina 1.0 naprej beseda 'BYTE' ni več podprta.\n"
-"Namesto nje prosim uporabite Serial.write().\n"
-"\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Od Arduina 1.0 naprej je bil razred Client v knjižnici Ethernet preimenovan v "
-"EthernetClient.\n"
-"\n"
-
-#: debug/Compiler.java:478
-msgid ""
-"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
msgstr ""
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:496
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
msgstr ""
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "prevajanje "
+msgstr ""
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr "createNewFile() je vrnila false"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr "okolje"
+msgstr "okruženje"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
-msgstr ""
+msgstr "http://arduino.cc/"
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
-msgstr ""
+msgstr "http://github.com/arduino/Arduino/issues"
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
@@ -1765,72 +1790,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr ""
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr ""
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr ""
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
-msgstr ""
+msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
msgstr ""
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
msgstr ""
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr ""
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
+#: Preferences.java:391
+msgid "upload"
msgstr ""
-#: Preferences.java:375
-msgid "upload"
-msgstr "naloži"
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
msgstr ""
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr "{0} je vrnil {1}"
+msgstr ""
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr ""
+msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_bs.properties b/app/src/processing/app/i18n/Resources_bs.properties
new file mode 100644
index 000000000..ace024f9e
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_bs.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+About\ Arduino=O Arduinu
+
+#: Editor.java:650
+Add\ File...=Dodaj datoteku...
+
+#: Base.java:963
+!Add\ Library...=
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
+
+#: Preferences.java:85
+Arabic=arapski
+
+#: Preferences.java:86
+Aragonese=aragonski
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bita) plo\u010de
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+Board=Plo\u010da
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+Browse=Pretra\u017ei
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+Bulgarian=bugarski
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+Burn\ Bootloader=Snimi bootloader
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+Canadian\ French=kanadski francuski
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+Cancel=Otka\u017ei
+
+#: Sketch.java:455
+Cannot\ Rename=Nije mogu\u0107e preimenovati
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+Catalan=katalonski
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+Chinese\ Simplified=pojednostavljeni kineski
+
+#: Preferences.java:89
+Chinese\ Traditional=tradicionalni kineski
+
+#: Editor.java:521 Editor.java:2024
+Close=Zatvori
+
+#: Editor.java:1208 Editor.java:2749
+Comment/Uncomment=Komentar/Ukloni komentar
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
+
+#: EditorConsole.java:152
+Console\ Error=Gre\u0161ka u konzoli
+
+#: Editor.java:1157 Editor.java:2707
+Copy=Kopiraj
+
+#: Editor.java:1177 Editor.java:2723
+Copy\ as\ HTML=Kopiraj kao HTML
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=Kopiraj za forum
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+Could\ not\ delete\ {0}=Nije mogu\u0107e obrisati {0}
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+Could\ not\ remove\ old\ version\ of\ {0}=Nije mogu\u0107e ukloniti staru verziju {0}.
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+Could\ not\ replace\ {0}=Nije mogu\u0107e zamijeniti {0}
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+Croatian=hrvatski
+
+#: Editor.java:1149 Editor.java:2699
+Cut=Izre\u017ei
+
+#: ../../../processing/app/Preferences.java:83
+Czech=\u010de\u0161ki
+
+#: Preferences.java:90
+Danish=danski
+
+#: Editor.java:1224 Editor.java:2765
+Decrease\ Indent=Smanji uvlaku
+
+#: EditorHeader.java:314 Sketch.java:591
+Delete=Obri\u0161i
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+!Don't\ Save=
+
+#: Editor.java:2275 Editor.java:2311
+Done\ Saving.=Snimanje zavr\u0161eno.
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+Done\ compiling.=Kompajliranje zavr\u0161eno.
+
+#: Editor.java:2564
+Done\ printing.=\u0160tampanje zavr\u0161eno.
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+Dutch=holandski
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+Edit=Uredi
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+Editor\ language\:\ =Jezik ure\u0111iva\u010da\:
+
+#: Preferences.java:92
+English=engleski
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+Environment=Okru\u017eenje
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=Gre\u0161ka
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+!Error\ opening\ serial\ port\ ''{0}''.=
+
+#: Preferences.java:277
+!Error\ reading\ preferences=
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+Error\ while\ printing.=Gre\u0161ka prilikom \u0161tampanja.
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+Estonian=estonski
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+Examples=Primjeri
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+FAQ.html=FAQ.html
+
+#: Editor.java:491
+!File=
+
+#: Preferences.java:94
+Filipino=filipinski
+
+#: FindReplace.java:124 FindReplace.java:127
+!Find=
+
+#: Editor.java:1249
+Find\ Next=Prona\u0111i sljede\u0107e
+
+#: Editor.java:1259
+Find\ Previous=Prona\u0111i prethodno
+
+#: Editor.java:1086 Editor.java:2775
+Find\ in\ Reference=Pretraga referenci
+
+#: Editor.java:1234
+Find...=Tra\u017ei...
+
+#: FindReplace.java:80
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+French=francuski
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+Galician=galicijski
+
+#: ../../../processing/app/Preferences.java:94
+Georgian=gruzijski
+
+#: Preferences.java:97
+German=njema\u010dki
+
+#: Editor.java:1054
+Getting\ Started=Prvi koraci
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+Greek=gr\u010dki
+
+#: Base.java:2085
+Guide_Environment.html=Guide_Environment.html
+
+#: Base.java:2071
+!Guide_MacOSX.html=
+
+#: Base.java:2095
+Guide_Troubleshooting.html=Guide_Troubleshooting.html
+
+#: Base.java:2073
+!Guide_Windows.html=
+
+#: ../../../processing/app/Preferences.java:95
+Hebrew=hebrejski
+
+#: Editor.java:1015
+Help=Pomo\u0107
+
+#: Preferences.java:99
+Hindi=hindu
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+Hungarian=ma\u0111arski
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+Import\ Library...=Uvezi biblioteku...
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+Increase\ Indent=Pove\u0107aj uvlaku
+
+#: Preferences.java:101
+Indonesian=indonezijski
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+Italian=italijanski
+
+#: Preferences.java:103
+Japanese=japanski
+
+#: Preferences.java:104
+Korean=korejski
+
+#: Preferences.java:105
+Latvian=latvijski
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+Lithuaninan=litvanijski
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+Marathi=marati
+
+#: Base.java:2112
+Message=Poruka
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+Moving=Premje\u0161tam
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+!New=
+
+#: EditorToolbar.java:46
+!New\ Editor\ Window=
+
+#: EditorHeader.java:292
+New\ Tab=Novi tab
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+Next\ Tab=Sljede\u0107i tab
+
+#: Preferences.java:78 UpdateCheck.java:108
+No=Ne
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+Nope=Ne
+
+#: ../../../processing/app/Preferences.java:108
+Norwegian\ Bokm\u00e5l=norve\u0161ki Bokm\u00e5l
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=U redu
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+!Open=
+
+#: Editor.java:2688
+Open\ URL=Otvori URL
+
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
+
+#: EditorToolbar.java:46
+!Open\ in\ Another\ Window=
+
+#: Base.java:903 Editor.java:501
+!Open...=
+
+#: Editor.java:563
+Page\ Setup=Postavke stranice
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+Paste=Zalijepi
+
+#: Preferences.java:109
+Persian=perzijski
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=Molimo vas da instalirate JDK 1.5 ili noviji
+
+#: Preferences.java:110
+Polish=poljski
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+Preferences=Opcije
+
+#: FindReplace.java:123 FindReplace.java:128
+!Previous=
+
+#: EditorHeader.java:326
+Previous\ Tab=Prethodni tab
+
+#: Editor.java:571
+Print=\u0160tampaj
+
+#: Editor.java:2571
+Printing\ canceled.=\u0160tampanje otkazano.
+
+#: Editor.java:2547
+Printing...=\u0160tampam...
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+!Problem\ Opening\ URL=
+
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+Processor=Procesor
+
+#: Editor.java:704
+Programmer=Programer
+
+#: Base.java:783 Editor.java:593
+!Quit=
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+Redo=Naprijed
+
+#: Editor.java:1078
+Reference=Reference
+
+#: EditorHeader.java:300
+Rename=Preimenuj
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
+
+#: FindReplace.java:122 FindReplace.java:129
+!Replace\ &\ Find=
+
+#: FindReplace.java:120 FindReplace.java:131
+!Replace\ All=
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+!Replace\ with\:=
+
+#: Preferences.java:113
+Romanian=rumunski
+
+#: Preferences.java:114
+Russian=ruski
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
+
+#: Editor.java:537
+Save\ As...=Sa\u010duvaj kao...
+
+#: Editor.java:2317
+Save\ Canceled.=Snimanje prekinuto.
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=Sa\u010duvaj folder skice kao...
+
+#: Editor.java:2270 Editor.java:2308
+Saving...=Snimam...
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+Select\ All=Ozna\u010di sve
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+!Send=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+!Settings\ issues=
+
+#: Editor.java:641
+Show\ Sketch\ Folder=Prika\u017ei folder skice
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+Sketch=Skica
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+Sketch\ is\ Read-Only=Skica je samo za \u010ditanje
+
+#: Sketch.java:294
+Sketch\ is\ Untitled=Skica nema ime
+
+#: Sketch.java:720
+Sketch\ is\ read-only=Skica je samo za \u010ditanje
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+!Sketchbook\ folder\ disappeared=
+
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+Spanish=\u0161panski
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+System\ Default=Po\u010detno sistemski
+
+#: Preferences.java:116
+Tamil=tamilski
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+!Time\ for\ a\ Break=
+
+#: Editor.java:663
+Tools=Alati
+
+#: Editor.java:1070
+Troubleshooting=Rje\u0161avanje problema
+
+#: ../../../processing/app/Preferences.java:117
+Turkish=turski
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+Ukrainian=ukrajinski
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+Undo=Nazad
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+!Update=
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+!Uploading...=
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+!Verify=
+
+#: Editor.java:609
+Verify\ /\ Compile=Verifikacija / Kompajliranje
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+Visit\ Arduino.cc=Posjeti Arduino.cc
+
+#: Base.java:2128
+Warning=Upozorenje
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+Yes=Da
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+environment=okru\u017eenje
+
+#: Editor.java:1108
+http\://arduino.cc/=http\://arduino.cc/
+
+#: ../../../processing/app/debug/Compiler.java:49
+http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues
+
+#: UpdateCheck.java:118
+http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
+
+#: UpdateCheck.java:53
+http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+!index.html=
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+platforms.html=platforms.html
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_ca.po b/app/src/processing/app/i18n/Resources_ca.po
index f5c037982..b957ffbc3 100644
--- a/app/src/processing/app/i18n/Resources_ca.po
+++ b/app/src/processing/app/i18n/Resources_ca.po
@@ -6,65 +6,64 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Versió 1.0\n"
+"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: 2012-04-05 14:18+0100\n"
-"Last-Translator: Albert Segura Closing the last open sketch will quit Arduino."
-msgstr " Tancar l'ultim sketch obert tancarà l'Arduino."
+msgstr " Tancant esboç d'Arduino."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr " Si no ho desa, els canvis es perdran."
+msgstr ""
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
msgstr "Ja existeix un fitxer amb el nom \"{0}\" a \"{1}\""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
msgstr "La carpeta anomenada \"{0}\" ja existeix. No es pot obrir el sketch."
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -74,52 +73,43 @@ msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
msgstr ""
-"Una nova versió de l'Arduino està disponible,\n"
-"voldria visitar la pàgina de descarrega d'Arduino?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
msgstr ""
-"Un problema ha succeït al provar d'obrir els\n"
-"fitxers utilitzats per desar la sortida de la consola."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
msgstr "Quant a Arduino"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
msgstr "Afegeix fitxer..."
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
-msgstr ""
+msgstr "Afegir Llibreria..."
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"Un error ha succeït provant de arreglar la codificació del fitxer.\n"
-"No provi de desar aquest sketch, podria sobreescriure\n"
-"la versió antiga. Utilitzi Obrir per re-obrir el sketch i tornar-ho a provar.\n"
+msgstr "Un error ha succeït provant de arreglar la codificació del fitxer.\nNo provi de desar aquest sketch, podria sobreescriure\nla versió antiga. Utilitzi Obrir per re-obrir el sketch i tornar-ho a provar.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr ""
-"Un error desconegut ha succeït mentre es provava de carregar\n"
-"codi especific de la plataforma per la seva maquina."
+msgstr "Un error desconegut ha succeït mentre es provava de carregar\ncodi especific de la plataforma per la seva maquina."
-#: Preferences.java:84
+#: Preferences.java:85
msgid "Arabic"
msgstr ""
-#: Preferences.java:85
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
@@ -140,8 +130,6 @@ msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
msgstr ""
-"L'arxivament del sketch ha estat cancel·lat per què\n"
-"el sketch no s'ha desat adequadament."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -151,129 +139,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"Arduino no pot funcionar perquè no pot\n"
-"crear una carpeta per desar les preferències."
+msgstr "Arduino no pot funcionar perquè no pot\ncrear una carpeta per desar les preferències."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
-"Arduino no pot funcionar perquè no pot\n"
-"creï una carpeta per desar el seu sketchbook."
+msgstr "Arduino no pot funcionar perquè no pot\n creï una carpeta per desar el seu sketchbook."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr ""
-"Arduino requereix JDK per complet (no només el JRE)\n"
-"per funcionar. Si us plau, instal·leu JDK 1.5 o posterior.\n"
-"Podeu trobar més informació a les referències."
+msgstr "Arduino requereix una completa JDK\nper funcionar (només JRE no és suficient). Si us plau instal·la JDK 1.5 o posterior.\nMés informació pot ser trobada a la referència."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
msgstr "Esteu segur que voleu suprimir \"{0}\"?"
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
msgstr "Segur que voleu suprimir aquest sketch?"
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
#: tools/AutoFormat.java:91
msgid "Auto Format"
msgstr "Format automàtic"
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
msgid "Auto Format Canceled: Too many left curly braces."
msgstr "Format automàtic cancel·lat: Massa claus de tancament."
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
msgid "Auto Format Canceled: Too many left parentheses."
msgstr "Format automàtic cancel·lat: Massa parèntesis de tancament."
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
msgid "Auto Format Canceled: Too many right curly braces."
msgstr "Format automàtic cancel·lat: Massa claus d'obertura."
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
msgid "Auto Format Canceled: Too many right parentheses."
msgstr "Format automàtic cancel·lat: Massa parèntesis d'obertura."
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
msgstr "Format automàtic finalitzat."
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Associa automàticament fitxers .ino amb l'Arduino"
+msgstr ""
#: SerialMonitor.java:110
msgid "Autoscroll"
msgstr "Desplaçament automàtic"
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
-msgstr "Línia d'error incorrecta: {0}"
+msgstr ""
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
msgstr "Fitxer seleccionat incorrecte"
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
msgstr ""
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Placa"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
msgstr "Ambdós NL & CR"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Navega"
+msgstr ""
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "Carpeta de construcció del projecte desapareguda o no s'ha pogut escriure"
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "Enregistra Bootloader"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr "Carrega Bootloader"
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Enregistrant el bootloader a la I/O placa (pot durar uns minuts)..."
+msgstr "La carrega del bootloader a la I/O placa (pot durar uns minuts)..."
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -283,12 +280,12 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "Cancel·la"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
msgstr "No es pot reanomenar"
@@ -296,36 +293,52 @@ msgstr "No es pot reanomenar"
msgid "Carriage return"
msgstr "Retorn de carro"
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr ""
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
msgstr "Comprova actualitzacions al iniciar"
-#: Preferences.java:87
-msgid "Chinese Simplified"
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "Tanca"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
msgstr "Comenta/Descomenta"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
msgstr "Error del compilador, si us plau pengeu aquest codi a {0}"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
msgstr "Compilant el sketch..."
@@ -333,53 +346,53 @@ msgstr "Compilant el sketch..."
msgid "Console Error"
msgstr "Consola d'errors"
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "Copia"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "Desa com a HTML"
+msgstr "Copia com HTML"
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
msgstr "Copia pel Forum"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "No s'ha pogut afegir \"{0}\" al sketch."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "No s'ha pogut copiar a una localització correcte"
+msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "No s'ha pogut crear la carpeta del sketch."
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr "No s'ha pogut crear el sketch."
+msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "No s'ha pogut suprimir \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "No s'ha pogut suprimir el fitxer existent \"{0}\"."
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "No s'ha pogut eliminar {0}"
+msgstr ""
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -396,97 +409,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
msgstr ""
-"No s'ha pogut obrir la URL\n"
-"{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
msgstr ""
-"No s'ha pogut obrir la carpeta\n"
-"{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
msgstr ""
-"No s'ha pogut desar el sketch adequadament. Potser té un problema ara mateix,\n"
-"i potser es el moment de copiar i enganxar el teu codi en un altre editor de text."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "No s'ha pogut desar de nou el sketch"
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
msgstr ""
-"No s'han pogut llegir les preferències de tema de color.\n"
-"Haurà de reinstal·lar Processament."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
msgstr ""
-"No s'han pogut llegir les preferències per defecte.\n"
-"Hauràs de reinstal·lar l'Arduino."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "No s'ha pogut llegir les preferències de {0}"
+msgstr ""
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "No s'ha pogut eliminar una versió anterior de {0}"
+msgstr ""
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
msgstr "No es pot reanomenar \"{0}\" per \"{1}\""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
msgstr "No es pot reanomenar el sketch. (0)"
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
msgstr "No es pot reanomenar el sketch. (1)"
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
msgstr "No es pot reanomenar el sketch. (2)"
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr "No s'ha pogut reemplaçar {0}"
+msgstr ""
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "No s'ha pogut arxivar el sketch"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "No s'ha pogut determinar la mida del programa: {0}"
+msgstr "No es va poder determinar la mida del programa: {0}"
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "No s'ha pogut fer"
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -497,7 +500,7 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "Retalla"
@@ -505,95 +508,103 @@ msgstr "Retalla"
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Disminueix el sagnat"
+msgstr "Disminuir el sagnat"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
msgstr "Suprimeix"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr "El dispositiu no respon, comprova que el port sèrie corresponent esta seleccionat o fes-li un RESET a la placa just abans d'exportar "
+msgstr "El dispositiu no respon, comprova que el port sèrie corresponent esta seleccionat o fes-li un RESET a la placa just abans d'exportar"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
msgstr "Desfer tots els canvis i recarregar el sketch?"
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
msgstr "No deseu"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
msgstr "Guardat enllestit."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "Enregistrament del bootloader llesta."
+msgstr "Carrega del bootloader llesta."
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
msgstr "Compilació enllestida."
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
msgstr "Impressió finalitzada."
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
msgstr "Pujada enllestida."
-#: Preferences.java:90
+#: Preferences.java:91
msgid "Dutch"
msgstr ""
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
msgid "Edit"
msgstr "Edita"
-#: Preferences.java:354
+#: Preferences.java:370
msgid "Editor font size: "
msgstr "Mides del fonts del editor:"
-#: Preferences.java:337
+#: Preferences.java:353
msgid "Editor language: "
msgstr ""
-#: Preferences.java:91
+#: Preferences.java:92
msgid "English"
msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
msgstr "Entorn"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "Error"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
msgstr "Error al afegir un fitxer"
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
msgstr "Error compilant."
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
msgstr "Error obtenint la carpeta data d'Arduino."
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
msgstr "Error a dins del Serial.{0}()"
@@ -609,36 +620,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
msgstr "Error al obrir el port sèrie \"{0}\"."
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr "Error en llegir les preferències"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"Error al llegir el fitxer de preferències. Si us plau elimini (o mogui)\n"
-"{0} i reiniciï Arduino."
+msgstr "Error al llegir el fitxer de preferències. Si us plau elimini (o mogui)\n{0} i reiniciï Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Error al enregistrar el bootloader."
+msgstr "Error al carrega el bootloader."
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -649,32 +658,36 @@ msgstr ""
msgid "Error while loading code {0}"
msgstr "Error durant la carrega de codi {0}"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "S'ha produït un error mentre s'imprimia"
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
msgstr "Exemples"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Exportació cancel·lada, s'han de desar els canvis abans."
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
msgstr "Fitxer"
@@ -686,19 +699,19 @@ msgstr ""
msgid "Find"
msgstr "Cerca"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
msgstr "Cerca el següent"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
msgstr "Cerca l'anterior"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
msgstr "Cerca a Referència"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
msgstr "Cerca..."
@@ -706,30 +719,34 @@ msgstr "Cerca..."
msgid "Find:"
msgstr "Cerca:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
msgstr "Arregla la codificació i recarrega"
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
msgstr ""
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
msgstr "Preguntes Més Freqüents"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
msgstr ""
@@ -737,31 +754,43 @@ msgstr ""
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
msgstr ""
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
msgstr "Primers passos"
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
msgstr ""
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
@@ -769,27 +798,25 @@ msgstr "Guide_Windows.html"
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "Ajuda"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"Per què no prova de desar el sketch primer \n"
-"abans de provar de renombrar-lo?"
+msgstr "Per què no prova de desar el sketch primer \nabans de provar de renombrar-lo?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
msgstr "Que tant Borges de part teva"
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr ""
@@ -797,15 +824,15 @@ msgstr ""
msgid "Ignore Case"
msgstr "Ignora diferències entre majúscules i minúscules"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Ignorant la llibreria amb un nom incorrecte"
+msgstr "Ignorant el nom incorrecte de la Llibreria."
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "Ignorant el sketch amb un nom incorrecte"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
msgstr "Importa biblioteca..."
@@ -820,11 +847,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
msgstr "Augmenta el sagnat"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -833,27 +860,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
+#: Preferences.java:102
msgid "Italian"
msgstr ""
-#: Preferences.java:101
+#: Preferences.java:103
msgid "Japanese"
msgstr ""
-#: Preferences.java:102
+#: Preferences.java:104
msgid "Korean"
msgstr ""
-#: Preferences.java:103
+#: Preferences.java:105
msgid "Latvian"
msgstr ""
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
msgstr ""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -861,45 +888,39 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "Missatge"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
msgstr "Manca el */ al final de /* comentari */"
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
msgstr "Es poden editar més preferències directament en el fitxer"
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
-msgstr "S'està movent"
+msgstr ""
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Escolliu nom per un nou fitxer:"
+msgstr "Escolliu un nom per un nou fitxer:"
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "Nou"
@@ -919,21 +940,21 @@ msgstr "Línia nova"
msgid "Next Tab"
msgstr "Pestanya següent"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "No"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
msgstr "Cap placa seleccionada; si us plau esculli una placa del menú Eines > Placa."
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr "Cap canvi necessari pel format automàtic."
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "No s'ha afegit cap fitxer al sketch."
+msgstr ""
#: Platform.java:167
msgid "No launcher available"
@@ -943,31 +964,32 @@ msgstr "No hi ha llançador disponible"
msgid "No line ending"
msgstr "Sense salts de línia"
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "No, de debò, moment per anar a prendre aire fresc."
+msgstr "Hora d'aire fresc, seriosament."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "No hi ha referencia disponible per a \"{0}\""
+msgstr ""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
msgstr "Error no fatal mentre s'establien les preferències de l'aparença."
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
msgstr "Nop"
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
-
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
@@ -978,24 +1000,24 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr "D'acord"
+msgstr ""
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "S'ha afegit un fitxer al sketch."
+msgstr ""
#: EditorToolbar.java:41
msgid "Open"
-msgstr "Obre"
+msgstr "Obrir"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "Obre l'URL"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
msgstr "Obre un sketch d'Arduino..."
@@ -1003,11 +1025,11 @@ msgstr "Obre un sketch d'Arduino..."
msgid "Open in Another Window"
msgstr "Obrir en una altra finestra"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "Obrir..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
msgstr "Configuració de la pàgina"
@@ -1015,23 +1037,23 @@ msgstr "Configuració de la pàgina"
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
msgstr "Enganxa"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
msgstr ""
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
msgstr "Si us plau importeu la llibreria SPI del menú Sketch > Importa biblioteca."
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
-msgstr "Si us plau, instal·leu JDK 1.5 o posterior"
+msgstr "Si us plau instal·la JDK 1.5 o posterior."
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1039,11 +1061,19 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
msgstr "Preferències"
@@ -1055,29 +1085,29 @@ msgstr "Anterior"
msgid "Previous Tab"
msgstr "Pestanya anterior"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "Imprimeix"
+msgstr "Sortir"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
msgstr "Impressió cancel·lada."
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "S'està imprimint..."
+msgstr ""
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
msgstr "Problema obrint la carpeta"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
msgstr "Problema obrint la URL"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "Problemes per establir les preferències de Plataforma"
+msgstr "Problema adjustant la plataforma."
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1087,50 +1117,48 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
msgstr "Problema obtenint la carpeta de data"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
msgstr "Problemes movent {0} a la carpeta de treball"
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr "Problema pujant a la placa. Visita per http://www.arduino.cc/en/Guide/Troubleshooting#upload suggeriments."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Hi ha un problema amb el motor de reproducció"
+msgstr ""
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
-"El Processament només pot obrir els seus propis sketches\n"
-"i altres fitxers acabats en .ino o .pde"
+msgstr "Processing només pot obrir els seus propis sketches\ni altres fitxers acabats en .ino o .pde"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
msgstr "Programador"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
-msgstr "Sortir"
+msgstr "Tancar"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Refés"
+msgstr "Refér"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
msgstr "Referència"
@@ -1138,7 +1166,7 @@ msgstr "Referència"
msgid "Rename"
msgstr "Canvia el nom"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "Reemplaça"
@@ -1150,70 +1178,70 @@ msgstr "Cerca i reemplaça"
msgid "Replace All"
msgstr "Reemplaça-ho tot"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
msgstr "Reemplaça la versió existent de {0}?"
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Substitueix amb:"
+msgstr "Substituir amb:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
msgstr ""
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "Desa"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
msgstr "Anomena i desa..."
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
msgstr "Guardat cancel·lat."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "Voleu desar els canvis abans d'exportar?"
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
msgstr "Desar els canvis a \"{0}\"? "
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
msgstr "Anomena i desa la carpeta de sketch..."
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "S'està desant..."
+msgstr ""
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
msgstr "Seleccioni (o creï) una carpeta pels sketches..."
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
msgstr "Selecciona-ho Tot"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
msgstr "Seleccioni una imatge o un altre fitxer da dades per copiar el seu sketch"
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
msgstr "Seleccioneu una ubicació pel nou sketchbook"
@@ -1225,45 +1253,43 @@ msgstr ""
msgid "Send"
msgstr "Envia"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
msgstr "Monitor sèrie"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
msgstr "Port sèrie \"{0}\" ja en ús. Provi de finalitzar programes que puguin estar utilitzant-lo."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
msgstr "Port sèrie \"{0}\" no trobat. Ha seleccionat el port corresponent al menú Eines > Port sèrie?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"Port sèrie {0} no trobat.\n"
-"Re-intentar la pujada amb un altre port sèrie?"
+msgstr "Port sèrie {0} no trobat.\nRe-intentar la pujada amb un altre port sèrie?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
msgstr "Errors en les preferències"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
msgstr "Mostra la carpeta del Sketch"
@@ -1271,158 +1297,156 @@ msgstr "Mostra la carpeta del Sketch"
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
msgstr "Mostra la sortida detallada durant: "
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
msgstr "Sketch"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "Sketch desaparegut"
+msgstr "Sketch va desaparèixer"
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "El Sketch no existeix"
+msgstr "Esboç no existeix."
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
msgstr "El Sketch és només de lectura"
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
msgstr "El Sketch no té nom."
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
msgstr "El Sketch és només de lectura"
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
msgstr "Sketch massa gran; visita http://www.arduino.cc/en/Guide/Troubleshooting#size per consells per reduir-ne la mida."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
msgstr "Sketchbook"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "Carpeta Sketchbook desapareguda"
+msgstr "El directori Sketchbook ha desaparegut."
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
msgstr "Ubicació del Sketchbook:"
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"Alguns fitxers estan marcats com a \"read-only\", per tant haurà\n"
-"de desar de nou el sketch en una altre localització,\n"
-"i tornar-ho a provar."
+msgstr "Alguns fitxers estan marcats com a \"read-only\", per tant haurà\nde desar de nou el sketch en una altre localització,\ni tornar-ho a provar."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
-"Alguns arxius estan marcats \"reald-only\", haurà de\n"
-"desar el sketch a una altre localització."
+msgstr "Alguns arxius estan marcats \"reald-only\", haurà de\ndesar el sketch a una altre localització."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
msgstr "Ho sentim, un sketch (o carpeta) anomenat \"{0}\" ja existeix."
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
msgstr ""
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr "Brillantor"
+msgstr "Sol."
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr "La paraula clau 'BYTE' ja no esta suportada."
+msgstr ""
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
msgstr "La classe Client ha estat reanomenat a EthernetClient."
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
msgstr "La classe Server ha estat reanomenada EthernetServer."
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
msgstr "La classe Udp ha estat reanomenada a EthernetUdp."
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "El missatge d'error continua, de totes formes Arduino hauria de funcionar bé."
+msgstr "El missatge d'error continua, no obstant Arduino hauria de funcionar correctament."
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
msgstr ""
-"El fitxer \"{0}\" ha d'estar a dins de\n"
-"la carpeta del cketch anomenada \"{1}\".\n"
-"Vol crear aquesta carpeta, moure el fitxer, i continuar?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
-"La llibreria \"{0}\" no pot ser utilitzada.\n"
-"Els noms de llibreries ha de contenir només caràcters bàsics i nombres.\n"
-"(Només ASCII sense espais, i no pot començar amb un nombre)"
+msgstr "La Llibreria \"{0}\" no pot ser utilitzada.\nNoms de Llibreries només poden contenir nombres i lletres senzilles.\n(només ASCII i sense espais, tampoc pot començar amb un nombre)."
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr ""
-"El fitxer principal no pot utilitzar una extensió.\n"
-"(Potser es moment de que es graduï en un\n"
-"entorn de programació \"real\")"
+msgstr "El fitxer principal no pot utilitzar una extensió.\n(Potser es moment de que es graduï en un\nentorn de programació \"real\")"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
msgstr "El nom no pot començar amb un punt."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"El sketch seleccionat ja no existeix.\n"
-"Hauries de reiniciar Arduino per actualitzar\n"
-"el menú de sketchbook."
+msgstr "El sketch seleccionat ja no existeix.\nHauries de reiniciar Arduino per actualitzar\nel menú de sketchbook."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1430,70 +1454,51 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-"El sketch \"{0}\" no pot ser utilitzat.\n"
-"Els noms dels sketch han de contenir només caràcters bàsics i nombres\n"
-"(Només ASCII sense espais, i no pot començar amb un nombre).\n"
-"Per desfer-se d'aquest missatge, elimina el sketch de\n"
-"{1}"
+msgstr "El sketch \"{0}\" no pot ser utilitzat.\nEls noms dels sketch han de contenir només caràcters bàsics i nombres\n(Només ASCII sense espais, i no pot començar amb un nombre).\nPer desfer-se d’aquest missatge, elimina el sketch de {1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
-"La carpeta del sketch ha desaparegut.\n"
-" Es provarà de tornar a desar en la mateixa localització,\n"
-"però tot excepte el codi serà perdut."
+msgstr "La carpeta del sketch ha desaparegut.\n Es provarà de tornar a desar en la mateixa localització,\nperò tot excepte el codi serà perdut."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
-"El nom del sketch ha de ser modificat. Els noms dels Sketch només poden constar\n"
-"de caràcters ASCII i nombres (però no començar amb nombres).\n"
-"També haurien de ser menys de 64 caràcters."
+msgstr "El nom del sketch ha de ser modificat. Els noms dels Sketch només poden constar\nde caràcters ASCII i nombres (però no començar amb nombres).\nTambé haurien de ser menys de 64 caràcters."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr ""
-"La carpeta sketchbook no existeix.\n"
-"Arduino canviarà a la localització per defecte\n"
-"de sketchbook, i crearà una nova carpeta sketchbook\n"
-"si fos necessari. Arduino pararà de parlar\n"
-"d'ell mateix en tercera persona."
+msgstr "La carpeta sketchbook no existeix.\nArduino canviarà a la localització per defecte\nde sketchbook, i crearà una nova carpeta sketchbook\nsi fos necessari. Arduino pararà de parlar\nd'ell mateix en tercera persona."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
msgstr ""
-"Aquest fitxer ja ha estat copiat a la\n"
-"localització de la qual està provant d'afegir-lo.\n"
-"'I ain't not doin nuthin'.'"
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr "Temps per un descans"
+msgstr "Hora de descansar."
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
msgstr "Eines"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
msgstr "Solució de problemes"
@@ -1519,7 +1524,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1530,42 +1535,39 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
msgstr "Excepció escapada de tipus: {0}"
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "Desfés"
+msgstr "Desfér"
#: Platform.java:168
msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"Plataforma no especificada, no hi ha un llançador disponible.\n"
-"Per permetre obrir URLs o carpetes, afegeix \n"
-"\"launcher=/path/yo/app\" a preferences.txt"
+msgstr "Plataforma no especificada, no hi ha un llançador disponible.\nPer permetre obrir URLs o carpetes, afegeix \n\"launcher=/path/yo/app\" a preferences.txt"
#: UpdateCheck.java:111
msgid "Update"
msgstr "Actualitza"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
msgstr "Actualitza fitxer dels sketch a la nova extensió al desar (.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "Puja"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Puja utilitzant un Programador"
+msgstr "Carregar utilitzant un Programador"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
msgstr "Pujada cancel·lada."
@@ -1573,53 +1575,57 @@ msgstr "Pujada cancel·lada."
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Pujant a la I/O de la Placa ..."
+msgstr "Pujant a la I/O de la Placa..."
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
msgstr "Actualitzant..."
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Utilitza la selecció per cercar"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
msgstr "Utilitza un editor extern"
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr "Verifiqueu "
+msgstr "Verifiqueu"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
msgstr "Verifica / Compila"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr "Verificar el codi després d'actualitzar"
+msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
msgstr "Visita Arduino.cc"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
msgstr "Advertència"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() ha estat reanomenada a Wire.read()."
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
msgstr "Wire.send() ha estat reanomenada a Wire.write()."
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "Envolta"
+msgstr "Envoltat"
#: debug/Uploader.java:213
msgid ""
@@ -1627,43 +1633,37 @@ msgid ""
"> Board menu?"
msgstr "Microcontrolador trobat incorrecte. Ha seleccionat la placa adequada del menú Eines > Placa?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "Sí"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
msgstr "A mi no em pots enganyar"
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
msgstr "No pot tenir un fitxer .cpp amb el mateix nom que el sketch."
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"No pot reanomenar el sketch a \"{0}\"\n"
-"per què el sketch ja té un fitxer .cpp amb el mateix nom."
+msgstr "No pot reanomenar el sketch a \"{0}\"\nper què el sketch ja té un fitxer .cpp amb el mateix nom."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"No pot desar el sketch com \"{0}\"\n"
-"per què el sketch ja conté un fitxer .cpp amb aquest nom."
+msgstr "No pot reanomenar el sketch a \"{0}\"\nper què el sketch ja té un fitxer .cpp amb el mateix nom."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"No pot desar el sketch en una carpeta\n"
-"dins del mateix. Això seria un procés infinit."
+msgstr "No pot desar el sketch en una carpeta\ndins del mateix. Això seria un procés infinit."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
msgstr "Ha oblidat el seu sketchbook"
@@ -1672,23 +1672,21 @@ msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
-"Has sobrepassat el limit d'auto-anomenament de nous sketches\n"
-"pel dia d'avui. Perquè no fas una passejada?"
+msgstr "Has arribat al límit diari d'autonomenar nous esboços. I si anem a fer un tomb?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
msgstr "\".{0}\" no és una extensió vàlida."
@@ -1700,91 +1698,64 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr "\"{0}\" conté caràcters desconeguts. Si aquest codi va ser creat amb una versió antiga de Processament, podria utilitzar el menú Eines > Arregla la codificació i recarrega per actualitzar el sketch per tal d'usar una codificació UTF-8. Si no, haurà de suprimir els caràcters incorrectes per desfer-se del avis."
+msgstr "\"{0}\" conté caràcters desconeguts. Si aquest codi va ser creat amb una versió antiga de Processing, podria utilitzar el menú Eines > Arregla la codificació i recarrega per actualitzar el sketch per tal d’usar una codificació UTF-8. Si no, haurà de suprimir els caràcters incorrectes per desfer-se del avis."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
-"\n"
-msgstr ""
-"\n"
-"A partir de Arduino 0019, la llibreria Ethernet depèn de la llibreria SPI.\n"
-"Sembla que l'esta utilitzant o ho fa una altre llibreria que depèn de la llibreria SPI.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
+msgstr "\nA partir de Arduino 0019, la llibreria Ethernet depèn de la llibreria SPI.\nSembla que l'esta utilitzant o ho fa una altre llibreria que depèn de la llibreria SPI.\n\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
msgstr ""
-"\n"
-"A partir de Arduino 1.0, la paraula clau 'BYTE' ja no esta suportada.\n"
-"Si us plau usa en comptes Seria.write()\n"
-"\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"A partir de Arduino 1.0, la classe Client de la llibreria Ethernet ha estat reanomenada a EthernetClient.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
+msgstr "\nA partir de Arduino 1.0, la classe Client de la llibreria Ethernet ha estat reanomenada a EthernetClient.\n\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"A partir de Arduino 1.0, la classe Server de la llibreria Ethernet ha estat reanomenada a EthernetServer.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
+msgstr "\nA partir de Arduino 1.0, la classe Server de la llibreria Ethernet ha estat reanomenada a EthernetServer.\n\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
msgstr ""
-"\n"
-"A partir de Arduino 1.0, la funció Wire.receive() s'ha reanomenat a Wire.read() per consistència amb altres llibreries..\n"
-"\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
msgstr ""
-"\n"
-"A partir de Arduino 1.0, la funció Wire.send() s'ha reanomenat a Wire.write() per consistència amb altres llibreries..\n"
-"\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
-msgstr ""
+msgstr "baud"
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
msgstr "Compliació "
@@ -1792,7 +1763,7 @@ msgstr "Compliació "
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
msgstr "createNewFile() ha retornat false"
@@ -1800,11 +1771,11 @@ msgstr "createNewFile() ha retornat false"
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
msgstr "entorn"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@@ -1820,72 +1791,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "Ignorant mida de font invàlida {0}"
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "El nom es null"
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
msgstr "El buffer de bytes readBytesUntil() és massa petit pels {0} bytes fins i incloent el char {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: error intern... no s'ha pogut trobar codi"
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu es null"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr "el port sèrie seleccionat {0} no existeix o la teva placa no està connectada"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
-msgstr "Pujada"
+msgstr "Pujar"
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
msgstr "{0} fitxers afegits al sketch."
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
msgstr "{0} ha retornat {1}"
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr "{0} | Arduino {1}"
+msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_ca.properties b/app/src/processing/app/i18n/Resources_ca.properties
index bd0b82060..1c3239a28 100644
--- a/app/src/processing/app/i18n/Resources_ca.properties
+++ b/app/src/processing/app/i18n/Resources_ca.properties
@@ -4,66 +4,66 @@
# David A. Mellis <>, 2012.
# Translation to Catalan by Albert Segura Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Tancar l'ultim sketch obert tancar\u00e0 l'Arduino.
+#: Base.java:773
+\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Tancant esbo\u00e7 d'Arduino.
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Si no ho desa, els canvis es perdran.
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Ja existeix un fitxer amb el nom "{0}" a "{1}"
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=La carpeta anomenada "{0}" ja existeix. No es pot obrir el sketch.
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nova versi\u00f3 de l'Arduino est\u00e0 disponible,\nvoldria visitar la p\u00e0gina de descarrega d'Arduino?
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Un problema ha succe\u00eft al provar d'obrir els\nfitxers utilitzats per desar la sortida de la consola.
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
-#: Editor.java:1102
+#: Editor.java:1116
About\ Arduino=Quant a Arduino
-#: Editor.java:643
+#: Editor.java:650
Add\ File...=Afegeix fitxer...
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
+#: Base.java:963
+Add\ Library...=Afegir Llibreria...
#: tools/FixEncoding.java:77
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Un error ha succe\u00eft provant de arreglar la codificaci\u00f3 del fitxer.\nNo provi de desar aquest sketch, podria sobreescriure\nla versi\u00f3 antiga. Utilitzi Obrir per re-obrir el sketch i tornar-ho a provar.\n
-#: Base.java:221
+#: Base.java:228
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Un error desconegut ha succe\u00eft mentre es provava de carregar\ncodi especific de la plataforma per la seva maquina.
-#: Preferences.java:84
+#: Preferences.java:85
!Arabic=
-#: Preferences.java:85
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
@@ -76,7 +76,7 @@ Archive\ sketch\ as\:=Arxiva sketch com\:
Archive\ sketch\ canceled.=Arxivat del sketch cancel\u00b7lat.
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=L'arxivament del sketch ha estat cancel\u00b7lat per qu\u00e8\nel sketch no s'ha desat adequadament.
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
#: ../../../processing/app/I18n.java:83
!Arduino\ ARM\ (32-bits)\ Boards=
@@ -84,62 +84,68 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
+#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino no pot funcionar perqu\u00e8 no pot\ncrear una carpeta per desar les prefer\u00e8ncies.
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino no pot funcionar perqu\u00e8 no pot\ncre\u00ef una carpeta per desar el seu sketchbook.
+#: Base.java:1889
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino no pot funcionar perqu\u00e8 no pot\n cre\u00ef una carpeta per desar el seu sketchbook.
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requereix JDK per complet (no nom\u00e9s el JRE)\nper funcionar. Si us plau, instal\u00b7leu JDK 1.5 o posterior.\nPodeu trobar m\u00e9s informaci\u00f3 a les refer\u00e8ncies.
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requereix una completa JDK\nper funcionar (nom\u00e9s JRE no \u00e9s suficient). Si us plau instal\u00b7la JDK 1.5 o posterior.\nM\u00e9s informaci\u00f3 pot ser trobada a la refer\u00e8ncia.
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Esteu segur que voleu suprimir "{0}"?
-#: Sketch.java:591
+#: Sketch.java:587
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Segur que voleu suprimir aquest sketch?
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
#: tools/AutoFormat.java:91
Auto\ Format=Format autom\u00e0tic
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Format autom\u00e0tic cancel\u00b7lat\: Massa claus de tancament.
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Format autom\u00e0tic cancel\u00b7lat\: Massa par\u00e8ntesis de tancament.
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Format autom\u00e0tic cancel\u00b7lat\: Massa claus d'obertura.
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Format autom\u00e0tic cancel\u00b7lat\: Massa par\u00e8ntesis d'obertura.
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
Auto\ Format\ finished.=Format autom\u00e0tic finalitzat.
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=Associa autom\u00e0ticament fitxers .ino amb l'Arduino
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
#: SerialMonitor.java:110
Autoscroll=Despla\u00e7ament autom\u00e0tic
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
-Bad\ error\ line\:\ {0}=L\u00ednia d'error incorrecta\: {0}
+!Bad\ error\ line\:\ {0}=
-#: Editor.java:2089
+#: Editor.java:2136
Bad\ file\ selected=Fitxer seleccionat incorrecte
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=Placa
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -148,23 +154,29 @@ Board=Placa
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
Both\ NL\ &\ CR=Ambd\u00f3s NL & CR
-#: Preferences.java:80
-Browse=Navega
+#: Preferences.java:81
+!Browse=
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=Carpeta de construcci\u00f3 del projecte desapareguda o no s'ha pogut escriure
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
-Burn\ Bootloader=Enregistra Bootloader
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Enregistrant el bootloader a la I/O placa (pot durar uns minuts)...
+#: Editor.java:708
+Burn\ Bootloader=Carrega Bootloader
+
+#: Editor.java:2504
+Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=La carrega del bootloader a la I/O placa (pot durar uns minuts)...
#: ../../../processing/app/Base.java:368
!Can't\ open\ source\ sketch\!=
@@ -172,80 +184,92 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Enregistran
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=Cancel\u00b7la
-#: Sketch.java:459
+#: Sketch.java:455
Cannot\ Rename=No es pot reanomenar
#: SerialMonitor.java:112
Carriage\ return=Retorn de carro
-#: Preferences.java:86
+#: Preferences.java:87
!Catalan=
-#: Preferences.java:403
+#: Preferences.java:419
Check\ for\ updates\ on\ startup=Comprova actualitzacions al iniciar
-#: Preferences.java:87
-!Chinese\ Simplified=
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
!Chinese\ Traditional=
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
Close=Tanca
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
Comment/Uncomment=Comenta/Descomenta
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error del compilador, si us plau pengeu aquest codi a {0}
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
Compiling\ sketch...=Compilant el sketch...
#: EditorConsole.java:152
Console\ Error=Consola d'errors
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
Copy=Copia
-#: Editor.java:1163 Editor.java:2676
-Copy\ as\ HTML=Desa com a HTML
+#: Editor.java:1177 Editor.java:2723
+Copy\ as\ HTML=Copia com HTML
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
Copy\ for\ Forum=Copia pel Forum
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=No s'ha pogut afegir "{0}" al sketch.
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=No s'ha pogut copiar a una localitzaci\u00f3 correcte
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=No s'ha pogut crear la carpeta del sketch.
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
-#: Editor.java:2159
-Could\ not\ create\ the\ sketch.=No s'ha pogut crear el sketch.
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=No s'ha pogut suprimir "{0}".
+!Could\ not\ delete\ "{0}".=
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=No s'ha pogut suprimir el fitxer existent "{0}".
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
-Could\ not\ delete\ {0}=No s'ha pogut eliminar {0}
+!Could\ not\ delete\ {0}=
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -259,138 +283,144 @@ Could\ not\ delete\ {0}=No s'ha pogut eliminar {0}
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=No s'ha pogut obrir la URL\n{0}
+!Could\ not\ open\ the\ URL\n{0}=
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=No s'ha pogut obrir la carpeta\n{0}
+!Could\ not\ open\ the\ folder\n{0}=
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=No s'ha pogut desar el sketch adequadament. Potser t\u00e9 un problema ara mateix,\ni potser es el moment de copiar i enganxar el teu codi en un altre editor de text.
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=No s'ha pogut desar de nou el sketch
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=No s'han pogut llegir les prefer\u00e8ncies de tema de color.\nHaur\u00e0 de reinstal\u00b7lar Processament.
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No s'han pogut llegir les prefer\u00e8ncies per defecte.\nHaur\u00e0s de reinstal\u00b7lar l'Arduino.
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
-Could\ not\ read\ preferences\ from\ {0}=No s'ha pogut llegir les prefer\u00e8ncies de {0}
+!Could\ not\ read\ preferences\ from\ {0}=
-#: Base.java:2196
+#: Base.java:2482
#, java-format
-Could\ not\ remove\ old\ version\ of\ {0}=No s'ha pogut eliminar una versi\u00f3 anterior de {0}
+!Could\ not\ remove\ old\ version\ of\ {0}=
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
Could\ not\ rename\ "{0}"\ to\ "{1}"=No es pot reanomenar "{0}" per "{1}"
-#: Sketch.java:479
+#: Sketch.java:475
Could\ not\ rename\ the\ sketch.\ (0)=No es pot reanomenar el sketch. (0)
-#: Sketch.java:500
+#: Sketch.java:496
Could\ not\ rename\ the\ sketch.\ (1)=No es pot reanomenar el sketch. (1)
-#: Sketch.java:507
+#: Sketch.java:503
Could\ not\ rename\ the\ sketch.\ (2)=No es pot reanomenar el sketch. (2)
-#: Base.java:2206
+#: Base.java:2492
#, java-format
-Could\ not\ replace\ {0}=No s'ha pogut reempla\u00e7ar {0}
+!Could\ not\ replace\ {0}=
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=No s'ha pogut arxivar el sketch
+!Couldn't\ archive\ sketch=
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=No s'ha pogut determinar la mida del programa\: {0}
+#: Sketch.java:1647
+Couldn't\ determine\ program\ size\:\ {0}=No es va poder determinar la mida del programa\: {0}
-#: Sketch.java:620
-Couldn't\ do\ it=No s'ha pogut fer
+#: Sketch.java:616
+!Couldn't\ do\ it=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
Cut=Retalla
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
+#: Preferences.java:90
!Danish=
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Disminueix el sagnat
+#: Editor.java:1224 Editor.java:2765
+Decrease\ Indent=Disminuir el sagnat
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
Delete=Suprimeix
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=El dispositiu no respon, comprova que el port s\u00e8rie corresponent esta seleccionat o fes-li un RESET a la placa just abans d'exportar
+#: debug/Uploader.java:199
+Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=El dispositiu no respon, comprova que el port s\u00e8rie corresponent esta seleccionat o fes-li un RESET a la placa just abans d'exportar
#: tools/FixEncoding.java:57
Discard\ all\ changes\ and\ reload\ sketch?=Desfer tots els canvis i recarregar el sketch?
-#: Editor.java:2017
+#: Editor.java:2064
Don't\ Save=No deseu
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
Done\ Saving.=Guardat enllestit.
-#: Editor.java:2463
-Done\ burning\ bootloader.=Enregistrament del bootloader llesta.
+#: Editor.java:2510
+Done\ burning\ bootloader.=Carrega del bootloader llesta.
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
Done\ compiling.=Compilaci\u00f3 enllestida.
-#: Editor.java:2517
+#: Editor.java:2564
Done\ printing.=Impressi\u00f3 finalitzada.
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
Done\ uploading.=Pujada enllestida.
-#: Preferences.java:90
+#: Preferences.java:91
!Dutch=
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
Edit=Edita
-#: Preferences.java:354
+#: Preferences.java:370
Editor\ font\ size\:\ =Mides del fonts del editor\:
-#: Preferences.java:337
+#: Preferences.java:353
!Editor\ language\:\ =
-#: Preferences.java:91
+#: Preferences.java:92
!English=
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
Environment=Entorn
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=Error
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
Error\ adding\ file=Error al afegir un fitxer
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
Error\ compiling.=Error compilant.
-#: Base.java:1433
+#: Base.java:1674
Error\ getting\ the\ Arduino\ data\ folder.=Error obtenint la carpeta data d'Arduino.
-#: Serial.java:567
+#: Serial.java:593
#, java-format
Error\ inside\ Serial.{0}()=Error a dins del Serial.{0}()
@@ -403,26 +433,26 @@ Error\ inside\ Serial.{0}()=Error a dins del Serial.{0}()
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
Error\ opening\ serial\ port\ ''{0}''.=Error al obrir el port s\u00e8rie "{0}".
-#: Preferences.java:261
+#: Preferences.java:277
Error\ reading\ preferences=Error en llegir les prefer\u00e8ncies
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Error al llegir el fitxer de prefer\u00e8ncies. Si us plau elimini (o mogui)\n{0} i reinici\u00ef Arduino.
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=Error al enregistrar el bootloader.
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+Error\ while\ burning\ bootloader.=Error al carrega el bootloader.
#: ../../../processing/app/Editor.java:2555
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
@@ -431,26 +461,29 @@ Error\ while\ burning\ bootloader.=Error al enregistrar el bootloader.
#, java-format
Error\ while\ loading\ code\ {0}=Error durant la carrega de codi {0}
-#: Editor.java:2520
-Error\ while\ printing.=S'ha produ\u00eft un error mentre s'imprimia
+#: Editor.java:2567
+!Error\ while\ printing.=
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
Examples=Exemples
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3 cancel\u00b7lada, s'han de desar els canvis abans.
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
-#: Base.java:1814
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
+#: Editor.java:491
File=Fitxer
#: Preferences.java:94
@@ -459,158 +492,164 @@ File=Fitxer
#: FindReplace.java:124 FindReplace.java:127
Find=Cerca
-#: Editor.java:1235
+#: Editor.java:1249
Find\ Next=Cerca el seg\u00fcent
-#: Editor.java:1245
+#: Editor.java:1259
Find\ Previous=Cerca l'anterior
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
Find\ in\ Reference=Cerca a Refer\u00e8ncia
-#: Editor.java:1220
+#: Editor.java:1234
Find...=Cerca...
#: FindReplace.java:80
Find\:=Cerca\:
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
Fix\ Encoding\ &\ Reload=Arregla la codificaci\u00f3 i recarrega
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
+#: Preferences.java:95
!French=
-#: Editor.java:1083
+#: Editor.java:1097
Frequently\ Asked\ Questions=Preguntes M\u00e9s Freq\u00fcents
-#: Preferences.java:95
+#: Preferences.java:96
!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
+#: Preferences.java:97
!German=
-#: Editor.java:1041
+#: Editor.java:1054
Getting\ Started=Primers passos
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
!Greek=
-#: Base.java:1799
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
+#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
+#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
+#: Editor.java:1015
Help=Ajuda
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
+#: Sketch.java:295
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Per qu\u00e8 no prova de desar el sketch primer \nabans de provar de renombrar-lo?
-#: Sketch.java:886
+#: Sketch.java:882
How\ very\ Borges\ of\ you=Que tant Borges de part teva
-#: Preferences.java:98
+#: Preferences.java:100
!Hungarian=
#: FindReplace.java:96
Ignore\ Case=Ignora difer\u00e8ncies entre maj\u00fascules i min\u00fascules
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Ignorant la llibreria amb un nom incorrecte
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Ignorant el nom incorrecte de la Llibreria.
-#: Base.java:1132
+#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=Ignorant el sketch amb un nom incorrecte
-#: Editor.java:629
+#: Editor.java:636
Import\ Library...=Importa biblioteca...
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
Increase\ Indent=Augmenta el sagnat
-#: Preferences.java:99
+#: Preferences.java:101
!Indonesian=
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
+#: Preferences.java:102
!Italian=
-#: Preferences.java:101
+#: Preferences.java:103
!Japanese=
-#: Preferences.java:102
+#: Preferences.java:104
!Korean=
-#: Preferences.java:103
+#: Preferences.java:105
!Latvian=
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
-#: Preferences.java:104
+#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
+#: Base.java:2112
Message=Missatge
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
+#: Sketch.java:1712
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca el */ al final de /* comentari */
-#: Preferences.java:433
+#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Es poden editar m\u00e9s prefer\u00e8ncies directament en el fitxer
-#: Editor.java:2109
-Moving=S'est\u00e0 movent
+#: Editor.java:2156
+!Moving=
-#: Sketch.java:286
-Name\ for\ new\ file\:=Escolliu nom per un nou fitxer\:
+#: Sketch.java:282
+Name\ for\ new\ file\:=Escolliu un nom per un nou fitxer\:
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
New=Nou
#: EditorToolbar.java:46
@@ -625,17 +664,17 @@ Newline=L\u00ednia nova
#: EditorHeader.java:340
Next\ Tab=Pestanya seg\u00fcent
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=No
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Cap placa seleccionada; si us plau esculli una placa del men\u00fa Eines > Placa.
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
No\ changes\ necessary\ for\ Auto\ Format.=Cap canvi necessari pel format autom\u00e0tic.
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=No s'ha afegit cap fitxer al sketch.
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
#: Platform.java:167
No\ launcher\ available=No hi ha llan\u00e7ador disponible
@@ -643,81 +682,88 @@ No\ launcher\ available=No hi ha llan\u00e7ador disponible
#: SerialMonitor.java:112
No\ line\ ending=Sense salts de l\u00ednia
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, de deb\u00f2, moment per anar a prendre aire fresc.
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hora d'aire fresc, seriosament.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=No hi ha referencia disponible per a "{0}"
+!No\ reference\ available\ for\ "{0}"=
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mentre s'establien les prefer\u00e8ncies de l'aparen\u00e7a.
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Nop
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=D'acord
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=S'ha afegit un fitxer al sketch.
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
#: EditorToolbar.java:41
-Open=Obre
+Open=Obrir
-#: Editor.java:2641
+#: Editor.java:2688
Open\ URL=Obre l'URL
-#: Base.java:633
+#: Base.java:636
Open\ an\ Arduino\ sketch...=Obre un sketch d'Arduino...
#: EditorToolbar.java:46
Open\ in\ Another\ Window=Obrir en una altra finestra
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=Obrir...
-#: Editor.java:556
+#: Editor.java:563
Page\ Setup=Configuraci\u00f3 de la p\u00e0gina
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
Paste=Enganxa
-#: Preferences.java:105
+#: Preferences.java:109
!Persian=
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Si us plau importeu la llibreria SPI del men\u00fa Sketch > Importa biblioteca.
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=Si us plau, instal\u00b7leu JDK 1.5 o posterior
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=Si us plau instal\u00b7la JDK 1.5 o posterior.
-#: Preferences.java:106
+#: Preferences.java:110
!Polish=
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
Preferences=Prefer\u00e8ncies
#: FindReplace.java:123 FindReplace.java:128
@@ -726,23 +772,23 @@ Previous=Anterior
#: EditorHeader.java:326
Previous\ Tab=Pestanya anterior
-#: Editor.java:564
-Print=Imprimeix
+#: Editor.java:571
+Print=Sortir
-#: Editor.java:2524
+#: Editor.java:2571
Printing\ canceled.=Impressi\u00f3 cancel\u00b7lada.
-#: Editor.java:2500
-Printing...=S'est\u00e0 imprimint...
+#: Editor.java:2547
+!Printing...=
-#: Base.java:1671
+#: Base.java:1957
Problem\ Opening\ Folder=Problema obrint la carpeta
-#: Base.java:1647
+#: Base.java:1933
Problem\ Opening\ URL=Problema obrint la URL
-#: Base.java:220
-Problem\ Setting\ the\ Platform=Problemes per establir les prefer\u00e8ncies de Plataforma
+#: Base.java:227
+Problem\ Setting\ the\ Platform=Problema adjustant la plataforma.
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
!Problem\ accessing\ board\ folder\ /www/sd=
@@ -750,41 +796,41 @@ Problem\ Setting\ the\ Platform=Problemes per establir les prefer\u00e8ncies de
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
+#: Base.java:1673
Problem\ getting\ data\ folder=Problema obtenint la carpeta de data
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
Problem\ moving\ {0}\ to\ the\ build\ folder=Problemes movent {0} a la carpeta de treball
#: debug/Uploader.java:209
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema pujant a la placa. Visita per http\://www.arduino.cc/en/Guide/Troubleshooting\#upload suggeriments.
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=Hi ha un problema amb el motor de reproducci\u00f3
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=El Processament nom\u00e9s pot obrir els seus propis sketches\ni altres fitxers acabats en .ino o .pde
+#: Editor.java:2137
+Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing nom\u00e9s pot obrir els seus propis sketches\ni altres fitxers acabats en .ino o .pde
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
+#: Editor.java:704
Programmer=Programador
-#: Editor.java:586 Base.java:782
-Quit=Sortir
+#: Base.java:783 Editor.java:593
+Quit=Tancar
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=Ref\u00e9s
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+Redo=Ref\u00e9r
-#: Editor.java:1065
+#: Editor.java:1078
Reference=Refer\u00e8ncia
#: EditorHeader.java:300
Rename=Canvia el nom
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=Reempla\u00e7a
#: FindReplace.java:122 FindReplace.java:129
@@ -793,55 +839,55 @@ Replace\ &\ Find=Cerca i reempla\u00e7a
#: FindReplace.java:120 FindReplace.java:131
Replace\ All=Reempla\u00e7a-ho tot
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
Replace\ the\ existing\ version\ of\ {0}?=Reempla\u00e7a la versi\u00f3 existent de {0}?
#: FindReplace.java:81
-Replace\ with\:=Substitueix amb\:
+Replace\ with\:=Substituir amb\:
-#: Preferences.java:109
+#: Preferences.java:113
!Romanian=
-#: Preferences.java:110
+#: Preferences.java:114
!Russian=
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=Desa
-#: Editor.java:530
+#: Editor.java:537
Save\ As...=Anomena i desa...
-#: Editor.java:2270
+#: Editor.java:2317
Save\ Canceled.=Guardat cancel\u00b7lat.
-#: Editor.java:2420
-Save\ changes\ before\ export?=Voleu desar els canvis abans d'exportar?
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
Save\ changes\ to\ "{0}"?\ \ =Desar els canvis a "{0}"?
-#: Sketch.java:829
+#: Sketch.java:825
Save\ sketch\ folder\ as...=Anomena i desa la carpeta de sketch...
-#: Editor.java:2223 Editor.java:2261
-Saving...=S'est\u00e0 desant...
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
-#: Base.java:1623
+#: Base.java:1909
Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleccioni (o cre\u00ef) una carpeta pels sketches...
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
Select\ All=Selecciona-ho Tot
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
+#: Sketch.java:975
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Seleccioni una imatge o un altre fitxer da dades per copiar el seu sketch
-#: Preferences.java:314
+#: Preferences.java:330
Select\ new\ sketchbook\ location=Seleccioneu una ubicaci\u00f3 pel nou sketchbook
#: ../../../processing/app/debug/Compiler.java:146
@@ -850,147 +896,157 @@ Select\ new\ sketchbook\ location=Seleccioneu una ubicaci\u00f3 pel nou sketchbo
#: SerialMonitor.java:93
Send=Envia
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
Serial\ Monitor=Monitor s\u00e8rie
-#: Serial.java:147
+#: Serial.java:174
#, java-format
Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e8rie "{0}" ja en \u00fas. Provi de finalitzar programes que puguin estar utilitzant-lo.
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port s\u00e8rie "{0}" no trobat. Ha seleccionat el port corresponent al men\u00fa Eines > Port s\u00e8rie?
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port s\u00e8rie {0} no trobat.\nRe-intentar la pujada amb un altre port s\u00e8rie?
-#: Base.java:1440
+#: Base.java:1681
Settings\ issues=Errors en les prefer\u00e8ncies
-#: Editor.java:634
+#: Editor.java:641
Show\ Sketch\ Folder=Mostra la carpeta del Sketch
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
+#: Preferences.java:387
Show\ verbose\ output\ during\:\ =Mostra la sortida detallada durant\:
-#: Editor.java:600
+#: Editor.java:607
Sketch=Sketch
-#: Sketch.java:1796
-Sketch\ Disappeared=Sketch desaparegut
+#: Sketch.java:1754
+Sketch\ Disappeared=Sketch va desapar\u00e8ixer
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=El Sketch no existeix
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=Esbo\u00e7 no existeix.
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
Sketch\ is\ Read-Only=El Sketch \u00e9s nom\u00e9s de lectura
-#: Sketch.java:298
+#: Sketch.java:294
Sketch\ is\ Untitled=El Sketch no t\u00e9 nom.
-#: Sketch.java:724
+#: Sketch.java:720
Sketch\ is\ read-only=El Sketch \u00e9s nom\u00e9s de lectura
-#: Sketch.java:1694
+#: Sketch.java:1653
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch massa gran; visita http\://www.arduino.cc/en/Guide/Troubleshooting\#size per consells per reduir-ne la mida.
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
Sketchbook=Sketchbook
-#: Base.java:257
-Sketchbook\ folder\ disappeared=Carpeta Sketchbook desapareguda
+#: Base.java:258
+Sketchbook\ folder\ disappeared=El directori Sketchbook ha desaparegut.
-#: Preferences.java:299
+#: Preferences.java:315
Sketchbook\ location\:=Ubicaci\u00f3 del Sketchbook\:
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alguns fitxers estan marcats com a "read-only", per tant haur\u00e0\nde desar de nou el sketch en una altre localitzaci\u00f3,\ni tornar-ho a provar.
-#: Sketch.java:725
+#: Sketch.java:721
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alguns arxius estan marcats "reald-only", haur\u00e0 de\ndesar el sketch a una altre localitzaci\u00f3.
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Ho sentim, un sketch (o carpeta) anomenat "{0}" ja existeix.
-#: Preferences.java:111
+#: Preferences.java:115
!Spanish=
-#: Base.java:537
-Sunshine=Brillantor
+#: Base.java:540
+Sunshine=Sol.
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
!System\ Default=
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
!Tamil=
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=La paraula clau 'BYTE' ja no esta suportada.
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client ha estat reanomenat a EthernetClient.
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=La classe Server ha estat reanomenada EthernetServer.
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=La classe Udp ha estat reanomenada a EthernetUdp.
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=El missatge d'error continua, de totes formes Arduino hauria de funcionar b\u00e9.
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=El missatge d'error continua, no obstant Arduino hauria de funcionar correctament.
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=El fitxer "{0}" ha d'estar a dins de\nla carpeta del cketch anomenada "{1}".\nVol crear aquesta carpeta, moure el fitxer, i continuar?
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=La llibreria "{0}" no pot ser utilitzada.\nEls noms de llibreries ha de contenir nom\u00e9s car\u00e0cters b\u00e0sics i nombres.\n(Nom\u00e9s ASCII sense espais, i no pot comen\u00e7ar amb un nombre)
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=La Llibreria "{0}" no pot ser utilitzada.\nNoms de Llibreries nom\u00e9s poden contenir nombres i lletres senzilles.\n(nom\u00e9s ASCII i sense espais, tampoc pot comen\u00e7ar amb un nombre).
-#: Sketch.java:378
+#: Sketch.java:374
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=El fitxer principal no pot utilitzar una extensi\u00f3.\n(Potser es moment de que es gradu\u00ef en un\nentorn de programaci\u00f3 "real")
-#: Sketch.java:360
+#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=El nom no pot comen\u00e7ar amb un punt.
-#: Base.java:1096
+#: Base.java:1412
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=El sketch seleccionat ja no existeix.\nHauries de reiniciar Arduino per actualitzar\nel men\u00fa de sketchbook.
-#: Base.java:1125
+#: Base.java:1430
#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=El sketch "{0}" no pot ser utilitzat.\nEls noms dels sketch han de contenir nom\u00e9s car\u00e0cters b\u00e0sics i nombres\n(Nom\u00e9s ASCII sense espais, i no pot comen\u00e7ar amb un nombre).\nPer desfer-se d'aquest missatge, elimina el sketch de\n{1}
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=El sketch "{0}" no pot ser utilitzat.\nEls noms dels sketch han de contenir nom\u00e9s car\u00e0cters b\u00e0sics i nombres\n(Nom\u00e9s ASCII sense espais, i no pot comen\u00e7ar amb un nombre).\nPer desfer-se d\u2019aquest missatge, elimina el sketch de {1}
-#: Sketch.java:1797
+#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=La carpeta del sketch ha desaparegut.\n Es provar\u00e0 de tornar a desar en la mateixa localitzaci\u00f3,\nper\u00f2 tot excepte el codi ser\u00e0 perdut.
-#: Sketch.java:2060
+#: Sketch.java:2018
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=El nom del sketch ha de ser modificat. Els noms dels Sketch nom\u00e9s poden constar\nde car\u00e0cters ASCII i nombres (per\u00f2 no comen\u00e7ar amb nombres).\nTamb\u00e9 haurien de ser menys de 64 car\u00e0cters.
-#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La carpeta sketchbook no existeix.\nArduino canviar\u00e0\u00a0 a la localitzaci\u00f3 per defecte\nde sketchbook, i crear\u00e0\u00a0 una nova carpeta sketchbook\nsi fos necessari. Arduino parar\u00e0\u00a0 de parlar\nd'ell mateix en tercera persona.
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La carpeta sketchbook no existeix.\nArduino canviar\u00e0 a la localitzaci\u00f3 per defecte\nde sketchbook, i crear\u00e0 una nova carpeta sketchbook\nsi fos necessari. Arduino parar\u00e0 de parlar\nd'ell mateix en tercera persona.
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Aquest fitxer ja ha estat copiat a la\nlocalitzaci\u00f3 de la qual est\u00e0 provant d'afegir-lo.\n'I ain't not doin nuthin'.'
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
-Time\ for\ a\ Break=Temps per un descans
+#: Base.java:535
+Time\ for\ a\ Break=Hora de descansar.
-#: Editor.java:656
+#: Editor.java:663
Tools=Eines
-#: Editor.java:1057
+#: Editor.java:1070
Troubleshooting=Soluci\u00f3 de problemes
#: ../../../processing/app/Preferences.java:117
@@ -1010,7 +1066,7 @@ Troubleshooting=Soluci\u00f3 de problemes
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1018,12 +1074,12 @@ Troubleshooting=Soluci\u00f3 de problemes
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
Uncaught\ exception\ type\:\ {0}=Excepci\u00f3 escapada de tipus\: {0}
-#: Editor.java:1119 Editor.java:1341
-Undo=Desf\u00e9s
+#: Editor.java:1133 Editor.java:1355
+Undo=Desf\u00e9r
#: Platform.java:168
Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma no especificada, no hi ha un llan\u00e7ador disponible.\nPer permetre obrir URLs o carpetes, afegeix \n"launcher\=/path/yo/app" a preferences.txt
@@ -1031,142 +1087,144 @@ Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\
#: UpdateCheck.java:111
Update=Actualitza
-#: Preferences.java:412
+#: Preferences.java:428
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Actualitza fitxer dels sketch a la nova extensi\u00f3 al desar (.pde -> .ino)
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=Puja
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Puja utilitzant un Programador
+#: EditorToolbar.java:46 Editor.java:553
+Upload\ Using\ Programmer=Carregar utilitzant un Programador
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=Pujada cancel\u00b7lada.
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=Pujant a la I/O de la Placa ...
+#: Editor.java:2378
+Uploading\ to\ I/O\ Board...=Pujant a la I/O de la Placa...
-#: Sketch.java:1661
+#: Sketch.java:1622
Uploading...=Actualitzant...
-#: Editor.java:1255
+#: Editor.java:1269
Use\ Selection\ For\ Find=Utilitza la selecci\u00f3 per cercar
-#: Preferences.java:393
+#: Preferences.java:409
Use\ external\ editor=Utilitza un editor extern
#: EditorToolbar.java:41 EditorToolbar.java:46
-Verify=Verifiqueu
+Verify=Verifiqueu
-#: Editor.java:602
+#: Editor.java:609
Verify\ /\ Compile=Verifica / Compila
-#: Preferences.java:384
-Verify\ code\ after\ upload=Verificar el codi despr\u00e9s d'actualitzar
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
Visit\ Arduino.cc=Visita Arduino.cc
-#: Base.java:1842
+#: Base.java:2128
Warning=Advert\u00e8ncia
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ha estat reanomenada a Wire.read().
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() ha estat reanomenada a Wire.write().
#: FindReplace.java:105
-Wrap\ Around=Envolta
+Wrap\ Around=Envoltat
#: debug/Uploader.java:213
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Microcontrolador trobat incorrecte. Ha seleccionat la placa adequada del men\u00fa Eines > Placa?
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=S\u00ed
-#: Sketch.java:1078
+#: Sketch.java:1074
You\ can't\ fool\ me=A mi no em pots enganyar
-#: Sketch.java:415
+#: Sketch.java:411
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No pot tenir un fitxer .cpp amb el mateix nom que el sketch.
-#: Sketch.java:425
+#: Sketch.java:421
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No pot reanomenar el sketch a "{0}"\nper qu\u00e8 el sketch ja t\u00e9 un fitxer .cpp amb el mateix nom.
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No pot desar el sketch com "{0}"\nper qu\u00e8 el sketch ja cont\u00e9 un fitxer .cpp amb aquest nom.
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No pot reanomenar el sketch a "{0}"\nper qu\u00e8 el sketch ja t\u00e9 un fitxer .cpp amb el mateix nom.
-#: Sketch.java:887
+#: Sketch.java:883
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No pot desar el sketch en una carpeta\ndins del mateix. Aix\u00f2 seria un proc\u00e9s infinit.
-#: Base.java:1602
+#: Base.java:1888
You\ forgot\ your\ sketchbook=Ha oblidat el seu sketchbook
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Has sobrepassat el limit d'auto-anomenament de nous sketches\npel dia d'avui. Perqu\u00e8 no fas una passejada?
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Has arribat al l\u00edmit diari d'autonomenar nous esbo\u00e7os. I si anem a fer un tomb?
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
!ZIP\ files\ or\ folders=
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
".{0}"\ is\ not\ a\ valid\ extension.=".{0}" no \u00e9s una extensi\u00f3 v\u00e0lida.
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" cont\u00e9 car\u00e0cters desconeguts. Si aquest codi va ser creat amb una versi\u00f3 antiga de Processament, podria utilitzar el men\u00fa Eines > Arregla la codificaci\u00f3 i recarrega per actualitzar el sketch per tal d'usar una codificaci\u00f3 UTF-8. Si no, haur\u00e0 de suprimir els car\u00e0cters incorrectes per desfer-se del avis.
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" cont\u00e9 car\u00e0cters desconeguts. Si aquest codi va ser creat amb una versi\u00f3 antiga de Processing, podria utilitzar el men\u00fa Eines > Arregla la codificaci\u00f3 i recarrega per actualitzar el sketch per tal d\u2019usar una codificaci\u00f3 UTF-8. Si no, haur\u00e0 de suprimir els car\u00e0cters incorrectes per desfer-se del avis.
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nA partir de Arduino 0019, la llibreria Ethernet dep\u00e8n de la llibreria SPI.\nSembla que l'esta utilitzant o ho fa una altre llibreria que dep\u00e8n de la llibreria SPI.\n\n
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nA partir de Arduino 1.0, la paraula clau 'BYTE' ja no esta suportada.\nSi us plau usa en comptes Seria.write()\n\n
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nA partir de Arduino 1.0, la classe Client de la llibreria Ethernet ha estat reanomenada a EthernetClient.\n\n
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nA partir de Arduino 1.0, la classe Server de la llibreria Ethernet ha estat reanomenada a EthernetServer.\n\n
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir de Arduino 1.0, la funci\u00f3 Wire.receive() s'ha reanomenat a Wire.read() per consist\u00e8ncia amb altres llibreries..\n\n
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir de Arduino 1.0, la funci\u00f3 Wire.send() s'ha reanomenat a Wire.write() per consist\u00e8ncia amb altres llibreries..\n\n
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
-!baud=
+#: SerialMonitor.java:130 SerialMonitor.java:133
+baud=baud
-#: Preferences.java:373
+#: Preferences.java:389
compilation\ =Compliaci\u00f3
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
+#: Sketch.java:540
createNewFile()\ returned\ false=createNewFile() ha retornat false
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
+#: Base.java:2090
environment=entorn
-#: Editor.java:1094
+#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
@@ -1178,54 +1236,51 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=Ignorant mida de font inv\u00e0lida {0}
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
name\ is\ null=El nom es null
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=El buffer de bytes readBytesUntil() \u00e9s massa petit pels {0} bytes fins i incloent el char {1}
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error intern... no s'ha pogut trobar codi
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
-#: Editor.java:923
+#: Editor.java:932
serialMenu\ is\ null=serialMenu es null
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=el port s\u00e8rie seleccionat {0} no existeix o la teva placa no est\u00e0 connectada
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
+#: Preferences.java:391
+upload=Pujar
-#: Preferences.java:375
-upload=Pujada
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
{0}\ files\ added\ to\ the\ sketch.={0} fitxers afegits al sketch.
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
{0}\ returned\ {1}={0} ha retornat {1}
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
-{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+!{0}\ |\ Arduino\ {1}=
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_cs_CZ.po b/app/src/processing/app/i18n/Resources_cs_CZ.po
index 45111bca8..a231d714f 100644
--- a/app/src/processing/app/i18n/Resources_cs_CZ.po
+++ b/app/src/processing/app/i18n/Resources_cs_CZ.po
@@ -11,7 +11,7 @@ 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: 2012-11-27 19:40+0000\n"
+"PO-Revision-Date: 2013-09-10 11:35+0000\n"
"Last-Translator: McHa Closing the last open sketch will quit Arduino."
msgstr ""
-" Hvis du lukker den sidste sketch, så afslutter Arduino."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
msgstr ""
-" Hvis du ikke "
-"gemmer, går dine ændringer tabt."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "En fil med navn \"{0}\" eksisterer allerede i \"{1}\""
+msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr "En mappe med navn \"{0}\" eksisterer allerede. Kan ikke åbne sketch."
+msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -79,26 +72,22 @@ msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
msgstr ""
-"Der er en ny version af Arduino,\n"
-"vil du gerne besøge Arduino's download side?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
msgstr ""
-"Der opstod et problem under indlæsning af\n"
-"filerne brugt til at gemme konsollens output."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
msgstr "Om Arduino"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "Tilføj Fil..."
+msgstr "Tilføj fil..."
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
msgstr ""
@@ -108,44 +97,38 @@ msgid ""
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
msgstr ""
-"Der opstod en fejl mens filens kodning blev forsøgt fikset.\n"
-"Gem ikke denne sketch da den måske vil overskrive\n"
-"den gamle version. Genåbn i stedet sketchen og prøv igen.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "En ukendt fejl opstod under indlæsning\n"
-"platform-specifik kode til din maskine."
-
-#: Preferences.java:84
-msgid "Arabic"
msgstr ""
#: Preferences.java:85
+msgid "Arabic"
+msgstr "Arabisk"
+
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Arkiver Sketch"
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Arkiver sketch som:"
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Arkivering af sketch afbrudt."
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
msgstr ""
-"Arkiveringen af sketchen er blevet afbrudt fordi\n"
-"sketchen ikke kunne blive gemt korrekt."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -155,128 +138,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
msgstr ""
-"Arduino kan ikke køre fordi den ikke kunne\n"
-"lave en mappe til at gemme dine indstillinger."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
msgstr ""
-"Arduino kan ikke køre fordi den ikke kunne\n"
-"lave en mappe til at gemme din sketchbook."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr "Arduino kræver en fuld installation af JDK (ikke kun JRE)\n"
-"for at køre. Installer venligst JDK 1.5 eller nyere.\n"
-"Mere information forefindes i reference dokumentationen."
+msgstr ""
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Er du sikker på du vil slette \"{0}\"?"
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Er du sikker på du vil slette denne sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Autoformatering"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr "Autoformatering afbrudt: For mange venstre krøllede parenteser."
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr "Autoformatering afbrudt: For mange venstre parenteser."
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr "Autoformatering afbrudt: For mange højre krøllede parenteser."
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr "Autoformatering afbrudt: For mange højre parenteser."
+msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "Autoformatering færdig."
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Tilknyt automatisk .ino filer med Arduino"
+msgstr ""
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Autoscroll"
-
-#: Editor.java:2572
-#, java-format
-msgid "Bad error line: {0}"
-msgstr "Grim fejl linje: {0}"
-
-#: Editor.java:2089
-msgid "Bad file selected"
-msgstr "Forkert fil valgt"
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
msgstr ""
-#: Editor.java:682
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Kort"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "Både NL & CR"
+msgstr ""
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Gennemse"
+msgstr ""
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "Build mappen forsvandt eller kunne ikke skrives til"
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "Brænd Bootloader"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Brænder bootloader til I/O Kort (dette kan godt tage et minuts tid)..."
+msgstr ""
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -286,100 +279,116 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "Afbryd"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
msgstr "Kan ikke omdøbe"
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Transport retur"
+msgstr ""
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr ""
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
-msgstr "Tjek for opdateringer under start"
+msgstr ""
-#: Preferences.java:87
-msgid "Chinese Simplified"
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
msgstr ""
#: Preferences.java:88
-msgid "Chinese Traditional"
-msgstr ""
+msgid "Chinese Simplified"
+msgstr "Kinesisk Simpel"
-#: Editor.java:514 Editor.java:1977
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr "Kinesisk traditionel"
+
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "Luk"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "Kommenter/Udkommenter"
+msgstr ""
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Kompileringsfejl, vær venlig at sende koden til {0}"
+msgstr ""
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Kompilerer sketch..."
+msgstr ""
#: EditorConsole.java:152
msgid "Console Error"
-msgstr "Konsol Fejl"
+msgstr ""
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
-msgstr "Kopier"
+msgstr "Kopiere"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "Kopier som HTML"
+msgstr "Kopiere som HTML"
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Kopier for Forum"
+msgstr "Kopiere fra forum"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "Kunne ikke tilføje ''{0}'' til sketchen."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "Kunne ikke kopiere til en ordentlig sti."
+msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "Kunne ikke oprette sketch mappen."
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr "Kunne ikke lave sketchen."
+msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Kunne ikke slette \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Kunne ikke slette den allerede eksisterende ''{0}'' fil."
+msgstr "Kunne ikke slette den eksisterende \"{0}\" fil."
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
msgstr "Kunne ikke slette {0}"
@@ -399,97 +408,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
msgstr ""
-"Kunne ikke åbne URL'en\n"
-"{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"Kunne ikke åbne mappen\n"
-"{0}"
+msgstr "Kunne ikke åbne biblioteket\n{0} "
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
msgstr ""
-"Kunne ikke gemme sketchen igen. Du er måske i problemer nu,\n"
-"og det er nok på tide at kopiere din kode over i en anden tekst editor."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "Kunne ikke gemme sketch igen"
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
msgstr ""
-"Kunne ikke læse farve tema indstillinger.\n"
-"Du skal geninstallere Processing."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
msgstr ""
-"Kunne ikke indlæse standard indstillinger.\n"
-"Du skal geninstallere Arduino."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "Kunne ikke indlæse indstillinger fra {0}"
+msgstr ""
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
msgstr "Kunne ikke fjerne den gamle version af {0}"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "Kunne ikke omdøbe \"{0}\" til \"{1}\""
+msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "Kunne ikke omdøbe sketchen. (0)"
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Kunne ikke omdøbe sketchen. (1)"
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Kunne ikke omdøbe sketchen. (2)"
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
msgstr "Kunne ikke erstatte {0}"
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Kunne ikke arkivere sketch"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Kunne ikke afgøre programmet størrelse: {0}"
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "Kunne ikke gøre det"
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -500,7 +499,7 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "Klip"
@@ -508,100 +507,106 @@ msgstr "Klip"
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
+msgstr "Dansk"
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
msgstr ""
-#: Editor.java:1210 Editor.java:2718
-msgid "Decrease Indent"
-msgstr "Formindsk Indryk"
-
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
msgstr "Slet"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
msgstr ""
-"Enhed svarer ikke, tjek at den rigtige seriel port er valgt eller RESET "
-"kortet lige før du eksporterer"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Ignorer alle ændringer og genindlæs sketch?"
+msgstr ""
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "Gem Ikke"
+msgstr "Gem ikke"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
msgstr "Færdig med at gemme."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "Færdig med at brænde til bootloader."
+msgstr ""
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
msgstr "Færdig med at kompilere."
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
-msgstr "Udskrift færdig."
-
-#: Editor.java:2348 Editor.java:2384
-msgid "Done uploading."
-msgstr "Upload færdig."
-
-#: Preferences.java:90
-msgid "Dutch"
msgstr ""
-#: Editor.java:1116
-msgid "Edit"
-msgstr "Rediger"
-
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr "Editor font størrelse: "
-
-#: Preferences.java:337
-msgid "Editor language: "
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
msgstr ""
#: Preferences.java:91
-msgid "English"
+msgid "Dutch"
+msgstr "Hollandsk"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
msgstr ""
-#: Editor.java:1049
-msgid "Environment"
-msgstr "Miljø"
+#: Editor.java:1130
+msgid "Edit"
+msgstr "Rediger"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
+msgid "English"
+msgstr "Engelsk"
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr ""
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "Fejl"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
msgstr "Fejl ved tilføjelse af fil"
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Fejl ved kompilering."
+msgstr "Fejl i kompilering."
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "Fejl under indlæsning af Arduino data mappen."
+msgstr ""
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "Fejl i Serial.{0}()"
+msgstr ""
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
@@ -614,36 +619,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr "Fejl ved åbning af seriel port ''{0}''."
+msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
-msgstr "Fejl ved læsning af indstillinger"
+msgstr ""
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
msgstr ""
-"Fejl ved indlæsning af indstillingsfilen. Slet venligst (eller flyt)\n"
-"{0} og genstart Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Fejl under brænding til bootloader."
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -652,89 +655,97 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Fejl ved læsning af kode {0}"
+msgstr ""
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "Fejl under udskrift."
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
msgstr "Eksempler"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Eksport afbrudt, ændringer skal gemmes først."
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
msgstr "Fil"
#: Preferences.java:94
msgid "Filipino"
-msgstr ""
+msgstr "Filipinsk"
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
-msgstr "Find"
+msgstr "Søg"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Find Næste"
+msgstr "Find næste"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Find Forrige"
+msgstr "Find forrige"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Find i Reference"
+msgstr ""
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Find..."
+msgstr "Søg..."
#: FindReplace.java:80
msgid "Find:"
msgstr "Find:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr "Finsk"
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr "Fiks kodning & genindlæs?"
-
-#: ../../../processing/app/Base.java:2057
-msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
-msgid "French"
-msgstr ""
-
-#: Editor.java:1083
-msgid "Frequently Asked Questions"
-msgstr "Ofte Stillede Spørgsmål"
-
#: Preferences.java:95
+msgid "French"
+msgstr "Fransk"
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr "Ofte stillede spørgsmål"
+
+#: Preferences.java:96
msgid "Galician"
msgstr ""
@@ -742,31 +753,43 @@ msgstr ""
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
-msgid "German"
-msgstr ""
-
-#: Editor.java:1041
-msgid "Getting Started"
-msgstr "Kom Godt I Gang"
-
#: Preferences.java:97
-msgid "Greek"
+msgid "German"
+msgstr "Tysk"
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr "Kom igang"
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
msgstr ""
-#: Base.java:1799
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr "Græsk"
+
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
@@ -774,45 +797,43 @@ msgstr "Guide_Windows.html"
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "Hjælp"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
msgstr ""
-"Hvad med at gemme sketchen først \n"
-"inden du forsøger at omdøbe den?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "Er du Jorge Luis Borges?"
+msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr ""
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr "Ignorer store/små bogstaver"
+msgstr ""
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Ignorerer illegalt biblioteksnavn"
+msgstr ""
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
-msgstr "Ignorerer sketch med illegalt navn"
+msgstr ""
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Importer Bibliotek..."
+msgstr ""
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -825,40 +846,40 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Forhøj Indryk"
-
-#: Preferences.java:99
-msgid "Indonesian"
msgstr ""
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr "Indonesisk"
+
#: ../../../processing/app/Base.java:1204
#, java-format
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
-msgid "Italian"
-msgstr ""
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr ""
-
#: Preferences.java:102
-msgid "Korean"
-msgstr ""
+msgid "Italian"
+msgstr "Italiensk"
#: Preferences.java:103
-msgid "Latvian"
-msgstr ""
+msgid "Japanese"
+msgstr "Japansk"
-#: ../../../processing/app/Base.java:2903
+#: Preferences.java:104
+msgid "Korean"
+msgstr "Koreansk"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "Lettisk"
+
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
msgstr ""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -866,113 +887,108 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "Besked"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Mangler */ fra afslutningen af en /* kommentar */"
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr "Flere indstillinger kan redigeres direkte i denne fil"
+msgstr ""
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
msgstr "Flytter"
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Navn til ny fil:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "Ny"
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Nyt Editor Vindue"
+msgstr ""
#: EditorHeader.java:292
msgid "New Tab"
-msgstr "Ny Tab"
+msgstr ""
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Ny linje"
+msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr "Næste Tab"
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "Nej"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Der er ikke valgt noget kort, vælg et i menuen Tools > Board menu."
+msgstr ""
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
-msgstr "Ingen ændring nødvendig for autoformatering."
+msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "Ingen filer blev tilføjet til sketchen."
+msgstr ""
#: Platform.java:167
msgid "No launcher available"
-msgstr "Ingen åbner tilgængelig"
+msgstr ""
#: SerialMonitor.java:112
msgid "No line ending"
-msgstr "Ingen slutning på linjen"
+msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "Seriøst, tid til noget frisk luft til dig."
+msgstr ""
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "Ingen reference tilgængelig for \"{0}\""
+msgstr ""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
-msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Ikke livstruende fejl under indstilling af udseende og fornemmelse."
-
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-msgid "Nope"
-msgstr "Niks"
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
msgstr ""
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr ""
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr "Nej"
+
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
@@ -983,74 +999,82 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr "OK"
+msgstr "Ok"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "En fil tilføjet til sketchen."
+msgstr ""
#: EditorToolbar.java:41
msgid "Open"
msgstr "Åben"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "Åben URL"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Åben en Arduino sketch..."
+msgstr ""
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Åben i et Andet Vindue"
+msgstr "Åben i nyt vindue"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "Åben..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Sideopsætning"
+msgstr "Side opsætning"
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
-msgstr ""
+msgstr "Adgangskode:"
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
msgstr "Indsæt"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
+msgstr "Persisk"
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
msgstr ""
-#: debug/Compiler.java:465
-msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Importer venligst SPI biblioteket fra Sketch > Import Library menuen"
-
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
msgstr "Installer venligst JDK 1.5 eller nyere"
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
-msgstr ""
+msgstr "Polsk"
#: ../../../processing/app/Editor.java:718
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "Indstillinger"
+msgstr "Egenskaber"
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
@@ -1058,31 +1082,31 @@ msgstr "Forrige"
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Forrige Tab"
+msgstr ""
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
msgstr "Print"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr "Udskrift annulleret"
+msgstr "Print annulleret"
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Udskriver..."
+msgstr "Printer..."
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr "Problem Med At Åbne Mappe"
+msgstr "Problem med at åbne biblotek"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "Problem Med At Åbne URL"
+msgstr "Problem med at åbne URL"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "Problem med at indstille platformen"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1092,72 +1116,68 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "Problem med at hente data mappe"
+msgstr "Problem med at åbne data bibloteket"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Problem med at flytte {0} til build mappen"
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr ""
-"Problem under upload til kort. Se http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for forslag."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Problem med at omdøbe"
+msgstr "Problem med at omdøde"
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
msgstr ""
-"Processing kan kun åbne sine egne sketches\n"
-"og andre filer der slutter med .ino eller .pde."
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "Programmer"
+msgstr ""
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "Afslut"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Omgør"
+msgstr "Annuller fortryd"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "Reference"
+msgstr ""
#: EditorHeader.java:300
msgid "Rename"
msgstr "Omdøb"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "Erstat"
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr "Erstat & Find"
+msgstr ""
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "Erstat Alle"
+msgstr "Erstat alle"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
msgstr "Erstat den eksisterende version af {0}?"
@@ -1166,63 +1186,63 @@ msgstr "Erstat den eksisterende version af {0}?"
msgid "Replace with:"
msgstr "Erstat med:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr ""
+msgstr "Romænsk"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
-msgstr ""
+msgstr "Russisk"
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "Gem"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Gem Som..."
+msgstr "Gem som..."
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "Gem Afbrudt."
+msgstr "Gem annulleret"
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "Gem ændringer før eksport?"
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Gem ændringer til \"{0}\"? "
+msgstr "Gem ændringer til \"{0}\"?"
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Gem sketch mappe som..."
+msgstr ""
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
msgstr "Gemmer..."
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Vælg (eller lav ny) mappe til sketches..."
+msgstr ""
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Vælg Alt"
+msgstr "Vælg alt"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Vælg et billede eller en anden data fil til at kopiere ind i din sketch"
+msgstr ""
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Vælg ny sketchbook sti"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1232,210 +1252,200 @@ msgstr ""
msgid "Send"
msgstr "Send"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "Seriel Overvågning"
+msgstr ""
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
msgstr ""
-"Seriel port ''{0}'' er allerede i brug. Prøv at slutte andre programmer "
-"der måske bruger den."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
msgstr ""
-"Serial port ''{0}'' ikke fundet. Valgte du den rigtige i Tools > "
-"Serial Port menuen?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
msgstr ""
-"Seriel port {0} ikke fundet.\n"
-"Prøv uploaden igen med en anden seriel port?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Fejl med indstillinger"
+msgstr ""
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Vis Sketch Mappen"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Vis tydeligt output under: "
+msgstr ""
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr "Sketch"
+msgstr ""
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "Sketch Forsvandt"
+msgstr ""
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "Sketch eksisterer ikke"
+msgstr ""
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr "Sketch er Read-Only"
+msgstr ""
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "Sketch har intet navn"
+msgstr ""
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "Sketch er read-only"
+msgstr ""
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
msgstr ""
-"sketchen er for stor; se http://www.arduino.cc/en/Guide/Troubleshooting#size for "
-"tips til at reducere størrelsen."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
-msgstr "Sketchbook"
+msgstr ""
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "Sketchbook mappen forsvandt"
+msgstr ""
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "Sketchbook sti:"
+msgstr ""
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
msgstr ""
-"Nogen filer er markeret \"read-only\", så du skal\n"
-"gemme sketchen på en anden sti,\n"
-"og prøve igen."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
msgstr ""
-"Nogle filer er \"read-only\", så du skal\n"
-"gemme denne sketch til en anden sti."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Desværre, der findes allerede en sketch (eller en mappe) med navnet \"{0}\"."
-
-#: Preferences.java:111
-msgid "Spanish"
msgstr ""
-#: Base.java:537
+#: Preferences.java:115
+msgid "Spanish"
+msgstr "Spansk"
+
+#: Base.java:540
msgid "Sunshine"
msgstr "Solskin"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr "Svensk"
+
+#: Preferences.java:84
msgid "System Default"
-msgstr ""
+msgstr "Standard instillinger"
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
+msgstr "Tamilsk"
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
msgstr ""
-#: debug/Compiler.java:471
-msgid "The 'BYTE' keyword is no longer supported."
-msgstr "'BYTE' er ikke længere et understøttet nøgleord."
-
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "Client klassen er omdøbt EthernetClient."
+msgstr ""
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr "Server klassen er omdøbt EthernetServer."
+msgstr ""
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "Udp klassen er blevet omdøbt EthernetUdp."
+msgstr ""
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "Fejlbesked følger, Arduino skulle køre videre uden problemer."
+msgstr ""
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
msgstr ""
-"Denne fil \"{0}\" skal være i en\n"
-"sketch mappe med navnet \"{1}\".\n"
-"Opret mappe, flyt filen, og gå videre?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
msgstr ""
-"Biblioteket \"{0}\" kan ikke bruges.\n"
-"Et biblioteks navn må kun indeholde simple bogstaver og tal\n"
-"(ASCII uden mellemrum, det må ikke starte med et tal).\n"
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
msgstr ""
-"Main filen kan ikke bruge en udvidelse.\n"
-"(Måske det er på tide for dig at gå til et\n"
-"\"real\" programmerings miljø)"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
msgstr "Navnet kan ikke starte med et punktum."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
msgstr ""
-"Den valgte sketch eksisterer ikke længere.\n"
-"Prøv at genstarte Arduino for at opdatere\n"
-"sketchbook menuen."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1444,74 +1454,56 @@ msgid ""
"To get rid of this message, remove the sketch from\n"
"{1}"
msgstr ""
-"Denne sketch \"{0}\" kan ikke bruges.\n"
-"En sketchs navn må kun indeholde simple bogstaver og tal\n"
-"(ASCII uden mellemrum, det må ikke starte med et tal).\n"
-"For at fjerne denne besked, så flyt sketchen fra\n"
-"{1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
msgstr ""
-"Sketchmappen er forsvundet.\n"
-"Prøver at gemme igen på samme sti,\n"
-"men alt andet end koden vil gå tabt."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
msgstr ""
-"Sketch navnet blev ændret fordi navnet på en sketch kun kan indeholde\n"
-"ASCII karakterer og tal (men ikke starte med et tal).\n"
-"Derudover må det også kun være 64 karakterer langt."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr "Sketchbook mappen eksisterer ikke længere.\n"
-"Arduino skifter til standard placeringen\n"
-"og laver en ny sketchbook mappe hvis nødvendigt.\n"
-"Derefter vil Arduino stoppe med at omtale\n"
-"sig selv i tredje person."
+msgstr ""
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
msgstr ""
-"Denne fil er allerede kopieret til den\n"
-"sti hvor du prøver at tilføje den.\n"
-"Jeg gør ikke mere ved den sag."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
msgstr "Tid til en pause"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
msgstr "Værktøjer"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
msgstr "Fejlfinding"
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
-msgstr ""
+msgstr "Tyrkisk"
#: ../../../processing/app/Editor.java:2507
msgid "Type board password to access its console"
@@ -1531,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1542,12 +1534,12 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Ikke håndteret fejl: {0}"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
msgstr "Fortryd"
@@ -1557,154 +1549,146 @@ msgid ""
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
msgstr ""
-"Uspecificeret platform, ved ikke hvordan det skal åbnes.\n"
-"For at kunne åbne URL'er eller mapper, tilføj en \n"
-"\"launcher=/path/to/app\" linje i preferences.txt"
#: UpdateCheck.java:111
msgid "Update"
msgstr "Opdater"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr "Opdater sketch filer til den nye udvidelse når der gemmes (.pde -> .ino)"
+msgstr ""
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "Upload"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Upload Med Programmer"
+msgstr ""
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "Upload afbrudt."
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Uploader til I/O Kort..."
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
msgstr "Uploader..."
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Brug Det Valgte For At Finde"
+msgstr ""
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr "Brug ekstern editor"
+msgstr ""
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
msgstr "Verificer"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Verificer / Kompiler"
+msgstr "Verificer / kompiler"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
msgstr "Besøg Arduino.cc"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
msgstr "Advarsel"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
-msgstr "Wire.receive() er blevet omdøbt Wire.read()."
+msgstr ""
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "Wire.send() er blevet omdøbt Wire.write()."
+msgstr ""
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "Omkreds"
+msgstr "Tekstombrydning"
#: debug/Uploader.java:213
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
msgstr ""
-"Forkert microcontroller fundet. Valgte du det rigtige kort i Tools "
-"< Board menu?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "Ja"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
msgstr "Du kan ikke snyde mig"
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "Du kan ikke have en .cpp fil med det samme navn som sketchen"
+msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-"Du kan ikke omdøbe sketchen til \"{0}\"\n"
-"fordi sketchen allerede har en .cpp fil med det navn."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-"Du kan ikke gemme sketchen som \"{0}\"\n"
-"fordi der er allerede en .cpp fil med det navn."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
msgstr ""
-"Du kan ikke gemme sketchen i en mappe\n"
-"inde i sig selv. Dette ville skabe et uendeligt loop."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr "Du glemte din sketchbook."
+msgstr ""
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr "Du har nået grænsen for auto navngivning af nye sketches\n"
-"for i dag. Hvad med at gå en tur i stedet?"
-
-#: ../../../processing/app/Base.java:2847
-msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr "ZIP filer eller biblioteker"
+
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" er ikke en gyldig udvidelse."
+msgstr ""
#: SketchCode.java:258
#, java-format
@@ -1714,119 +1698,83 @@ msgid ""
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
msgstr ""
-"\"{0}\" indeholder uigenkendelige karakterer. Hvis koden er lavet med en "
-"ældre version af Processing, skal du måske bruge Tools -> Fix Encoding & "
-"Reload for at opdatere sketchen til at bruge UTF-8 kodning. Hvis det ikke er tilfældet "
-"skal du fjerne den forkerte karakter for at fjerne denne advarsel."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
msgstr ""
-"\n"
-"Efter Arduino 0019, er Ethernet biblioteket afhængig af SPI biblioteket.\n"
-"Du lader til at bruge det eller noget andet der er afhængigt af SPI "
-"biblioteket.\n"
-"\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
msgstr ""
-"\n"
-"Efter Arduino 1.0, er 'BYTE' nøgleordet ikke længere understøttet.\n"
-"Brug venligst Serial.write() i stedet.\n"
-"\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Efter Arduino 1.0, er Client klassen i Ethernet biblioteket blevet omdøbt til "
-"EthernetClient.\n"
-"\n"
-
-#: debug/Compiler.java:478
-msgid ""
-"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"Efter Arduino 1.0, er Server klassen i Ethernet biblioteket blevet omdøbt til "
-"EthernetServer.\n"
-"\n"
-
-#: ../../../processing/app/debug/Compiler.java:451
-msgid ""
-"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
msgstr ""
-"\n"
-"Efter Arduino 1.0, er Wire.receive() funktionen blevet omdøbt til Wire.read() "
-"for bedre konsistens med andre biblioteker.\n"
-"\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-"\n"
-"Efter Arduino 1.0, er Wire.send() funktionen blevet omdøbt til Wire.write() "
-"for bedre konsistens med andre biblioteker.\n"
-"\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "kompilation"
+msgstr ""
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr "createNewFile() returnerede falskt"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
msgstr "miljø"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@@ -1842,75 +1790,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "ignorerer ugyldig font størrelse {0}"
+msgstr ""
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "navn er null"
+msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
msgstr ""
-"readBytesUntil() byte buffer er for lille til at {0} bytes op til og med "
-"char {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: intern fejl... kunne ikke finde koden"
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "serialMenu er null"
+msgstr ""
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr ""
-"den valgte seriel port {0} eksisterer ikke eller også er kortet ikke tilsluttet"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
+#: Preferences.java:391
+msgid "upload"
msgstr ""
-#: Preferences.java:375
-msgid "upload"
-msgstr "upload"
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "{0} filer tilføjet til sketchen."
+msgstr ""
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr "{0} returnerede {1}"
+msgstr ""
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr "{0} | Arduino {1}"
+msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_da_DK.properties b/app/src/processing/app/i18n/Resources_da_DK.properties
index 24f394794..1a753bf66 100644
--- a/app/src/processing/app/i18n/Resources_da_DK.properties
+++ b/app/src/processing/app/i18n/Resources_da_DK.properties
@@ -3,79 +3,79 @@
# This file is distributed under the same license as the PACKAGE package.
# Anders Bech Mellson <>, 2012.
#
-!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-30 11\:00+0100\nPO-Revision-Date\: 2012-04-01 09\:25+0100\nLast-Translator\: Anders Bech Mellson <>\nLanguage-Team\: Danish\nLanguage\: da\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 13\:40+0000\nLast-Translator\: Torben Leth Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Hvis du lukker den sidste sketch, s\u00e5 afslutter Arduino.
+#: Base.java:773
+!\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Hvis du ikke gemmer, g\u00e5r dine \u00e6ndringer tabt.
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
-A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=En fil med navn "{0}" eksisterer allerede i "{1}"
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=En mappe med navn "{0}" eksisterer allerede. Kan ikke \u00e5bne sketch.
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Der er en ny version af Arduino,\nvil du gerne bes\u00f8ge Arduino's download side?
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Der opstod et problem under indl\u00e6sning af\nfilerne brugt til at gemme konsollens output.
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
-#: Editor.java:1102
+#: Editor.java:1116
About\ Arduino=Om Arduino
-#: Editor.java:643
-Add\ File...=Tilf\u00f8j Fil...
+#: Editor.java:650
+Add\ File...=Tilf\u00f8j fil...
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
!Add\ Library...=
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Der opstod en fejl mens filens kodning blev fors\u00f8gt fikset.\nGem ikke denne sketch da den m\u00e5ske vil overskrive\nden gamle version. Gen\u00e5bn i stedet sketchen og pr\u00f8v igen.\n
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=En ukendt fejl opstod under indl\u00e6sning\nplatform-specifik kode til din maskine.
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
#: Preferences.java:85
+Arabic=Arabisk
+
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
-Archive\ Sketch=Arkiver Sketch
+!Archive\ Sketch=
#: tools/Archiver.java:109
-Archive\ sketch\ as\:=Arkiver sketch som\:
+!Archive\ sketch\ as\:=
#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=Arkivering af sketch afbrudt.
+!Archive\ sketch\ canceled.=
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arkiveringen af sketchen er blevet afbrudt fordi\nsketchen ikke kunne blive gemt korrekt.
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
#: ../../../processing/app/I18n.java:83
!Arduino\ ARM\ (32-bits)\ Boards=
@@ -83,62 +83,68 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan ikke k\u00f8re fordi den ikke kunne\nlave en mappe til at gemme dine indstillinger.
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino kan ikke k\u00f8re fordi den ikke kunne\nlave en mappe til at gemme din sketchbook.
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino kr\u00e6ver en fuld installation af JDK (ikke kun JRE)\nfor at k\u00f8re. Installer venligst JDK 1.5 eller nyere.\nMere information forefindes i reference dokumentationen.
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Er du sikker p\u00e5 du vil slette "{0}"?
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Er du sikker p\u00e5 du vil slette denne sketch?
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
#: tools/AutoFormat.java:91
-Auto\ Format=Autoformatering
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
#: tools/AutoFormat.java:931
-Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Autoformatering afbrudt\: For mange venstre kr\u00f8llede parenteser.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
#: tools/AutoFormat.java:922
-Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Autoformatering afbrudt\: For mange venstre parenteser.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
-#: tools/AutoFormat.java:928
-Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Autoformatering afbrudt\: For mange h\u00f8jre kr\u00f8llede parenteser.
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
-#: tools/AutoFormat.java:919
-Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Autoformatering afbrudt\: For mange h\u00f8jre parenteser.
-
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=Autoformatering f\u00e6rdig.
-
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=Tilknyt automatisk .ino filer med Arduino
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
#: SerialMonitor.java:110
-Autoscroll=Autoscroll
+!Autoscroll=
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
-Bad\ error\ line\:\ {0}=Grim fejl linje\: {0}
+!Bad\ error\ line\:\ {0}=
-#: Editor.java:2089
-Bad\ file\ selected=Forkert fil valgt
+#: Editor.java:2136
+!Bad\ file\ selected=
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=Kort
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -147,23 +153,29 @@ Board=Kort
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
-Both\ NL\ &\ CR=B\u00e5de NL & CR
+!Both\ NL\ &\ CR=
-#: Preferences.java:80
-Browse=Gennemse
+#: Preferences.java:81
+!Browse=
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=Build mappen forsvandt eller kunne ikke skrives til
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
-Burn\ Bootloader=Br\u00e6nd Bootloader
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Br\u00e6nder bootloader til I/O Kort (dette kan godt tage et minuts tid)...
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
#: ../../../processing/app/Base.java:368
!Can't\ open\ source\ sketch\!=
@@ -171,78 +183,90 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Br\u00e6nde
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=Afbryd
-#: Sketch.java:459
+#: Sketch.java:455
Cannot\ Rename=Kan ikke omd\u00f8be
#: SerialMonitor.java:112
-Carriage\ return=Transport retur
-
-#: Preferences.java:86
-!Catalan=
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=Tjek for opdateringer under start
+!Carriage\ return=
#: Preferences.java:87
-!Chinese\ Simplified=
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
-!Chinese\ Traditional=
+Chinese\ Simplified=Kinesisk Simpel
-#: Editor.java:514 Editor.java:1977
+#: Preferences.java:89
+Chinese\ Traditional=Kinesisk traditionel
+
+#: Editor.java:521 Editor.java:2024
Close=Luk
-#: Editor.java:1194 Editor.java:2702
-Comment/Uncomment=Kommenter/Udkommenter
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
-Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompileringsfejl, v\u00e6r venlig at sende koden til {0}
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Kompilerer sketch...
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
#: EditorConsole.java:152
-Console\ Error=Konsol Fejl
+!Console\ Error=
-#: Editor.java:1143 Editor.java:2660
-Copy=Kopier
+#: Editor.java:1157 Editor.java:2707
+Copy=Kopiere
-#: Editor.java:1163 Editor.java:2676
-Copy\ as\ HTML=Kopier som HTML
+#: Editor.java:1177 Editor.java:2723
+Copy\ as\ HTML=Kopiere som HTML
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=Kopier for Forum
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=Kopiere fra forum
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Kunne ikke tilf\u00f8je ''{0}'' til sketchen.
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=Kunne ikke kopiere til en ordentlig sti.
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=Kunne ikke oprette sketch mappen.
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
-#: Editor.java:2159
-Could\ not\ create\ the\ sketch.=Kunne ikke lave sketchen.
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=Kunne ikke slette "{0}".
+!Could\ not\ delete\ "{0}".=
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Kunne ikke slette den allerede eksisterende ''{0}'' fil.
+Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Kunne ikke slette den eksisterende "{0}" fil.
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
Could\ not\ delete\ {0}=Kunne ikke slette {0}
@@ -258,140 +282,146 @@ Could\ not\ delete\ {0}=Kunne ikke slette {0}
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=Kunne ikke \u00e5bne URL'en\n{0}
+!Could\ not\ open\ the\ URL\n{0}=
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=Kunne ikke \u00e5bne mappen\n{0}
+Could\ not\ open\ the\ folder\n{0}=Kunne ikke \u00e5bne biblioteket\n{0}
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Kunne ikke gemme sketchen igen. Du er m\u00e5ske i problemer nu,\nog det er nok p\u00e5 tide at kopiere din kode over i en anden tekst editor.
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=Kunne ikke gemme sketch igen
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Kunne ikke l\u00e6se farve tema indstillinger.\nDu skal geninstallere Processing.
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunne ikke indl\u00e6se standard indstillinger.\nDu skal geninstallere Arduino.
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
-Could\ not\ read\ preferences\ from\ {0}=Kunne ikke indl\u00e6se indstillinger fra {0}
+!Could\ not\ read\ preferences\ from\ {0}=
-#: Base.java:2196
+#: Base.java:2482
#, java-format
Could\ not\ remove\ old\ version\ of\ {0}=Kunne ikke fjerne den gamle version af {0}
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=Kunne ikke omd\u00f8be "{0}" til "{1}"
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=Kunne ikke omd\u00f8be sketchen. (0)
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=Kunne ikke omd\u00f8be sketchen. (1)
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=Kunne ikke omd\u00f8be sketchen. (2)
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
-#: Base.java:2206
+#: Base.java:2492
#, java-format
Could\ not\ replace\ {0}=Kunne ikke erstatte {0}
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=Kunne ikke arkivere sketch
+!Couldn't\ archive\ sketch=
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=Kunne ikke afg\u00f8re programmet st\u00f8rrelse\: {0}
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
-#: Sketch.java:620
-Couldn't\ do\ it=Kunne ikke g\u00f8re det
+#: Sketch.java:616
+!Couldn't\ do\ it=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
Cut=Klip
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
-!Danish=
+#: Preferences.java:90
+Danish=Dansk
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Formindsk Indryk
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
Delete=Slet
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Enhed svarer ikke, tjek at den rigtige seriel port er valgt eller RESET kortet lige f\u00f8r du eksporterer
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=Ignorer alle \u00e6ndringer og genindl\u00e6s sketch?
+!Discard\ all\ changes\ and\ reload\ sketch?=
-#: Editor.java:2017
-Don't\ Save=Gem Ikke
+#: Editor.java:2064
+Don't\ Save=Gem ikke
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
Done\ Saving.=F\u00e6rdig med at gemme.
-#: Editor.java:2463
-Done\ burning\ bootloader.=F\u00e6rdig med at br\u00e6nde til bootloader.
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
Done\ compiling.=F\u00e6rdig med at kompilere.
-#: Editor.java:2517
-Done\ printing.=Udskrift f\u00e6rdig.
+#: Editor.java:2564
+!Done\ printing.=
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=Upload f\u00e6rdig.
-
-#: Preferences.java:90
-!Dutch=
-
-#: Editor.java:1116
-Edit=Rediger
-
-#: Preferences.java:354
-Editor\ font\ size\:\ =Editor font st\u00f8rrelse\:
-
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
#: Preferences.java:91
-!English=
+Dutch=Hollandsk
-#: Editor.java:1049
-Environment=Milj\u00f8
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Editor.java:1130
+Edit=Rediger
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+English=Engelsk
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=Fejl
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
Error\ adding\ file=Fejl ved tilf\u00f8jelse af fil
-#: debug/Compiler.java:426
-Error\ compiling.=Fejl ved kompilering.
+#: debug/Compiler.java:369
+Error\ compiling.=Fejl i kompilering.
-#: Base.java:1433
-Error\ getting\ the\ Arduino\ data\ folder.=Fejl under indl\u00e6sning af Arduino data mappen.
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
-#: Serial.java:567
+#: Serial.java:593
#, java-format
-Error\ inside\ Serial.{0}()=Fejl i Serial.{0}()
+!Error\ inside\ Serial.{0}()=
#: ../../../processing/app/Base.java:1232
!Error\ loading\ libraries=
@@ -402,264 +432,274 @@ Error\ inside\ Serial.{0}()=Fejl i Serial.{0}()
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=Fejl ved \u00e5bning af seriel port ''{0}''.
+!Error\ opening\ serial\ port\ ''{0}''.=
-#: Preferences.java:261
-Error\ reading\ preferences=Fejl ved l\u00e6sning af indstillinger
+#: Preferences.java:277
+!Error\ reading\ preferences=
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Fejl ved indl\u00e6sning af indstillingsfilen. Slet venligst (eller flyt)\n{0} og genstart Arduino.
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=Fejl under br\u00e6nding til bootloader.
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
#: ../../../processing/app/Editor.java:2555
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
#: SketchCode.java:83
#, java-format
-Error\ while\ loading\ code\ {0}=Fejl ved l\u00e6sning af kode {0}
+!Error\ while\ loading\ code\ {0}=
-#: Editor.java:2520
-Error\ while\ printing.=Fejl under udskrift.
+#: Editor.java:2567
+!Error\ while\ printing.=
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
Examples=Eksempler
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport afbrudt, \u00e6ndringer skal gemmes f\u00f8rst.
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
-#: Base.java:1814
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
+#: Editor.java:491
File=Fil
#: Preferences.java:94
-!Filipino=
+Filipino=Filipinsk
#: FindReplace.java:124 FindReplace.java:127
-Find=Find
+Find=S\u00f8g
-#: Editor.java:1235
-Find\ Next=Find N\u00e6ste
+#: Editor.java:1249
+Find\ Next=Find n\u00e6ste
-#: Editor.java:1245
-Find\ Previous=Find Forrige
+#: Editor.java:1259
+Find\ Previous=Find forrige
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=Find i Reference
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
-#: Editor.java:1220
-Find...=Find...
+#: Editor.java:1234
+Find...=S\u00f8g...
#: FindReplace.java:80
Find\:=Find\:
+#: ../../../processing/app/Preferences.java:147
+Finnish=Finsk
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=Fiks kodning & genindl\u00e6s?
+!Fix\ Encoding\ &\ Reload=
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
-!French=
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Ofte Stillede Sp\u00f8rgsm\u00e5l
-
#: Preferences.java:95
+French=Fransk
+
+#: Editor.java:1097
+Frequently\ Asked\ Questions=Ofte stillede sp\u00f8rgsm\u00e5l
+
+#: Preferences.java:96
!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
-!German=
-
-#: Editor.java:1041
-Getting\ Started=Kom Godt I Gang
-
#: Preferences.java:97
-!Greek=
+German=Tysk
-#: Base.java:1799
+#: Editor.java:1054
+Getting\ Started=Kom igang
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+Greek=Gr\u00e6sk
+
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
+#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
+#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
+#: Editor.java:1015
Help=Hj\u00e6lp
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Hvad med at gemme sketchen f\u00f8rst \ninden du fors\u00f8ger at omd\u00f8be den?
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=Er du Jorge Luis Borges?
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
-#: Preferences.java:98
+#: Preferences.java:100
!Hungarian=
#: FindReplace.java:96
-Ignore\ Case=Ignorer store/sm\u00e5 bogstaver
+!Ignore\ Case=
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Ignorerer illegalt biblioteksnavn
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
-#: Base.java:1132
-Ignoring\ sketch\ with\ bad\ name=Ignorerer sketch med illegalt navn
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
-#: Editor.java:629
-Import\ Library...=Importer Bibliotek...
+#: Editor.java:636
+!Import\ Library...=
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Forh\u00f8j Indryk
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
-#: Preferences.java:99
-!Indonesian=
+#: Preferences.java:101
+Indonesian=Indonesisk
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
-!Italian=
-
-#: Preferences.java:101
-!Japanese=
-
#: Preferences.java:102
-!Korean=
+Italian=Italiensk
#: Preferences.java:103
-!Latvian=
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+Japanese=Japansk
#: Preferences.java:104
+Korean=Koreansk
+
+#: Preferences.java:105
+Latvian=Lettisk
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
+#: Base.java:2112
Message=Besked
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Mangler */ fra afslutningen af en /* kommentar */
-
-#: Preferences.java:433
-More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Flere indstillinger kan redigeres direkte i denne fil
-
-#: Editor.java:2109
+#: Editor.java:2156
Moving=Flytter
-#: Sketch.java:286
-Name\ for\ new\ file\:=Navn til ny fil\:
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
New=Ny
#: EditorToolbar.java:46
-New\ Editor\ Window=Nyt Editor Vindue
+!New\ Editor\ Window=
#: EditorHeader.java:292
-New\ Tab=Ny Tab
+!New\ Tab=
#: SerialMonitor.java:112
-Newline=Ny linje
+!Newline=
#: EditorHeader.java:340
-Next\ Tab=N\u00e6ste Tab
+!Next\ Tab=
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=Nej
-#: debug/Compiler.java:79
-No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Der er ikke valgt noget kort, v\u00e6lg et i menuen Tools > Board menu.
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
-No\ changes\ necessary\ for\ Auto\ Format.=Ingen \u00e6ndring n\u00f8dvendig for autoformatering.
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=Ingen filer blev tilf\u00f8jet til sketchen.
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
#: Platform.java:167
-No\ launcher\ available=Ingen \u00e5bner tilg\u00e6ngelig
+!No\ launcher\ available=
#: SerialMonitor.java:112
-No\ line\ ending=Ingen slutning p\u00e5 linjen
+!No\ line\ ending=
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Seri\u00f8st, tid til noget frisk luft til dig.
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=Ingen reference tilg\u00e6ngelig for "{0}"
+!No\ reference\ available\ for\ "{0}"=
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Ikke livstruende fejl under indstilling af udseende og fornemmelse.
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-Nope=Niks
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+Nope=Nej
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
@@ -667,81 +707,87 @@ Nope=Niks
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=OK
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=Ok
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=En fil tilf\u00f8jet til sketchen.
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
#: EditorToolbar.java:41
Open=\u00c5ben
-#: Editor.java:2641
+#: Editor.java:2688
Open\ URL=\u00c5ben URL
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=\u00c5ben en Arduino sketch...
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
#: EditorToolbar.java:46
-Open\ in\ Another\ Window=\u00c5ben i et Andet Vindue
+Open\ in\ Another\ Window=\u00c5ben i nyt vindue
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=\u00c5ben...
-#: Editor.java:556
-Page\ Setup=Sideops\u00e6tning
+#: Editor.java:563
+Page\ Setup=Side ops\u00e6tning
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
-!Password\:=
+Password\:=Adgangskode\:
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
Paste=Inds\u00e6t
-#: Preferences.java:105
-!Persian=
+#: Preferences.java:109
+Persian=Persisk
-#: debug/Compiler.java:465
-Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Importer venligst SPI biblioteket fra Sketch > Import Library menuen
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
-#: Base.java:232
+#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=Installer venligst JDK 1.5 eller nyere
-#: Preferences.java:106
-!Polish=
+#: Preferences.java:110
+Polish=Polsk
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
-Preferences=Indstillinger
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+Preferences=Egenskaber
#: FindReplace.java:123 FindReplace.java:128
Previous=Forrige
#: EditorHeader.java:326
-Previous\ Tab=Forrige Tab
+!Previous\ Tab=
-#: Editor.java:564
+#: Editor.java:571
Print=Print
-#: Editor.java:2524
-Printing\ canceled.=Udskrift annulleret
+#: Editor.java:2571
+Printing\ canceled.=Print annulleret
-#: Editor.java:2500
-Printing...=Udskriver...
+#: Editor.java:2547
+Printing...=Printer...
-#: Base.java:1671
-Problem\ Opening\ Folder=Problem Med At \u00c5bne Mappe
+#: Base.java:1957
+Problem\ Opening\ Folder=Problem med at \u00e5bne biblotek
-#: Base.java:1647
-Problem\ Opening\ URL=Problem Med At \u00c5bne URL
+#: Base.java:1933
+Problem\ Opening\ URL=Problem med at \u00e5bne URL
-#: Base.java:220
-Problem\ Setting\ the\ Platform=Problem med at indstille platformen
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
!Problem\ accessing\ board\ folder\ /www/sd=
@@ -749,99 +795,99 @@ Problem\ Setting\ the\ Platform=Problem med at indstille platformen
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
-Problem\ getting\ data\ folder=Problem med at hente data mappe
+#: Base.java:1673
+Problem\ getting\ data\ folder=Problem med at \u00e5bne data bibloteket
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=Problem med at flytte {0} til build mappen
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
#: debug/Uploader.java:209
-Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem under upload til kort. Se http\://www.arduino.cc/en/Guide/Troubleshooting\#upload for forslag.
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=Problem med at omd\u00f8be
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+Problem\ with\ rename=Problem med at omd\u00f8de
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing kan kun \u00e5bne sine egne sketches\nog andre filer der slutter med .ino eller .pde.
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
-Programmer=Programmer
+#: Editor.java:704
+!Programmer=
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=Afslut
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=Omg\u00f8r
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+Redo=Annuller fortryd
-#: Editor.java:1065
-Reference=Reference
+#: Editor.java:1078
+!Reference=
#: EditorHeader.java:300
Rename=Omd\u00f8b
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=Erstat
#: FindReplace.java:122 FindReplace.java:129
-Replace\ &\ Find=Erstat & Find
+!Replace\ &\ Find=
#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=Erstat Alle
+Replace\ All=Erstat alle
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
Replace\ the\ existing\ version\ of\ {0}?=Erstat den eksisterende version af {0}?
#: FindReplace.java:81
Replace\ with\:=Erstat med\:
-#: Preferences.java:109
-!Romanian=
+#: Preferences.java:113
+Romanian=Rom\u00e6nsk
-#: Preferences.java:110
-!Russian=
+#: Preferences.java:114
+Russian=Russisk
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=Gem
-#: Editor.java:530
-Save\ As...=Gem Som...
+#: Editor.java:537
+Save\ As...=Gem som...
-#: Editor.java:2270
-Save\ Canceled.=Gem Afbrudt.
+#: Editor.java:2317
+Save\ Canceled.=Gem annulleret
-#: Editor.java:2420
-Save\ changes\ before\ export?=Gem \u00e6ndringer f\u00f8r eksport?
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Gem \u00e6ndringer til "{0}"?
+Save\ changes\ to\ "{0}"?\ \ =Gem \u00e6ndringer til "{0}"?
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Gem sketch mappe som...
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
Saving...=Gemmer...
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e6lg (eller lav ny) mappe til sketches...
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
-#: Editor.java:1184 Editor.java:2692
-Select\ All=V\u00e6lg Alt
+#: Editor.java:1198 Editor.java:2739
+Select\ All=V\u00e6lg alt
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=V\u00e6lg et billede eller en anden data fil til at kopiere ind i din sketch
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=V\u00e6lg ny sketchbook sti
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
#: ../../../processing/app/debug/Compiler.java:146
!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
@@ -849,151 +895,161 @@ Select\ new\ sketchbook\ location=V\u00e6lg ny sketchbook sti
#: SerialMonitor.java:93
Send=Send
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Seriel Overv\u00e5gning
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
-#: Serial.java:147
+#: Serial.java:174
#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Seriel port ''{0}'' er allerede i brug. Pr\u00f8v at slutte andre programmer der m\u00e5ske bruger den.
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serial port ''{0}'' ikke fundet. Valgte du den rigtige i Tools > Serial Port menuen?
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seriel port {0} ikke fundet.\nPr\u00f8v uploaden igen med en anden seriel port?
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
-#: Base.java:1440
-Settings\ issues=Fejl med indstillinger
+#: Base.java:1681
+!Settings\ issues=
-#: Editor.java:634
-Show\ Sketch\ Folder=Vis Sketch Mappen
+#: Editor.java:641
+!Show\ Sketch\ Folder=
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =Vis tydeligt output under\:
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
-#: Editor.java:600
-Sketch=Sketch
+#: Editor.java:607
+!Sketch=
-#: Sketch.java:1796
-Sketch\ Disappeared=Sketch Forsvandt
+#: Sketch.java:1754
+!Sketch\ Disappeared=
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=Sketch eksisterer ikke
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=Sketch er Read-Only
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
-#: Sketch.java:298
-Sketch\ is\ Untitled=Sketch har intet navn
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
-#: Sketch.java:724
-Sketch\ is\ read-only=Sketch er read-only
+#: Sketch.java:720
+!Sketch\ is\ read-only=
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=sketchen er for stor; se http\://www.arduino.cc/en/Guide/Troubleshooting\#size for tips til at reducere st\u00f8rrelsen.
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
-#: Editor.java:503
-Sketchbook=Sketchbook
-
-#: Base.java:257
-Sketchbook\ folder\ disappeared=Sketchbook mappen forsvandt
-
-#: Preferences.java:299
-Sketchbook\ location\:=Sketchbook sti\:
-
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Nogen filer er markeret "read-only", s\u00e5 du skal\ngemme sketchen p\u00e5 en anden sti,\nog pr\u00f8ve igen.
-
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Nogle filer er "read-only", s\u00e5 du skal\ngemme denne sketch til en anden sti.
-
-#: Sketch.java:461
+#: ../../../processing/app/Sketch.java:1639
#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Desv\u00e6rre, der findes allerede en sketch (eller en mappe) med navnet "{0}".
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
-#: Preferences.java:111
-!Spanish=
-
-#: Base.java:537
-Sunshine=Solskin
-
-#: Preferences.java:83
-!System\ Default=
-
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
-
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' er ikke l\u00e6ngere et underst\u00f8ttet n\u00f8gleord.
-
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client klassen er omd\u00f8bt EthernetClient.
-
-#: debug/Compiler.java:477
-The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server klassen er omd\u00f8bt EthernetServer.
-
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp klassen er blevet omd\u00f8bt EthernetUdp.
-
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Fejlbesked f\u00f8lger, Arduino skulle k\u00f8re videre uden problemer.
-
-#: Editor.java:2100
-#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Denne fil "{0}" skal v\u00e6re i en\nsketch mappe med navnet "{1}".\nOpret mappe, flyt filen, og g\u00e5 videre?
-
-#: Base.java:1202
-#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Biblioteket "{0}" kan ikke bruges.\nEt biblioteks navn m\u00e5 kun indeholde simple bogstaver og tal\n(ASCII uden mellemrum, det m\u00e5 ikke starte med et tal).\n
-
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Main filen kan ikke bruge en udvidelse.\n(M\u00e5ske det er p\u00e5 tide for dig at g\u00e5 til et\n"real" programmerings milj\u00f8)
-
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=Navnet kan ikke starte med et punktum.
-
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Den valgte sketch eksisterer ikke l\u00e6ngere.\nPr\u00f8v at genstarte Arduino for at opdatere\nsketchbook menuen.
-
-#: Base.java:1125
-#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Denne sketch "{0}" kan ikke bruges.\nEn sketchs navn m\u00e5 kun indeholde simple bogstaver og tal\n(ASCII uden mellemrum, det m\u00e5 ikke starte med et tal).\nFor at fjerne denne besked, s\u00e5 flyt sketchen fra\n{1}
-
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Sketchmappen er forsvundet.\nPr\u00f8ver at gemme igen p\u00e5 samme sti,\nmen alt andet end koden vil g\u00e5 tabt.
-
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Sketch navnet blev \u00e6ndret fordi navnet p\u00e5 en sketch kun kan indeholde\nASCII karakterer og tal (men ikke starte med et tal).\nDerudover m\u00e5 det ogs\u00e5 kun v\u00e6re 64 karakterer langt.
+#: Editor.java:510
+!Sketchbook=
#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Sketchbook mappen eksisterer ikke l\u00e6ngere.\nArduino skifter til standard placeringen\nog laver en ny sketchbook mappe hvis n\u00f8dvendigt.\nDerefter vil Arduino stoppe med at omtale\nsig selv i tredje person.
+!Sketchbook\ folder\ disappeared=
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Denne fil er allerede kopieret til den\nsti hvor du pr\u00f8ver at tilf\u00f8je den.\nJeg g\u00f8r ikke mere ved den sag.
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+Spanish=Spansk
+
+#: Base.java:540
+Sunshine=Solskin
+
+#: ../../../processing/app/Preferences.java:153
+Swedish=Svensk
+
+#: Preferences.java:84
+System\ Default=Standard instillinger
+
+#: Preferences.java:116
+Tamil=Tamilsk
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+The\ name\ cannot\ start\ with\ a\ period.=Navnet kan ikke starte med et punktum.
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
+#: Base.java:535
Time\ for\ a\ Break=Tid til en pause
-#: Editor.java:656
+#: Editor.java:663
Tools=V\u00e6rkt\u00f8jer
-#: Editor.java:1057
+#: Editor.java:1070
Troubleshooting=Fejlfinding
#: ../../../processing/app/Preferences.java:117
-!Turkish=
+Turkish=Tyrkisk
#: ../../../processing/app/Editor.java:2507
!Type\ board\ password\ to\ access\ its\ console=
@@ -1009,7 +1065,7 @@ Troubleshooting=Fejlfinding
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1017,155 +1073,157 @@ Troubleshooting=Fejlfinding
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=Ikke h\u00e5ndteret fejl\: {0}
+!Uncaught\ exception\ type\:\ {0}=
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
Undo=Fortryd
#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Uspecificeret platform, ved ikke hvordan det skal \u00e5bnes.\nFor at kunne \u00e5bne URL'er eller mapper, tilf\u00f8j en \n"launcher\=/path/to/app" linje i preferences.txt
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
#: UpdateCheck.java:111
Update=Opdater
-#: Preferences.java:412
-Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Opdater sketch filer til den nye udvidelse n\u00e5r der gemmes (.pde -> .ino)
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=Upload
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Upload Med Programmer
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=Upload afbrudt.
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=Uploader til I/O Kort...
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
-#: Sketch.java:1661
+#: Sketch.java:1622
Uploading...=Uploader...
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Brug Det Valgte For At Finde
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
-#: Preferences.java:393
-Use\ external\ editor=Brug ekstern editor
+#: Preferences.java:409
+!Use\ external\ editor=
#: EditorToolbar.java:41 EditorToolbar.java:46
Verify=Verificer
-#: Editor.java:602
-Verify\ /\ Compile=Verificer / Kompiler
+#: Editor.java:609
+Verify\ /\ Compile=Verificer / kompiler
-#: Preferences.java:384
+#: Preferences.java:400
!Verify\ code\ after\ upload=
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
Visit\ Arduino.cc=Bes\u00f8g Arduino.cc
-#: Base.java:1842
+#: Base.java:2128
Warning=Advarsel
-#: debug/Compiler.java:501
-Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() er blevet omd\u00f8bt Wire.read().
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
-#: debug/Compiler.java:495
-Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() er blevet omd\u00f8bt Wire.write().
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
#: FindReplace.java:105
-Wrap\ Around=Omkreds
+Wrap\ Around=Tekstombrydning
#: debug/Uploader.java:213
-Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Forkert microcontroller fundet. Valgte du det rigtige kort i Tools < Board menu?
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=Ja
-#: Sketch.java:1078
+#: Sketch.java:1074
You\ can't\ fool\ me=Du kan ikke snyde mig
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Du kan ikke have en .cpp fil med det samme navn som sketchen
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan ikke omd\u00f8be sketchen til "{0}"\nfordi sketchen allerede har en .cpp fil med det navn.
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan ikke gemme sketchen som "{0}"\nfordi der er allerede en .cpp fil med det navn.
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Du kan ikke gemme sketchen i en mappe\ninde i sig selv. Dette ville skabe et uendeligt loop.
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
-#: Base.java:1602
-You\ forgot\ your\ sketchbook=Du glemte din sketchbook.
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Du har n\u00e5et gr\u00e6nsen for auto navngivning af nye sketches\nfor i dag. Hvad med at g\u00e5 en tur i stedet?
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
-#: ../../../processing/app/Base.java:2847
-!ZIP\ files\ or\ folders=
+#: Base.java:2638
+ZIP\ files\ or\ folders=ZIP filer eller biblioteker
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" er ikke en gyldig udvidelse.
+!".{0}"\ is\ not\ a\ valid\ extension.=
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" indeholder uigenkendelige karakterer. Hvis koden er lavet med en \u00e6ldre version af Processing, skal du m\u00e5ske bruge Tools -> Fix Encoding & Reload for at opdatere sketchen til at bruge UTF-8 kodning. Hvis det ikke er tilf\u00e6ldet skal du fjerne den forkerte karakter for at fjerne denne advarsel.
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
-#: debug/Compiler.java:466
-\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nEfter Arduino 0019, er Ethernet biblioteket afh\u00e6ngig af SPI biblioteket.\nDu lader til at bruge det eller noget andet der er afh\u00e6ngigt af SPI biblioteket.\n\n
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nEfter Arduino 1.0, er 'BYTE' n\u00f8gleordet ikke l\u00e6ngere underst\u00f8ttet.\nBrug venligst Serial.write() i stedet.\n\n
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nEfter Arduino 1.0, er Client klassen i Ethernet biblioteket blevet omd\u00f8bt til EthernetClient.\n\n
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nEfter Arduino 1.0, er Server klassen i Ethernet biblioteket blevet omd\u00f8bt til EthernetServer.\n\n
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nEfter Arduino 1.0, er Wire.receive() funktionen blevet omd\u00f8bt til Wire.read() for bedre konsistens med andre biblioteker.\n\n
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nEfter Arduino 1.0, er Wire.send() funktionen blevet omd\u00f8bt til Wire.write() for bedre konsistens med andre biblioteker.\n\n
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
!baud=
-#: Preferences.java:373
-compilation\ =kompilation
+#: Preferences.java:389
+!compilation\ =
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
-createNewFile()\ returned\ false=createNewFile() returnerede falskt
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
+#: Base.java:2090
environment=milj\u00f8
-#: Editor.java:1094
+#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
@@ -1177,54 +1235,51 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=ignorerer ugyldig font st\u00f8rrelse {0}
+!ignoring\ invalid\ font\ size\ {0}=
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
-name\ is\ null=navn er null
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer er for lille til at {0} bytes op til og med char {1}
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: intern fejl... kunne ikke finde koden
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
-#: Editor.java:923
-serialMenu\ is\ null=serialMenu er null
+#: Editor.java:932
+!serialMenu\ is\ null=
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=den valgte seriel port {0} eksisterer ikke eller ogs\u00e5 er kortet ikke tilsluttet
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
+#: Preferences.java:391
+!upload=
-#: Preferences.java:375
-upload=upload
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.={0} filer tilf\u00f8jet til sketchen.
+!{0}\ files\ added\ to\ the\ sketch.=
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
-{0}\ returned\ {1}={0} returnerede {1}
+!{0}\ returned\ {1}=
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
-{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+!{0}\ |\ Arduino\ {1}=
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
-{0}.html={0}.html
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_de_DE.po b/app/src/processing/app/i18n/Resources_de_DE.po
index eb8504b58..58a3ca9ee 100644
--- a/app/src/processing/app/i18n/Resources_de_DE.po
+++ b/app/src/processing/app/i18n/Resources_de_DE.po
@@ -9,7 +9,7 @@ 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: 2012-11-21 17:25+0000\n"
+"PO-Revision-Date: 2013-09-10 12:21+0000\n"
"Last-Translator: vis7mac Closing the last open sketch will quit Arduino."
-msgstr " Το κλείσιμο του τελευταίου σχεδίου θα κλείσει το Arduino."
+msgstr " Κλείνοντας το τελευταίο σχέδιο το Arduino θα τερματιστεί."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr " Αν δεν το αποθηκεύσετε, όλες οι αλλαγές σας θα χαθούν."
+msgstr ""
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "Ένα αρχείο με όνομα \"{0}\" υπάρχει ήδη στο \"{1}\""
+msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr "Υπάρχει ήδη φάκελος με όνομα \"{0}\". Αδύνατο το άνοιγμα του σχεδίου."
+msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
-msgstr ""
+msgstr "Η Βιβλιοθήκη με το όνομα {0} υπάρχει"
#: UpdateCheck.java:103
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr "Μια νέα έκδοση του Arduino είναι διαθέσιμη,\nθα θέλατε να επισκεφθείτε την σελίδα κατεβάσματος του Arduino;"
+msgstr ""
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr "Προέκυψε κάποιο πρόβλημα κατά το άνοιγμα των αρχείων που\nχρησιμοποιούνται για την αποθήκευση της εξόδου της κονσόλας."
-
-#: Editor.java:1102
-msgid "About Arduino"
-msgstr "Σχετικά με το Arduino"
-
-#: Editor.java:643
-msgid "Add File..."
-msgstr "Εισαγωγή Αρχείου..."
-
-#: ../../../processing/app/Base.java:1102
-msgid "Add Library..."
msgstr ""
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr ""
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Προσθήκη βιβλιοθήκης"
+
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr "Προέκυψε κάποιο σφάλμα κατά την διόρθωση της κωδικοποίησης.\nΜην προσπαθήσετε να αποθηκεύσετε αυτό το σχέδιο, καθώς μπορεί να αντικαταστήσετε\nτην παλιά έκδοση. Χρησιμοποιήστε την Άνοιγμα για να ξανα-ανοίξετε το σχέδιο και να ξαναπροσπαθήσετε.\n"
+msgstr ""
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "Ένα άγνωστο σφάλμα συνέβη κατά την φόρτωση\nκώδικα συγκεκριμένης πλατφόρμας στο μηχάνημα σας."
-
-#: Preferences.java:84
-msgid "Arabic"
-msgstr ""
+msgstr "Προκλήθηκε απροσδιόριστο λάθος, κατά τη φόρτωση του συγκεκριμένου κώδικα για την μηχανή σας"
#: Preferences.java:85
+msgid "Arabic"
+msgstr "Αραβικά"
+
+#: Preferences.java:86
msgid "Aragonese"
-msgstr ""
+msgstr "Αραγονίας"
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Αρχειοθέτηση Σχεδίου"
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Αρχειοθέτηση σχεδίου ως:"
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Ακύρωση αρχειοθέτησης σχεδίου."
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr "Η αρχειοθέτηση του σχεδίου ακυρώθηκε γιατί το σχέδιο δεν μπορούσε να αποθηκευθεί σωστά."
+msgstr ""
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -139,122 +139,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr "Το Arduino δεν μπορεί να τρέξει επειδή δεν μπορούσε να\nδημιουργήσει έναν φάκελο για την αποθήκευση των ρυθμίσεων σας."
+msgstr "Το Arduino δεν εκτελείται, διότι δεν μπορεί\nνα φτιάξει ένα φάκελο να αποθηκεύσει τις ρυθμίσεις σας."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr "Το Arduino δεν μπορεί να τρέξει επειδή δεν μπορούσε να\nδημιουργήσει έναν φάκελο για την αποθήκευση των σχεδίων σας."
+msgstr "Το Arduino δεν εκτελείται διότι δεν μπορεί\nνα δημιουργήσει φάκελο να αποθήκευσης του Sketchbook."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr "Το Arduino χρειάζεται ολόκληρο το JDK (όχι μόνο ένα JRE)\nγια να τρέξει. Παρακαλούμε εγκαταστήστε το JDK 1.5 ή αργότερο.\nΠερισσότερες πληροφορίες μπορούν να βρεθούν στις πληροφορίες."
+msgstr "Το Arduino απαιτεί πλήρες JDK (όχι μόνο JRE), για να εκτελεστεί.\nΕγκαταστήστε JDK 1.5 ή μεταγενέστερο.\nΠερισσότερες πληροφορίες θα βρείτε στο εγχειρίδιο."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το \"{0}\";"
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το σχέδιο;"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Αυτόματη Μορφοποίηση"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr "Ακύρωση Αυτόματης Μορφοποίησης: Πάρα πολλές αριστερές αγκύλες."
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr "Ακύρωση Αυτόματης Μορφοποίησης: Πάρα πολλές αριστερές παρενθέσεις."
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr "Ακύρωση Αυτόματης Μορφοποίησης: Πάρα πολλές δεξιές αγκύλες."
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr "Ακύρωση Αυτόματης Μορφοποίησης: Πάρα πολλές δεξιές παρενθέσεις."
+msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "Τέλος Αυτόματης Μορφοποίησης"
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Αυτόματη σύνδεση των αρχείων .ino με το Arduino"
+msgstr ""
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Αυτόματο scroll"
-
-#: Editor.java:2572
-#, java-format
-msgid "Bad error line: {0}"
-msgstr "Λανθασμένη γραμμή σφάλματος: {0}"
-
-#: Editor.java:2089
-msgid "Bad file selected"
-msgstr "Επιλέχθηκε Χαλασμένο αρχείο"
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
msgstr ""
-#: Editor.java:682
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Πλακέτα"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "Νέα γραμμή και Επιστροφή δρομέα, NL & CR"
+msgstr ""
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Περιήγηση"
+msgstr "Αναζήτηση"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "Ο φάκελος δημιουργίας εξαφανίστηκε ή δεν μπορούσε να γραφτεί"
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "Γράψιμο Bootloader"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Εγγραφή bootloader στην πλακέτα I/O (αυτό μπορεί να κάνει ένα λεπτό)..."
+msgstr ""
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -264,103 +280,119 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "Ακύρωση"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr "Αδύνατη η Μετονομασία"
+msgstr ""
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Επιστροφή δρομέα"
+msgstr ""
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr "Καταλανικά"
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
-msgstr "Έλεγχος ενημερώσεων στην εκκίνηση"
-
-#: Preferences.java:87
-msgid "Chinese Simplified"
-msgstr "Απλοποιημένα Κινέζικα"
-
-#: Preferences.java:88
-msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr "Απλά Κινέζικα"
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr "Παραδοσιακά Κινέζικα"
+
+#: Editor.java:521 Editor.java:2024
msgid "Close"
-msgstr "Κλείσιμο"
+msgstr ""
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "Σχολιασμός/Αποσχολιασμός"
+msgstr ""
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Σφάλμα μεταγλωττιστή, παρακαλούμε στείλτε μας τον κώδικα στο {0}"
+msgstr ""
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Μεταγλώτιση σχεδίου..."
+msgstr ""
#: EditorConsole.java:152
msgid "Console Error"
-msgstr "Σφάλμα Κονσόλας"
+msgstr ""
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
-msgstr "Αντιγραφή"
+msgstr ""
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "Αντιγραφή ως HTML"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Αντιγραφή για το Forum"
+msgstr ""
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "Αδύνατη η προσθήκη του \"{0}\" στο σχέδιο."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "Δεν ήταν δυνατή η αντιγραφή σε μια σωστή τοποθεσία."
+msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "Αδύνατη η δημιουργία φακέλου σχεδίων."
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr "Δεν ήταν δυνατή η δημιουργία του σχεδίου."
+msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Αδύνατη η διαγραφή του \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Αδύνατη η διαγραφή του υπάρχοντος αρχείου \"{0}\"."
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "Αδύνατη η διαγραφή του {0}"
+msgstr "Δεν μπορεί να διαγραφεί το {0}"
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -377,87 +409,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr "Δεν ήταν δυνατό το άνοιγμα του URL\n{0}"
+msgstr "Δεν μπορεί να ανοιχθεί η ιστοσελίδα\n{0} "
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr "Δεν ήταν δυνατό το άνουγμα του φακέλου\n{0}"
+msgstr "Πρόβλημα ανοίγματος του φακέλου\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr "Αδύνατη η σωστή επανα-αποθήκευση του σχεδίου. Μπορεί να έχετε πρόβλημα, και ίσως\nείναι καιρός να αντιγράψετε τον κώδικα σας σε εναν άλλο επεξεργαστή κειμένου."
+msgstr ""
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "Αδύνατη η επανα-αποθήκευση του σχεδίου"
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr "Αδύνατη η ανάγνωση των ρυθμίσεων χρώματος του θέματος.\nΘα χρειαστεί να επανεγκαταστήστετε την Processing."
+msgstr ""
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr "Αδύνατη η ανάγνωση προεπιλεγμένων ρυθμίσεων.\nΘα χρειαστεί να επανεγκαταστήσετε το Arduino."
+msgstr "Δεν μπορεί να διαβάσει τις προεπιλεγμένες ρυθμίσεις.\nΠρέπει να εγκατασταθεί ξανά το Arduino."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "Αδύνατη η ανάγνωση των επιλογών από το {0}"
+msgstr "Δεν μπορεί να διαβάσει τις προτιμήσεις από το {0}"
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "Αδύνατη η αφαίρεση της παλιάς έκδοσης του {0}"
+msgstr "Δεν μπορεί να διαγραφεί η παλιά εκδοση του {0}"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "Αδύνατη η μετονομασία του \"{0}\" σε \"{1}\""
+msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "Αδύνατη η μετονομασία του σχεδίου. (0)"
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Αδύνατη η μετονομασία του σχεδίου. (1)"
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Αδύνατη η μετονομασία του σχεδίου. (2)"
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr "Αδύνατη η αφαίρεση του {0}"
+msgstr "Δεν μπορεί να αντικατασταθεί το {0}"
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Αδύνατη η αρχειοθέτηση σχεδίου"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Αδύνατη η μέτρηση του μεγέθους προγράμματος: {0}"
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "Αδύνατον!"
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -468,106 +500,114 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
-msgstr "Αποκοπή"
+msgstr ""
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
msgstr "Δανέζικα"
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Μείωση Επιπέδου Εισαγωγής"
+msgstr ""
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr "Διαγραφή"
+msgstr ""
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr "Η συσκευή δεν ανταποκρίνεται, ελέξτε ότι έχει επιλεχθεί η σωστή σειριακή θύρα, ή ΕΠΑΝΕΚΙΝΗΣΤΕ την πλακέτα σας αμέσως πριν την εξαγωγή"
+msgstr ""
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Ακύρωση αλλαγών και επαναφόρτωση του σχεδίου;"
+msgstr ""
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "Όχι Αποθήκευση"
+msgstr ""
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
-msgstr "Αποθήκευση Επιτυχής."
+msgstr ""
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "Εγγραφή bootloader επιτυχής."
+msgstr ""
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
-msgstr "Μεταγλώτιση επιτυχής."
+msgstr ""
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
-msgstr "Εκτύπωση επιτυχής"
+msgstr ""
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
-msgstr "Φόρτωση επιτυχής."
-
-#: Preferences.java:90
-msgid "Dutch"
-msgstr "Ολλανδικά"
-
-#: Editor.java:1116
-msgid "Edit"
-msgstr "Επεξεργασία"
-
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr "Μέγεθος γραμματοσειράς επεξεργαστή κειμένου: "
-
-#: Preferences.java:337
-msgid "Editor language: "
msgstr ""
#: Preferences.java:91
+msgid "Dutch"
+msgstr "Ολλανδικά"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr "Διορθωτής μεγέθους γραμματοσειράς:"
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr "Διορθωτής Γλώσσας:"
+
+#: Preferences.java:92
msgid "English"
msgstr "Αγγλικά"
-#: Editor.java:1049
-msgid "Environment"
-msgstr "Περιβάλλον"
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Editor.java:1062
+msgid "Environment"
+msgstr ""
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "Σφάλμα"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr "Σφάλμα προσθήκης αρχείου"
+msgstr ""
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Σφάλμα μεταγλώττισης."
+msgstr ""
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "Σφάλμα κατά την λήψη του φακέλου δεδομένων του Arduino."
+msgstr "Λάθος κατα την λήψη του φακέλου δεδομένων του Arduino"
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "Σφάλμα μέσα στην Serial.{0}()"
+msgstr ""
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
@@ -580,34 +620,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr "Σφάλμα ανοίγματος της σειριακής θύρας \"{0}\"."
+msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
-msgstr "Σφάλμα ανάγνωσης επιλογών"
+msgstr "Σφάλμα άναγνωσης προτιμήσεων"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr "Σφάλμα ανάγνωσης του αρχείου επιλογών. Παρακαλούμε διαγράψτε\n(ή μεταφέρετε) το {0} και επανεκκινήστε το Arduino."
+msgstr "Σφάλμα ανάγνωσης αρχείου προτιμήσεων. Παρακαλώ διαγράψτε (ή μετακινήστε)\n{0} και ξαναξεκινήστε το Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Σφάλμα κατά την εγγραφή του bootloader."
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -618,163 +658,183 @@ msgstr ""
msgid "Error while loading code {0}"
msgstr "Σφάλμα φόρτωσης κώδικα {0}"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "Σφάλμα κατά την εκτύπωση."
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
+msgstr "Εσθονικά"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
msgstr ""
-#: Editor.java:509
+#: Editor.java:516
msgid "Examples"
-msgstr "Παραδείγματα"
+msgstr ""
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Η εξαγωγή ακυρώθηκε, οι αλλαγές πρέπει πρώτα να αποθηκευτούν."
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
-msgstr "Αρχείο"
+msgstr ""
#: Preferences.java:94
msgid "Filipino"
-msgstr "Φιλιπινέζικα"
+msgstr "Φιλλιπινέζικα"
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
msgstr "Εύρεση"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Εύρεση Επομένου"
+msgstr ""
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Εύρεση Προηγουμένου"
+msgstr ""
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Εύρεση στην Αναφορά"
+msgstr ""
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Εύρεση..."
+msgstr ""
#: FindReplace.java:80
msgid "Find:"
msgstr "Εύρεση:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr "Διόρθωση Κωδικοποίησης & Επαναφόρτωση"
-
-#: ../../../processing/app/Base.java:2057
-msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
msgstr "Γαλλικά"
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
-msgstr "Συχνές Ερωτήσεις"
+msgstr ""
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
-msgstr "Γαλικιανά"
+msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
msgstr "Γερμανικά"
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
-msgstr "Ξεκίνημα"
+msgstr ""
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
msgstr "Ελληνικά"
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
-msgstr "Guide_MacOSX.html"
+msgstr "Οδηγός_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
-msgstr "Guide_Windows.html"
+msgstr "Οδηγός_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
-msgstr "Βοήθεια"
-
-#: ../../../processing/app/Preferences.java:98
-msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Preferences.java:99
+msgid "Hindi"
+msgstr "Χίντι"
+
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr "Τί θα λέγατε να αποθηκεύσετε το σχέδιο πριν προσπαθήσετε\nνα το μετονομάσετε;"
+msgstr ""
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "Πως την είδατε; Borges;"
+msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
-msgstr "Ουγγρικά"
+msgstr "Ουγγαρέζικα"
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr "Παράβλεψη Πεζών/Κεφαλαίων"
+msgstr "Αγνόησε την υπόθεση"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Παράβλεψη βιβλιοθήκης με λανθασμένο όνομα"
+msgstr "Το λάθος όνομα της βιβλιοθήκης αγνοήθηκε"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "Παράβλεψη σχεδίου με λανθασμένο όνομα"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Εισαγωγή Βιβλιοθήκης..."
+msgstr ""
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -787,152 +847,147 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Αύξηση Επιπέδου Εισαγωγής"
-
-#: Preferences.java:99
-msgid "Indonesian"
msgstr ""
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr "Ινδονησιακά"
+
#: ../../../processing/app/Base.java:1204
#, java-format
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
+#: Preferences.java:102
msgid "Italian"
msgstr "Ιταλικά"
-#: Preferences.java:101
-msgid "Japanese"
-msgstr "Ιαπωνικά"
-
-#: Preferences.java:102
-msgid "Korean"
-msgstr ""
-
#: Preferences.java:103
-msgid "Latvian"
-msgstr "Λετονικά"
-
-#: ../../../processing/app/Base.java:2903
-msgid "Library added to your libraries. Check \"Import library\" menu"
-msgstr ""
+msgid "Japanese"
+msgstr "Γιαπωνέζικα"
#: Preferences.java:104
-msgid "Lithuaninan"
+msgid "Korean"
+msgstr "Κορεάτικα"
+
+#: Preferences.java:105
+msgid "Latvian"
msgstr ""
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr "Η Βιβλιοθήκη προστέθηκε στις Βιβλιοθήκες σας. Έλεγξτε το μενού \"Εισαγωγή βιβλιοθήκης\""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr "Λιθουανίας"
+
#: ../../../processing/app/Sketch.java:1660
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "Μήνυμα"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Λείπει το */ από το τέλος ενός /* σχολίου */"
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr "Περισσότερες προτιμήσεις μπορούν να επεξεργασθούν απεθείας στο αρχείο"
+msgstr ""
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
-msgstr "Μεταφορά"
+msgstr ""
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Όνομα νέου αρχείου:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
-msgstr "Νέο"
+msgstr "Δημιουργία"
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Νέο Παράθυρο Επεξεργασίας"
+msgstr "Νέο Παράθυρο Διορθωτή"
#: EditorHeader.java:292
msgid "New Tab"
-msgstr "Νέα Καρτέλα"
+msgstr ""
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Νέα γραμμή"
+msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr "Επόμενη Καρτέλα"
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "Όχι"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Δεν έχει επιλεχθεί πλακέτα. Παρακαλούμε επιλέξτε ένα απο το μενού Εργαλεία -> Πλακέτα"
+msgstr ""
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
-msgstr "Δεν χρειάζονται αλλαγές για την Αυτόματη Μορφοποίηση"
+msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "Δεν έχουν προστεθεί αρχεία στο σχέδιο."
+msgstr ""
#: Platform.java:167
msgid "No launcher available"
-msgstr "Δεν βρέθηκε εκκινητής"
+msgstr ""
#: SerialMonitor.java:112
msgid "No line ending"
-msgstr "Χωρίς τέλος γραμμής"
+msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "Όχι σοβαρά τώρα, καιρός να πάρετε λίγο φρέσκο αέρα."
+msgstr "Οχι αλήθεια, είναι ώρα να πάρεις λίγο φρέσκο αέρα"
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "Δεν υπάρχει αναφορά για το \"{0}\""
+msgstr ""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Mή ανεπανόρθωτο σφάλμα κατά τον καθορισμό της εμφάνισης."
+msgstr "Μη μοιραίο λάθος συνέβη κατα την εδραίωση"
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
-msgstr "Τσού!"
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
@@ -945,74 +1000,82 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr "OK"
+msgstr "Εντάξει"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "Ένα αρχείο προστέθηκε στο σχέδιο."
+msgstr ""
#: EditorToolbar.java:41
msgid "Open"
msgstr "Άνοιγμα"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
-msgstr "Άνοιγμα URL"
+msgstr ""
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Άνοιγμα σχεδίου Arduino..."
+msgstr "Άνοιξε ένα σχέδιο Arduino..."
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Άνοιγμα σε Νεο Παράθυρο"
+msgstr "Άνοιγμα σε άλλο παράθυρο"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "Άνοιγμα..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Ρύθμιση Σελίδας"
+msgstr ""
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "Επικόλληση"
-
-#: Preferences.java:105
-msgid "Persian"
-msgstr "Πέρσικα"
-
-#: debug/Compiler.java:465
-msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Παρακαλούμε εισάγετε την βιβλιοθήκη SPI από τ μενού Σχέδιο -> Εισαγωγή Βιβλιοθήκης."
-
-#: Base.java:232
-msgid "Please install JDK 1.5 or later"
-msgstr "Παρακαλούμε εγκαταστήστε το JDK 1.5 ή μεγαλύτερο."
-
-#: Preferences.java:106
-msgid "Polish"
msgstr ""
+#: Preferences.java:109
+msgid "Persian"
+msgstr "Περσικά"
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr "Παρακαλώ εγκαταστήστε το JDK 1.5 ή νεότερο"
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr "Πολωνέζικα"
+
#: ../../../processing/app/Editor.java:718
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "Επιλογές"
+msgstr "Προτιμήσεις"
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
@@ -1020,31 +1083,31 @@ msgstr "Προηγούμενο"
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Προηγούμενη Καρτέλα"
+msgstr ""
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "Εκτύπωση"
+msgstr ""
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr "Ακύρωση εκτύπωσης."
+msgstr ""
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Εκτύπωση..."
+msgstr ""
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
msgstr "Πρόβλημα Ανοίγματος Φακέλου"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "Πρόβλημα Ανοίγματος του URI"
+msgstr "Προβλημα στο άνοιγμα της ιστοσελίδας"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "Πρόβλημα κατά τον καθορισμό της Πλατφόρμας"
+msgstr "Πρόβλημα κατα την εδραίωση της πλατφόρμας"
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1054,133 +1117,133 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "Πρόβλημα κατά την λήψη του φακέλου δεδομένων"
+msgstr "Πρόβλημα κατα την λήψη του φακέλου δεδομένων"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Πρόβλημα μετακκίνησης του {0} στο φάκελο δημιουργίας"
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
-msgstr "Πρόβλημα φόρτωσης στην πλακέτα. Δείτε το http://www.arduino.cc/en/Guide/Troubleshooting#upload για οδηγίες."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Πρόβλημα μετονομασίας"
+msgstr ""
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr "Η Processing μπορεί να ανοίξει μόνο τα δικά της σχέδια\nκαι άλλα αρχεία με κατάληξη .ino ή .pde"
+msgstr ""
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "Προγραμματιστής"
+msgstr ""
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "Έξοδος"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Επαναφορά"
+msgstr ""
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "Αναφορά"
+msgstr ""
#: EditorHeader.java:300
msgid "Rename"
-msgstr "Μετονομασία"
+msgstr ""
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "Αντικατάσταση"
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr "Αντικατάσταση & Εύρεση"
+msgstr "Αντικατάσταση και εύρεση"
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "Αντικατάσταση Όλων"
+msgstr "Αντικατάσταση όλων"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Αντικατάσταση της υπάρχουσας έκδοσης του {0};"
+msgstr ""
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Αντικατάσταση με:"
+msgstr "Αλλαγή με:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr "Ρουμανικά"
+msgstr "Ρουμάνικα"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
-msgstr ""
+msgstr "Ρώσσικα"
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "Αποθήκευση"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Αποθήκευση Ως..."
-
-#: Editor.java:2270
-msgid "Save Canceled."
-msgstr "Ακύρωση Αποθήκευσης."
-
-#: Editor.java:2420
-msgid "Save changes before export?"
-msgstr "Αποθήκευση αλλαγών πρίν την εξαγωγή;"
-
-#: Editor.java:1973
-#, java-format
-msgid "Save changes to \"{0}\"? "
-msgstr "Αποθήκευση αλλαγών στο \"{0}\";"
-
-#: Sketch.java:829
-msgid "Save sketch folder as..."
-msgstr "Save sketch folder as..."
-
-#: Editor.java:2223 Editor.java:2261
-msgid "Saving..."
-msgstr "Αποθήκευση..."
-
-#: Base.java:1623
-msgid "Select (or create new) folder for sketches..."
-msgstr "Επιλέξτε (ή δημιουργήστε) έναν φάκελο για τα σχέδια σας..."
-
-#: Editor.java:1184 Editor.java:2692
-msgid "Select All"
-msgstr "Επιλογή Όλων"
-
-#: ../../../processing/app/Base.java:2845
-msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
-msgid "Select an image or other data file to copy to your sketch"
-msgstr "Επιλέξτε μια εικόνα ή άλλο αρχείο δεδομένων για να αντιγράψετε στο σχέδιο σας"
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr ""
-#: Preferences.java:314
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr ""
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr ""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr ""
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr ""
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr "Επέλέξε (ή φτιάξε νέο) φάκελο για σχέδια..."
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr ""
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr "Επιλέξτε συμπιεσμένο αρχείο ή φάκελο που να περιέχουν την βιβλιοθήκα που θέλετε να προσθέσετε"
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Επιλέξτε καινούργια τοποθεσία σχεδίων"
+msgstr "Επιλέξτε νέα θέση για το Sketchbook"
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1188,187 +1251,202 @@ msgstr ""
#: SerialMonitor.java:93
msgid "Send"
-msgstr "Αποστολή"
+msgstr ""
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
msgstr "Σειριακή Οθόνη"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr "Η σειριακή θύρα \"{0}\" χρησιμοποιείται ήδη. Δοκιμάστε να κλείσετε όλα τα προγράμματα που μπορεί να την χρησιμοποιούν."
+msgstr ""
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr "Η σειριακή θύρα \"{0}\" δεν βρέθηκε. Επιλέξατε την σωστή από το μενού Εργαλεία > Σειριακή Θύρα;"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr "Η σειριακή θύρα {0} δεν βρέθηκε.\nΕπανάληψη φόρτωσης σε άλλη σειριακή θύρα;"
+msgstr ""
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Πρόβλημα ρυθμίσεων"
+msgstr "Προβλήματα επιλογών"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Εμφάνιση Φακέλου Σχεδίου"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Εμφάνιση αναλυτικής εξόδου κατά την: "
+msgstr ""
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr "Σχέδιο"
+msgstr ""
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "Το σχέδιο εξαφανίστηκε"
+msgstr ""
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "Το Σχέδιο Δεν Υπάρχει"
+msgstr "Το σχέδιο δεν υπάρχει"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr "Το σχέδιο είναι Μόνο-Ανάγνωση"
+msgstr ""
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "Το σχέδιο δεν έχει Όνομα"
+msgstr ""
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "Το σχέδιο είναι μόνο-ανάγνωσης"
+msgstr ""
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr "Πολύ μεγάλο σχέδιο; δείτε το http://www.arduino.cc/en/Guide/Troubleshooting#size για συμβουλές ωστέ να το μειώσετε."
+msgstr ""
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
-msgstr "Σχέδια"
+msgstr ""
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "Ο φάκελος σχεδίων εξαφανίστηκε"
+msgstr "Χάθηκε ο φάκελος του Sketchbook"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "Τοποθεσία Σχεδίων:"
+msgstr "Θέση Sketchbook:"
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr "Κάποια αρχεία είναι δηλωμένα ως \"μόνο-ανάγνωση\", οπότε θα\nχρειαστεί να ξανααποθηκεύσετε το σχέδιο σε άλλη τοποθεσία,\nκαι να ξαναπροσπαθήσετε."
+msgstr ""
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr "Κάποια αρχεία είναι \"μόνο-ανάγνωσης\", οπότε θα χρειαστεί\nνα ξανα-αποθηκεύσετε αυτό το σχέδιο σε άλλη τοποθεσία."
+msgstr ""
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Λυπούμαστε, υπάρχει ήδη ένα σχέδιο (ή φάκελος) με όνομα \"{0}\"."
+msgstr ""
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
msgstr "Ισπανικά"
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
msgstr "Λιακάδα"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
-msgstr ""
+msgstr "Προεπιλογές συστήματος"
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
+msgstr "Ταμίλ"
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
msgstr ""
-#: debug/Compiler.java:471
-msgid "The 'BYTE' keyword is no longer supported."
-msgstr "Η λέξη 'BYTE' δεν υποστηρίζεται πλέον."
-
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "Η κλάση Client έχει μετονομαστεί σε EthernetClient."
+msgstr ""
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr "Η κλάση Server έχει μετονομαστεί σε EthernetServer."
+msgstr ""
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "Η κλάση Udp έχει μετονομαστεί σε EthernetUdp."
+msgstr ""
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "Το μήνυμα σφάλματος παρατίθεται, αλλά το Arduino θα πρέπει να είναι εντάξει."
+msgstr "Το ακόλουθο λάθος συνέβη, όμως το Arduino δεν θα έχει κάποιο πρόβλημα"
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr "Το αρχείο \"{0}\" πρέπει να είναι μέσα\nσε ένα φάκελο σχεδίου με όνομα \"{1}\".\nΔημιουργία φακέλου, μεταφορά αρχείου, και συνέχεια;"
+msgstr ""
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr "Η βιβλιοθήκη \"{0}\" δεν μπορεί να χρησιμοποιηθεί.\nΤα ονόματα βιβλιοθηκών μπορούν να περιέχουν μόνο βασικά γράμματα και αρθμούς.\n(μόνο ASCII και χωρίς κενά, και δεν μπορούν να ξεκινούν με αριθμό)"
+msgstr "Η βιβλιοθήκη \"{0}\" δεν μπορεί να χρησιμοποιηθεί.\nΤο όνομα της βιβλιοθήκης πρέπει να περιέχει μόνο βασικούς χαρακτήρες και αριθμους.\n(μόνο ASCII χωρίς κενά, και δεν μπορεί να αρχίζει με αριθμό)"
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr "Το κυρίως αρχείο δεν μπορεί να χρησιμοποιεί επέκταση.\n(ίσως είναι καιρός για εσάς να μεταβείτε σε ένα πιο\n\"πραγματικό\" περιβάλλον προγραμματισμου)"
+msgstr ""
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr "Το όνομα δεν μπορεί να ξεκινάει με τελεία."
+msgstr ""
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr "Το επιλεγμένο σχέδιο δεν υπάρχει πλέον.\nΜπορεί να χρειαστεί να επανεκκινήσετε το Arduino για να\nανανεώσετε το μενού των σχεδίων σας."
+msgstr "Το επιλεγμένο σχέδιο δεν υπάρχει πλέον.\nΠιθανόν απαιτείται επανεκκίνηση του Arduino προκειμένου να ανανεωθεί το μενού του Sketchbook."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1376,53 +1454,53 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr "Το σχέδιο \"{0}\" δεν μπορεί να χρησιμοποιηθεί.\nΤα ονόματα των σχεδίων πρέπει να περιέχουν μόνο βασικά γράμματα και αριθμούς.\n(Μόνο ASCII χωρίς κενά, και δεν μπορούν να ξεκινούν με αριθμό).\nΓια να απαλαχθείτε από αυτό το μήνυμα, αφαιρέστε το σχέδιο από το\n{1}"
+msgstr "Το σχέδιο \"{0}\" δεν μπορεί να χρησιμοπειηθεί.\nΤα ονόματα των σχεδίων πρέπει να περιέχουν μόνο γράμματα και αριθμούς\n(ASCII- μόνο χωρίς κενά, και δεν μπορούν να ξεκινούν με αριθμό).\nΓια να μην ξαναεμφανιστεί αυτό το μήνυμα, αφαιρέστε το σχέδιο από το\n {1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr "Ο φάκελος του σχεδίου εξαφανίστηκε.\nΘα προσπαθήσουμε να επανα-αποθηκεύσουμε στην ίδια τοποθεσία,\nαλλά τα πάντα εκτός του κώδικα θα χαθούν."
+msgstr ""
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr "Το όνομα του σχεδίου έχει αλλάκει. Τα ονόματα των σχεδίων μπορούν να\nαποτελούνται από χαρακτήρες ASCII και αριθμούς (αλλά όχι να αρχίζουν με αριθμό).\nΘα πρέπει επίσης να είναι λιγότερο από 64 χαρακτήρες."
+msgstr ""
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr "Ο φάκελος σχεδίων δεν υπάρχει πλέον.\nΤο Arduino θα γυρίσει στην προεπιλεγμένη τοποθεσία του φακέλου και θα δημιουργήσει έναν νεο φάκελο σχεδίων αν είναι απαραίτητο. Στη συνέχεια, το Arduino θα σταματήσει να μιλάει για τον εαυτό του\nσε τρίτο πρόσωπο."
+msgstr "Ο φάκελος Sketchbook δεν υπάρχει πλέον.\nΤο Arduino θα επανέλθει στην προεπιλεγμένη θέση του Sketchbook, \nκαι θα δημιουργήσει νέο φάκελο Sketchbook αν απαιτείται.\nΤότε το Arduino θα σταματήσει να αναφέρεται στον εαυτό του σε τρίτο πρόσωπο."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr "Το αρχείο έχει ήδη αντιγραφεί στην τοποθεσία από όπου προσπαθείτε να το αντιγράψετε.\nΔεν κάνω τίποτα, που να σκασεις"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr "Ώρα για Διάλειμα"
+msgstr "Ώρα για δειάλειμα"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "Εργαλεία"
+msgstr ""
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "Αντιμετώπιση Προβλημάτων"
+msgstr ""
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
@@ -1446,7 +1524,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1457,157 +1535,161 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Άπιαστο είδος εξαίρεσης: {0}"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "Αναίρεση"
+msgstr ""
#: Platform.java:168
msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr "Άγνωστη πλατφόρμα, δεν βρέθηκε εκκινητής.\nΓια να ενεργοποιήσετε το άνοιγμα URL και φακέλων, προσθέστε μια\nγραμμή \"launcher=/path/to/app\" στο preferences.txt"
+msgstr ""
#: UpdateCheck.java:111
msgid "Update"
-msgstr "Ενημέρωση"
+msgstr ""
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr "Αναβάθμιση των αρχείων σχεδίων στην νέα κατάληξη κατά την αποθήκευση (.pde -> .ino)"
+msgstr ""
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
-msgstr "Φόρτωση"
+msgstr "Εξαγωγή"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Φόρτωση Με Χρήση Προγραμματιστή"
+msgstr "Εξαγώγη Μέσω Προγραμματιστή"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "Ακύρωση φόρτωσης."
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Φόρτωση στην πλακέτα I/O..."
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Φόρτωση..."
+msgstr ""
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Χρήση Επιλογής για Εύρεση"
+msgstr ""
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr "Χρήση εξωτερικού προγράμματος επεξεργασίας"
+msgstr ""
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr "Επαλήθευση"
+msgstr "Επικύρωση"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Επαλήθευση / Μεταγλώττιση"
+msgstr ""
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr "Επαλήθευση κώδικα μετά την φόρτωση"
+msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "Επίσκεψη στο Arduino.cc"
+msgstr ""
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr "Προειδοποίηση"
+msgstr "Ειδοποίηση"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
-msgstr "Η Wire.receive() μετονομάστηκε σε Wire.read()."
+msgstr ""
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "Η Wire.send() έχει μετονομαστεί σε Wire.write()."
+msgstr ""
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "Αναδίπλωση"
+msgstr ""
#: debug/Uploader.java:213
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
-msgstr "Βρέθηκε λάθος μικροελεγκτής. Επιλέξατε την σωστή πλακέτα από το μενού Εργαλεία > Πλακέτα;"
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "Ναι"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
-msgstr "Δεν μπορείς να με κοροιδέψεις εμένα!"
+msgstr ""
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "Δεν μπορείτε να έχετε ένα αρχείο .cpp με όνομα ίδιο με του σχεδίου."
+msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr "Δεν μπορείτε να μετονομάσετε το σχέδιο σε \"{0}\"\nεπειδή το σχέδιο έχει ήδη ένα αρχείο .cpp με αυτό το όνομα."
+msgstr ""
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr "Δεν μπορείτε να αποθηκεύσετε το σχέδιο ως \"{0}\"\nεπειδή το σχέδιο έχει ήδη ένα αρχείο .cpp με αυτό το όνομα."
+msgstr ""
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr "Δεν μπορείτε να αποθηκεύσετε το σχέδιο σε έναν φάκελο μέσα στον εαυτό του. Αυτό δε θα είχε τέλος."
+msgstr ""
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr "Ξεχάσατε τα σχέδια σας"
+msgstr "Ξέχασες το Sketchbook σου"
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr "Έχετε φτάσει το όριο αυτόματης ονομασίας των νέων σχεδίων ανα\nμέρα. Γιατί δεν κάνετε μια βόλτα καλύτερα;"
+msgstr "Έφτασες το όριο αυτόματης ονομασίας των νέων σχεδίων, για σήμερα.\nΤι θα ΄λεγες για λίγο περπάτημα;"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
-msgstr ""
+msgstr "Συμπιεσμένα αρχεία ή φάκελοι"
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
-msgstr ""
+msgstr "Το συμπιεσμένο αρχείο δεν περιέχει βιβλιοθήκη"
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "Το \".{0}\" δεν είναι έγκυρη κατάληξη."
+msgstr ""
#: SketchCode.java:258
#, java-format
@@ -1616,93 +1698,86 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr "Το \"{0}\" περιέχει μη αναγνωρίσιμους χαρακτήρες. Αν ο κώδικας είχε δημιουργηθεί με παλαιότερη έκδοση της Processing, μπορεί να χρειαστεί να χρησιμοποιήσετε το Εργαλεία > Διόρθωση Κωδικοποίησης & Επαναφόρτωση για να ανανεώσετε το σχέδιο σας σε κωδικοποίηση UTF-8. Αλλιώς, μπορεί να χρειαστεί να διαγράψετε τους λανθασμένους χαρακτήρες για να απαλαχθείτε από αυτό το μήνυμα."
+msgstr "Το {0} περιέχει άγνωστους χαρακτήρες. Αν αυτός ο κώδικας δημιουργήθηκε από παλαιότερη έκδοση επεξεργασίας, χρειάζεται να χρησιμοποιήσετε τα Εργαλεία -> Διόρθωση ωδικοποίησης & Ανανέωση Σχεδίου με χρήση UTF-8. Σε άλλη περίπτωση πρέπει να αφαιρέσετε τους άγνωστους χαρακτήρες για να μην ξαναεμφανιστεί αυτό το μήνυμα."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
-msgstr "\nΑπό το Arduino 0019, η βιβλιοθήκη Ethernet βασίζεται στην βιβλιοθήκη SPI.\nΦαίνεται πως την χρησιμοποιείτε, ή κάποια άλλη βιβλιοθήκη που βασίζεται στην βιβλιοθήκη SPI.\n\n"
+msgstr ""
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr "\nΑπό το Arduino 1.0, η λέξη 'BYTE' δεν υποστηρίζεται πλέον.\nΠαρακαλούμε χρησιμοποιήστε την Serial.write() αντί αυτής.\n\n"
+msgstr ""
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr "\nΑπό το Arduino 1.0, η κλάση Client στην βιβλιοθήκη Ethernet έχει μετονομαστεί σε EthernetClient.\n\n"
-
-#: debug/Compiler.java:478
-msgid ""
-"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr "\nΑπό το Arduino 1.0, η κλάση Server στην βιβλιοθήκη Ethernet έχει μετονομαστεί σε EthernetServer.\n\n"
-
-#: ../../../processing/app/debug/Compiler.java:451
-msgid ""
-"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
-msgstr "\nΑπό το Arduino 1.0, η συνάρτηση Wire.receive() μετονομάστηκε σε Wire.read() για συνοχή με τις υπόλοιπες βιβλιοθήκες.\n\n"
+msgstr ""
-#: debug/Compiler.java:496
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
-msgstr "\nΑπό το Arduino 1.0, η συνάρτηση Wire.send() μετονομάστηκε σε Wire.write() για συνοχή με τις υπόλοιπες βιβλιοθήκες.\n\n"
+msgstr ""
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "μεταγλώττιση "
+msgstr ""
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr "Η createNewFile() επέστρεψε false"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr "περιβάλλον"
+msgstr "Περιβάλλον"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
-msgstr "http://arduino.cc/"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
@@ -1710,78 +1785,74 @@ msgstr ""
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
-msgstr "http://www.arduino.cc/en/Main/Software"
+msgstr ""
#: UpdateCheck.java:53
msgid "http://www.arduino.cc/latest.txt"
-msgstr "http://www.arduino.cc/latest.txt"
+msgstr ""
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "Παράβλεψη λανθασμένου μεγέθος γραμματοσειράς {0}"
+msgstr ""
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "το όνομα είναι κενό"
+msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr "Ο buffer readBytesUntil() είανι πολύ μικρός για τα {0} bytes μέχρι τον char {1}, συμπεριλαμβανομένου αυτού"
+msgstr ""
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: εσωτερικό σφάλμα.. δεν βρέθηκε ο κώδικας"
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "Το serialMenu είναι κενό"
+msgstr ""
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
-msgstr "η επιλεγμένη σειριακή θύρα {0} δεν υπάρχει ή η πλακέτα σας δεν είναι συνδεδεμένη"
-
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
msgstr ""
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
-msgstr "φόρτωση"
+msgstr ""
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "{0} αρχεία προστέθηκαν στο σχέδιο."
+msgstr ""
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr "Το {0} επέστρεψε {1}"
+msgstr ""
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr "{0} | Arduino {1}"
+msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_el_GR.properties b/app/src/processing/app/i18n/Resources_el_GR.properties
index 08e3ab01d..21fc43d4a 100644
--- a/app/src/processing/app/i18n/Resources_el_GR.properties
+++ b/app/src/processing/app/i18n/Resources_el_GR.properties
@@ -4,79 +4,79 @@
#
# Translators:
# Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u03a4\u03bf \u03ba\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf \u03c4\u03bf\u03c5 \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03b8\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03b9 \u03c4\u03bf Arduino.
+#: Base.java:773
+\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u039a\u03bb\u03b5\u03af\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c4\u03bf Arduino \u03b8\u03b1 \u03c4\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03b5\u03af.
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= \u0391\u03bd \u03b4\u03b5\u03bd \u03c4\u03bf \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5, \u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b1\u03c2 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03bf\u03cd\u03bd.
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
-A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u0388\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{0}" \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03c3\u03c4\u03bf "{1}"
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u03a5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{0}". \u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03bf \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5.
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
-!A\ library\ named\ {0}\ already\ exists=
+A\ library\ named\ {0}\ already\ exists=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03bc\u03b5 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 {0} \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u039c\u03b9\u03b1 \u03bd\u03ad\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7,\n\u03b8\u03b1 \u03b8\u03ad\u03bb\u03b1\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03c3\u03ba\u03b5\u03c6\u03b8\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03ba\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 Arduino;
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03c0\u03bf\u03c5\n\u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03c4\u03b7\u03c2 \u03ba\u03bf\u03bd\u03c3\u03cc\u03bb\u03b1\u03c2.
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
-#: Editor.java:1102
-About\ Arduino=\u03a3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf Arduino
+#: Editor.java:1116
+!About\ Arduino=
-#: Editor.java:643
-Add\ File...=\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5...
+#: Editor.java:650
+!Add\ File...=
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
+#: Base.java:963
+Add\ Library...=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b4\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2.\n\u039c\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf, \u03ba\u03b1\u03b8\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5\n\u03c4\u03b7\u03bd \u03c0\u03b1\u03bb\u03b9\u03ac \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7. \u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b1\u03bd\u03b1-\u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03be\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5.\n
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0388\u03bd\u03b1 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c3\u03c5\u03bd\u03ad\u03b2\u03b7 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\n\u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1\u03c2 \u03c3\u03c4\u03bf \u03bc\u03b7\u03c7\u03ac\u03bd\u03b7\u03bc\u03b1 \u03c3\u03b1\u03c2.
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u03a0\u03c1\u03bf\u03ba\u03bb\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03cc\u03c1\u03b9\u03c3\u03c4\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2, \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bc\u03b7\u03c7\u03b1\u03bd\u03ae \u03c3\u03b1\u03c2
#: Preferences.java:85
-!Aragonese=
+Arabic=\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac
+
+#: Preferences.java:86
+Aragonese=\u0391\u03c1\u03b1\u03b3\u03bf\u03bd\u03af\u03b1\u03c2
#: tools/Archiver.java:48
-Archive\ Sketch=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
+!Archive\ Sketch=
#: tools/Archiver.java:109
-Archive\ sketch\ as\:=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c9\u03c2\:
+!Archive\ sketch\ as\:=
#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7\u03c2 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5.
+!Archive\ sketch\ canceled.=
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0397 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b3\u03b9\u03b1\u03c4\u03af \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03c3\u03c9\u03c3\u03c4\u03ac.
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
#: ../../../processing/app/I18n.java:83
!Arduino\ ARM\ (32-bits)\ Boards=
@@ -84,62 +84,68 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c4\u03c1\u03ad\u03be\u03b5\u03b9 \u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1\n\u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c3\u03b1\u03c2.
+#: Base.java:1682
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03b5\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9, \u03b4\u03b9\u03cc\u03c4\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\n\u03bd\u03b1 \u03c6\u03c4\u03b9\u03ac\u03be\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b1\u03c2.
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c4\u03c1\u03ad\u03be\u03b5\u03b9 \u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1\n\u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c3\u03b1\u03c2.
+#: Base.java:1889
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03b5\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b4\u03b9\u03cc\u03c4\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\n\u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 Sketchbook.
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u03a4\u03bf Arduino \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bf\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03bf \u03c4\u03bf JDK (\u03cc\u03c7\u03b9 \u03bc\u03cc\u03bd\u03bf \u03ad\u03bd\u03b1 JRE)\n\u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03c1\u03ad\u03be\u03b5\u03b9. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf JDK 1.5 \u03ae \u03b1\u03c1\u03b3\u03cc\u03c4\u03b5\u03c1\u03bf.\n\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03bf\u03cd\u03bd \u03c3\u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2.
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u03a4\u03bf Arduino \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af \u03c0\u03bb\u03ae\u03c1\u03b5\u03c2 JDK (\u03cc\u03c7\u03b9 \u03bc\u03cc\u03bd\u03bf JRE), \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03ba\u03c4\u03b5\u03bb\u03b5\u03c3\u03c4\u03b5\u03af.\n\u0395\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5 JDK 1.5 \u03ae \u03bc\u03b5\u03c4\u03b1\u03b3\u03b5\u03bd\u03ad\u03c3\u03c4\u03b5\u03c1\u03bf.\n\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b8\u03b1 \u03b2\u03c1\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf \u03b5\u03b3\u03c7\u03b5\u03b9\u03c1\u03af\u03b4\u03b9\u03bf.
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf "{0}";
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf;
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
#: tools/AutoFormat.java:91
-Auto\ Format=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
#: tools/AutoFormat.java:931
-Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2\: \u03a0\u03ac\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ad\u03c2 \u03b1\u03b3\u03ba\u03cd\u03bb\u03b5\u03c2.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
#: tools/AutoFormat.java:922
-Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2\: \u03a0\u03ac\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bd\u03b8\u03ad\u03c3\u03b5\u03b9\u03c2.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
-#: tools/AutoFormat.java:928
-Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2\: \u03a0\u03ac\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b4\u03b5\u03be\u03b9\u03ad\u03c2 \u03b1\u03b3\u03ba\u03cd\u03bb\u03b5\u03c2.
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
-#: tools/AutoFormat.java:919
-Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2\: \u03a0\u03ac\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b4\u03b5\u03be\u03b9\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bd\u03b8\u03ad\u03c3\u03b5\u03b9\u03c2.
-
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=\u03a4\u03ad\u03bb\u03bf\u03c2 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2
-
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd .ino \u03bc\u03b5 \u03c4\u03bf Arduino
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
#: SerialMonitor.java:110
-Autoscroll=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf scroll
+!Autoscroll=
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
-Bad\ error\ line\:\ {0}=\u039b\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2\: {0}
+!Bad\ error\ line\:\ {0}=
-#: Editor.java:2089
-Bad\ file\ selected=\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5 \u03a7\u03b1\u03bb\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf
+#: Editor.java:2136
+!Bad\ file\ selected=
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -148,23 +154,29 @@ Board=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
-Both\ NL\ &\ CR=\u039d\u03ad\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03ba\u03b1\u03b9 \u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b4\u03c1\u03bf\u03bc\u03ad\u03b1, NL & CR
+!Both\ NL\ &\ CR=
-#: Preferences.java:80
-Browse=\u03a0\u03b5\u03c1\u03b9\u03ae\u03b3\u03b7\u03c3\u03b7
+#: Preferences.java:81
+Browse=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2 \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03ae \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03c1\u03b1\u03c6\u03c4\u03b5\u03af
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
-Burn\ Bootloader=\u0393\u03c1\u03ac\u03c8\u03b9\u03bc\u03bf Bootloader
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae bootloader \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 I/O (\u03b1\u03c5\u03c4\u03cc \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03bb\u03b5\u03c0\u03c4\u03cc)...
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
#: ../../../processing/app/Base.java:368
!Can't\ open\ source\ sketch\!=
@@ -172,80 +184,92 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0395\u03b
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7
-#: Sketch.java:459
-Cannot\ Rename=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u039c\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1
+#: Sketch.java:455
+!Cannot\ Rename=
#: SerialMonitor.java:112
-Carriage\ return=\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b4\u03c1\u03bf\u03bc\u03ad\u03b1
-
-#: Preferences.java:86
-Catalan=\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7
+!Carriage\ return=
#: Preferences.java:87
-Chinese\ Simplified=\u0391\u03c0\u03bb\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b1 \u039a\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
+Catalan=\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
-!Chinese\ Traditional=
+Chinese\ Simplified=\u0391\u03c0\u03bb\u03ac \u039a\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
-#: Editor.java:514 Editor.java:1977
-Close=\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf
+#: Preferences.java:89
+Chinese\ Traditional=\u03a0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03ac \u039a\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
-#: Editor.java:1194 Editor.java:2702
-Comment/Uncomment=\u03a3\u03c7\u03bf\u03bb\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2/\u0391\u03c0\u03bf\u03c3\u03c7\u03bf\u03bb\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2
+#: Editor.java:521 Editor.java:2024
+!Close=
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
-Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03c4\u03ae, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c3\u03c4\u03b5\u03af\u03bb\u03c4\u03b5 \u03bc\u03b1\u03c2 \u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c3\u03c4\u03bf {0}
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=\u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03b9\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5...
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
#: EditorConsole.java:152
-Console\ Error=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u039a\u03bf\u03bd\u03c3\u03cc\u03bb\u03b1\u03c2
+!Console\ Error=
-#: Editor.java:1143 Editor.java:2660
-Copy=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae
+#: Editor.java:1157 Editor.java:2707
+!Copy=
-#: Editor.java:1163 Editor.java:2676
-Copy\ as\ HTML=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c9\u03c2 HTML
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03b9\u03b1 \u03c4\u03bf Forum
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c4\u03bf\u03c5 "{0}" \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c9\u03c3\u03c4\u03ae \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1.
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd.
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
-#: Editor.java:2159
-Could\ not\ create\ the\ sketch.=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5.
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 "{0}".
+!Could\ not\ delete\ "{0}".=
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd\u03c4\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 "{0}".
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
-Could\ not\ delete\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 {0}
+Could\ not\ delete\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c4\u03bf {0}
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -259,140 +283,146 @@ Could\ not\ delete\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 URL\n{0}
+Could\ not\ open\ the\ URL\n{0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03bf\u03b9\u03c7\u03b8\u03b5\u03af \u03b7 \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1\n{0}
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc \u03c4\u03bf \u03ac\u03bd\u03bf\u03c5\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\n{0}
+Could\ not\ open\ the\ folder\n{0}=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\n{0}
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1-\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1, \u03ba\u03b1\u03b9 \u03af\u03c3\u03c9\u03c2\n\u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c3\u03b1\u03c2 \u03c3\u03b5 \u03b5\u03bd\u03b1\u03bd \u03ac\u03bb\u03bb\u03bf \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5.
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1-\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b8\u03ad\u03bc\u03b1\u03c4\u03bf\u03c2.\n\u0398\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd Processing.
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd.\n\u0398\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Arduino.
+#: Preferences.java:219
+Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2.\n\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03be\u03b1\u03bd\u03ac \u03c4\u03bf Arduino.
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
-Could\ not\ read\ preferences\ from\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf {0}
+Could\ not\ read\ preferences\ from\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf {0}
-#: Base.java:2196
+#: Base.java:2482
#, java-format
-Could\ not\ remove\ old\ version\ of\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 {0}
+Could\ not\ remove\ old\ version\ of\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03b7 \u03c0\u03b1\u03bb\u03b9\u03ac \u03b5\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 {0}
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 "{0}" \u03c3\u03b5 "{1}"
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (0)
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (1)
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (2)
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
-#: Base.java:2206
+#: Base.java:2492
#, java-format
-Could\ not\ replace\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 {0}
+Could\ not\ replace\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03c4\u03bf {0}
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
+!Couldn't\ archive\ sketch=
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2\: {0}
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
-#: Sketch.java:620
-Couldn't\ do\ it=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03bf\u03bd\!
+#: Sketch.java:616
+!Couldn't\ do\ it=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
-Cut=\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae
+#: Editor.java:1149 Editor.java:2699
+!Cut=
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
+#: Preferences.java:90
Danish=\u0394\u03b1\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=\u039c\u03b5\u03af\u03c9\u03c3\u03b7 \u0395\u03c0\u03b9\u03c0\u03ad\u03b4\u03bf\u03c5 \u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
-#: Sketch.java:595 EditorHeader.java:314
-Delete=\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u0397 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03b4\u03b5\u03bd \u03b1\u03bd\u03c4\u03b1\u03c0\u03bf\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9, \u03b5\u03bb\u03ad\u03be\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03c7\u03b8\u03b5\u03af \u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1, \u03ae \u0395\u03a0\u0391\u039d\u0395\u039a\u0399\u039d\u0397\u03a3\u03a4\u0395 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03b1\u03c2 \u03b1\u03bc\u03ad\u03c3\u03c9\u03c2 \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5;
+!Discard\ all\ changes\ and\ reload\ sketch?=
-#: Editor.java:2017
-Don't\ Save=\u038c\u03c7\u03b9 \u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7
+#: Editor.java:2064
+!Don't\ Save=
-#: Editor.java:2228 Editor.java:2264
-Done\ Saving.=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2.
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
-#: Editor.java:2463
-Done\ burning\ bootloader.=\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae bootloader \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2.
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=\u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2.
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
-#: Editor.java:2517
-Done\ printing.=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2
+#: Editor.java:2564
+!Done\ printing.=
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2.
-
-#: Preferences.java:90
-Dutch=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-
-#: Editor.java:1116
-Edit=\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1
-
-#: Preferences.java:354
-Editor\ font\ size\:\ =\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5\:
-
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
#: Preferences.java:91
+Dutch=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+!Edit=
+
+#: Preferences.java:370
+Editor\ font\ size\:\ =\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2\:
+
+#: Preferences.java:353
+Editor\ language\:\ =\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2\:
+
+#: Preferences.java:92
English=\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac
-#: Editor.java:1049
-Environment=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1
-#: Sketch.java:1069 Sketch.java:1092
-Error\ adding\ file=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
-#: debug/Compiler.java:426
-Error\ compiling.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\u03c2.
+#: debug/Compiler.java:369
+!Error\ compiling.=
-#: Base.java:1433
-Error\ getting\ the\ Arduino\ data\ folder.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03bf\u03c5 Arduino.
+#: Base.java:1674
+Error\ getting\ the\ Arduino\ data\ folder.=\u039b\u03ac\u03b8\u03bf\u03c2 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03bf\u03c5 Arduino
-#: Serial.java:567
+#: Serial.java:593
#, java-format
-Error\ inside\ Serial.{0}()=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03b7\u03bd Serial.{0}()
+!Error\ inside\ Serial.{0}()=
#: ../../../processing/app/Base.java:1232
!Error\ loading\ libraries=
@@ -403,26 +433,26 @@ Error\ inside\ Serial.{0}()=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03ad\u0
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2 "{0}".
+!Error\ opening\ serial\ port\ ''{0}''.=
-#: Preferences.java:261
-Error\ reading\ preferences=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd
+#: Preferences.java:277
+Error\ reading\ preferences=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ac\u03bd\u03b1\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03c9\u03bd
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5\n(\u03ae \u03bc\u03b5\u03c4\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b5) \u03c4\u03bf {0} \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf Arduino.
+Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03c9\u03bd. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 (\u03ae \u03bc\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5)\n{0} \u03ba\u03b1\u03b9 \u03be\u03b1\u03bd\u03b1\u03be\u03b5\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf Arduino.
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 bootloader.
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
#: ../../../processing/app/Editor.java:2555
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
@@ -431,236 +461,246 @@ Error\ while\ burning\ bootloader.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u
#, java-format
Error\ while\ loading\ code\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 {0}
-#: Editor.java:2520
-Error\ while\ printing.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7.
+#: Editor.java:2567
+!Error\ while\ printing.=
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
-!Estonian=
+#: Preferences.java:93
+Estonian=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac
-#: Editor.java:509
-Examples=\u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0397 \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5, \u03bf\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03c0\u03c1\u03ce\u03c4\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd.
+#: Editor.java:516
+!Examples=
-#: Base.java:1814
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
-File=\u0391\u03c1\u03c7\u03b5\u03af\u03bf
+#: Editor.java:491
+!File=
#: Preferences.java:94
-Filipino=\u03a6\u03b9\u03bb\u03b9\u03c0\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
+Filipino=\u03a6\u03b9\u03bb\u03bb\u03b9\u03c0\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
#: FindReplace.java:124 FindReplace.java:127
Find=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7
-#: Editor.java:1235
-Find\ Next=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u0395\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5
+#: Editor.java:1249
+!Find\ Next=
-#: Editor.java:1245
-Find\ Previous=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5
+#: Editor.java:1259
+!Find\ Previous=
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
-#: Editor.java:1220
-Find...=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7...
+#: Editor.java:1234
+!Find...=
#: FindReplace.java:80
Find\:=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7\:
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=\u0394\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 & \u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
+!Fix\ Encoding\ &\ Reload=
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
+#: Preferences.java:95
French=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac
-#: Editor.java:1083
-Frequently\ Asked\ Questions=\u03a3\u03c5\u03c7\u03bd\u03ad\u03c2 \u0395\u03c1\u03c9\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
-#: Preferences.java:95
-Galician=\u0393\u03b1\u03bb\u03b9\u03ba\u03b9\u03b1\u03bd\u03ac
+#: Preferences.java:96
+!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
+#: Preferences.java:97
German=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac
-#: Editor.java:1041
-Getting\ Started=\u039e\u03b5\u03ba\u03af\u03bd\u03b7\u03bc\u03b1
+#: Editor.java:1054
+!Getting\ Started=
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
Greek=\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac
-#: Base.java:1799
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
-Guide_MacOSX.html=Guide_MacOSX.html
+#: Base.java:2071
+Guide_MacOSX.html=\u039f\u03b4\u03b7\u03b3\u03cc\u03c2_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
-Guide_Windows.html=Guide_Windows.html
+#: Base.java:2073
+Guide_Windows.html=\u039f\u03b4\u03b7\u03b3\u03cc\u03c2_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
-Help=\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1
+#: Editor.java:1015
+!Help=
-#: ../../../processing/app/Preferences.java:98
-!Hindi=
+#: Preferences.java:99
+Hindi=\u03a7\u03af\u03bd\u03c4\u03b9
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u03a4\u03af \u03b8\u03b1 \u03bb\u03ad\u03b3\u03b1\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5\n\u03bd\u03b1 \u03c4\u03bf \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03b5\u03c4\u03b5;
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=\u03a0\u03c9\u03c2 \u03c4\u03b7\u03bd \u03b5\u03af\u03b4\u03b1\u03c4\u03b5; Borges;
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
-#: Preferences.java:98
-Hungarian=\u039f\u03c5\u03b3\u03b3\u03c1\u03b9\u03ba\u03ac
+#: Preferences.java:100
+Hungarian=\u039f\u03c5\u03b3\u03b3\u03b1\u03c1\u03ad\u03b6\u03b9\u03ba\u03b1
#: FindReplace.java:96
-Ignore\ Case=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03a0\u03b5\u03b6\u03ce\u03bd/\u039a\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03bd
+Ignore\ Case=\u0391\u03b3\u03bd\u03cc\u03b7\u03c3\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c0\u03cc\u03b8\u03b5\u03c3\u03b7
-#: Base.java:1207
-Ignoring\ bad\ library\ name=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 \u03bc\u03b5 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1
+#: Base.java:1058
+Ignoring\ bad\ library\ name=\u03a4\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 \u03b1\u03b3\u03bd\u03bf\u03ae\u03b8\u03b7\u03ba\u03b5
-#: Base.java:1132
+#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1
-#: Editor.java:629
-Import\ Library...=\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2...
+#: Editor.java:636
+!Import\ Library...=
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=\u0391\u03cd\u03be\u03b7\u03c3\u03b7 \u0395\u03c0\u03b9\u03c0\u03ad\u03b4\u03bf\u03c5 \u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
-#: Preferences.java:99
-!Indonesian=
+#: Preferences.java:101
+Indonesian=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
+#: Preferences.java:102
Italian=\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac
-#: Preferences.java:101
-Japanese=\u0399\u03b1\u03c0\u03c9\u03bd\u03b9\u03ba\u03ac
-
-#: Preferences.java:102
-!Korean=
-
#: Preferences.java:103
-Latvian=\u039b\u03b5\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+Japanese=\u0393\u03b9\u03b1\u03c0\u03c9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
#: Preferences.java:104
-!Lithuaninan=
+Korean=\u039a\u03bf\u03c1\u03b5\u03ac\u03c4\u03b9\u03ba\u03b1
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b9\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03c3\u03b1\u03c2. \u0388\u03bb\u03b5\u03b3\u03be\u03c4\u03b5 \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2"
+
+#: Preferences.java:106
+Lithuaninan=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1\u03c2
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
+#: Base.java:2112
Message=\u039c\u03ae\u03bd\u03c5\u03bc\u03b1
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u039b\u03b5\u03af\u03c0\u03b5\u03b9 \u03c4\u03bf */ \u03b1\u03c0\u03cc \u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03b5\u03bd\u03cc\u03c2 /* \u03c3\u03c7\u03bf\u03bb\u03af\u03bf\u03c5 */
+#: Editor.java:2156
+!Moving=
-#: Preferences.java:433
-More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03b8\u03bf\u03cd\u03bd \u03b1\u03c0\u03b5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
-#: Editor.java:2109
-Moving=\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac
-
-#: Sketch.java:286
-Name\ for\ new\ file\:=\u038c\u03bd\u03bf\u03bc\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5\:
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
-New=\u039d\u03ad\u03bf
+#: EditorToolbar.java:41 Editor.java:493
+New=\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1
#: EditorToolbar.java:46
-New\ Editor\ Window=\u039d\u03ad\u03bf \u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2
+New\ Editor\ Window=\u039d\u03ad\u03bf \u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae
#: EditorHeader.java:292
-New\ Tab=\u039d\u03ad\u03b1 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1
+!New\ Tab=
#: SerialMonitor.java:112
-Newline=\u039d\u03ad\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae
+!Newline=
#: EditorHeader.java:340
-Next\ Tab=\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1
+!Next\ Tab=
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=\u038c\u03c7\u03b9
-#: debug/Compiler.java:79
-No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03c7\u03b8\u03b5\u03af \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03bf \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -> \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
-No\ changes\ necessary\ for\ Auto\ Format.=\u0394\u03b5\u03bd \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=\u0394\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03b5\u03af \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
#: Platform.java:167
-No\ launcher\ available=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2
+!No\ launcher\ available=
#: SerialMonitor.java:112
-No\ line\ ending=\u03a7\u03c9\u03c1\u03af\u03c2 \u03c4\u03ad\u03bb\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2
+!No\ line\ ending=
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u038c\u03c7\u03b9 \u03c3\u03bf\u03b2\u03b1\u03c1\u03ac \u03c4\u03ce\u03c1\u03b1, \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03c4\u03b5 \u03bb\u03af\u03b3\u03bf \u03c6\u03c1\u03ad\u03c3\u03ba\u03bf \u03b1\u03ad\u03c1\u03b1.
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u039f\u03c7\u03b9 \u03b1\u03bb\u03ae\u03b8\u03b5\u03b9\u03b1, \u03b5\u03af\u03bd\u03b1\u03b9 \u03ce\u03c1\u03b1 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03b9\u03c2 \u03bb\u03af\u03b3\u03bf \u03c6\u03c1\u03ad\u03c3\u03ba\u03bf \u03b1\u03ad\u03c1\u03b1
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b3\u03b9\u03b1 \u03c4\u03bf "{0}"
+!No\ reference\ available\ for\ "{0}"=
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=M\u03ae \u03b1\u03bd\u03b5\u03c0\u03b1\u03bd\u03cc\u03c1\u03b8\u03c9\u03c4\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2.
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-Nope=\u03a4\u03c3\u03bf\u03cd\!
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u039c\u03b7 \u03bc\u03bf\u03b9\u03c1\u03b1\u03af\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03c3\u03c5\u03bd\u03ad\u03b2\u03b7 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03b5\u03b4\u03c1\u03b1\u03af\u03c9\u03c3\u03b7
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
@@ -668,81 +708,87 @@ Nope=\u03a4\u03c3\u03bf\u03cd\!
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=OK
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=\u0388\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
#: EditorToolbar.java:41
Open=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1
-#: Editor.java:2641
-Open\ URL=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 URL
+#: Editor.java:2688
+!Open\ URL=
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 Arduino...
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=\u0386\u03bd\u03bf\u03b9\u03be\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf Arduino...
#: EditorToolbar.java:46
-Open\ in\ Another\ Window=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c3\u03b5 \u039d\u03b5\u03bf \u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf
+Open\ in\ Another\ Window=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c3\u03b5 \u03ac\u03bb\u03bb\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1...
-#: Editor.java:556
-Page\ Setup=\u03a1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2
+#: Editor.java:563
+!Page\ Setup=
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
-Paste=\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7
+#: Editor.java:1189 Editor.java:2731
+!Paste=
-#: Preferences.java:105
-Persian=\u03a0\u03ad\u03c1\u03c3\u03b9\u03ba\u03b1
+#: Preferences.java:109
+Persian=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac
-#: debug/Compiler.java:465
-Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI \u03b1\u03c0\u03cc \u03c4 \u03bc\u03b5\u03bd\u03bf\u03cd \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf -> \u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2.
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf JDK 1.5 \u03ae \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf.
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf JDK 1.5 \u03ae \u03bd\u03b5\u03cc\u03c4\u03b5\u03c1\u03bf
-#: Preferences.java:106
-!Polish=
+#: Preferences.java:110
+Polish=\u03a0\u03bf\u03bb\u03c9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
-Preferences=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+Preferences=\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2
#: FindReplace.java:123 FindReplace.java:128
Previous=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf
#: EditorHeader.java:326
-Previous\ Tab=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1
+!Previous\ Tab=
-#: Editor.java:564
-Print=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7
+#: Editor.java:571
+!Print=
-#: Editor.java:2524
-Printing\ canceled.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7\u03c2.
+#: Editor.java:2571
+!Printing\ canceled.=
-#: Editor.java:2500
-Printing...=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7...
+#: Editor.java:2547
+!Printing...=
-#: Base.java:1671
+#: Base.java:1957
Problem\ Opening\ Folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u0391\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5
-#: Base.java:1647
-Problem\ Opening\ URL=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u0391\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 URI
+#: Base.java:1933
+Problem\ Opening\ URL=\u03a0\u03c1\u03bf\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c3\u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2
-#: Base.java:220
-Problem\ Setting\ the\ Platform=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc \u03c4\u03b7\u03c2 \u03a0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1\u03c2
+#: Base.java:227
+Problem\ Setting\ the\ Platform=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03b5\u03b4\u03c1\u03b1\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1\u03c2
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
!Problem\ accessing\ board\ folder\ /www/sd=
@@ -750,248 +796,258 @@ Problem\ Setting\ the\ Platform=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
-Problem\ getting\ data\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd
+#: Base.java:1673
+Problem\ getting\ data\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03bc\u03b5\u03c4\u03b1\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 {0} \u03c3\u03c4\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
#: debug/Uploader.java:209
-Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1. \u0394\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u03b3\u03b9\u03b1 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2.
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1\u03c2
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u0397 Processing \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03c4\u03b1 \u03b4\u03b9\u03ba\u03ac \u03c4\u03b7\u03c2 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1\n\u03ba\u03b1\u03b9 \u03ac\u03bb\u03bb\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 \u03ba\u03b1\u03c4\u03ac\u03bb\u03b7\u03be\u03b7 .ino \u03ae .pde
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
-Programmer=\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae\u03c2
+#: Editor.java:704
+!Programmer=
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=\u0388\u03be\u03bf\u03b4\u03bf\u03c2
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
-#: Editor.java:1065
-Reference=\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac
+#: Editor.java:1078
+!Reference=
#: EditorHeader.java:300
-Rename=\u039c\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1
+!Rename=
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7
#: FindReplace.java:122 FindReplace.java:129
-Replace\ &\ Find=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 & \u0395\u03cd\u03c1\u03b5\u03c3\u03b7
+Replace\ &\ Find=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7
#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u038c\u03bb\u03c9\u03bd
+Replace\ All=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03c3\u03b1\u03c2 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 {0};
+!Replace\ the\ existing\ version\ of\ {0}?=
#: FindReplace.java:81
-Replace\ with\:=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b5\:
+Replace\ with\:=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03bc\u03b5\:
-#: Preferences.java:109
-Romanian=\u03a1\u03bf\u03c5\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac
+#: Preferences.java:113
+Romanian=\u03a1\u03bf\u03c5\u03bc\u03ac\u03bd\u03b9\u03ba\u03b1
-#: Preferences.java:110
-!Russian=
+#: Preferences.java:114
+Russian=\u03a1\u03ce\u03c3\u03c3\u03b9\u03ba\u03b1
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7
-#: Editor.java:530
-Save\ As...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03a9\u03c2...
+#: Editor.java:537
+!Save\ As...=
-#: Editor.java:2270
-Save\ Canceled.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2.
+#: Editor.java:2317
+!Save\ Canceled.=
-#: Editor.java:2420
-Save\ changes\ before\ export?=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c0\u03c1\u03af\u03bd \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae;
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03bf "{0}";
+!Save\ changes\ to\ "{0}"?\ \ =
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Save sketch folder as...
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
-#: Editor.java:2223 Editor.java:2261
-Saving...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7...
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 (\u03ae \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5) \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1 \u03c3\u03b1\u03c2...
+#: Base.java:1909
+Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0395\u03c0\u03ad\u03bb\u03ad\u03be\u03b5 (\u03ae \u03c6\u03c4\u03b9\u03ac\u03be\u03b5 \u03bd\u03ad\u03bf) \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1...
-#: Editor.java:1184 Editor.java:2692
-Select\ All=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u038c\u03bb\u03c9\u03bd
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
-#: ../../../processing/app/Base.java:2845
-!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+#: Base.java:2636
+Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c0\u03bf\u03c5 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b1 \u03c0\u03bf\u03c5 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03ae \u03ac\u03bb\u03bb\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b1\u03c2
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd
+#: Preferences.java:330
+Select\ new\ sketchbook\ location=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bd\u03ad\u03b1 \u03b8\u03ad\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf Sketchbook
#: ../../../processing/app/debug/Compiler.java:146
!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
#: SerialMonitor.java:93
-Send=\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae
+!Send=
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
Serial\ Monitor=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u039f\u03b8\u03cc\u03bd\u03b7
-#: Serial.java:147
+#: Serial.java:174
#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0397 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 "{0}" \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03ae\u03b4\u03b7. \u0394\u03bf\u03ba\u03b9\u03bc\u03ac\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03c4\u03b5 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03c0\u03bf\u03c5 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c4\u03b7\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd.
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0397 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 "{0}" \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5. \u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03b1\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c3\u03c9\u03c3\u03c4\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 > \u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u0398\u03cd\u03c1\u03b1;
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u0397 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 {0} \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5.\n\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1;
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
-#: Base.java:1440
-Settings\ issues=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd
+#: Base.java:1681
+Settings\ issues=\u03a0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd
-#: Editor.java:634
-Show\ Sketch\ Folder=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
+#: Editor.java:641
+!Show\ Sketch\ Folder=
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b1\u03bd\u03b1\u03bb\u03c5\u03c4\u03b9\u03ba\u03ae\u03c2 \u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd\:
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
-#: Editor.java:600
-Sketch=\u03a3\u03c7\u03ad\u03b4\u03b9\u03bf
+#: Editor.java:607
+!Sketch=
-#: Sketch.java:1796
-Sketch\ Disappeared=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5
+#: Sketch.java:1754
+!Sketch\ Disappeared=
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u0394\u03b5\u03bd \u03a5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u039c\u03cc\u03bd\u03bf-\u0391\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
-#: Sketch.java:298
-Sketch\ is\ Untitled=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u038c\u03bd\u03bf\u03bc\u03b1
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
-#: Sketch.java:724
-Sketch\ is\ read-only=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf-\u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2
+#: Sketch.java:720
+!Sketch\ is\ read-only=
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u03a0\u03bf\u03bb\u03cd \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf; \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ad\u03c2 \u03c9\u03c3\u03c4\u03ad \u03bd\u03b1 \u03c4\u03bf \u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03c4\u03b5.
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
-#: Editor.java:503
-Sketchbook=\u03a3\u03c7\u03ad\u03b4\u03b9\u03b1
-
-#: Base.java:257
-Sketchbook\ folder\ disappeared=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5
-
-#: Preferences.java:299
-Sketchbook\ location\:=\u03a4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03a3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd\:
-
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u039a\u03ac\u03c0\u03bf\u03b9\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b7\u03bb\u03c9\u03bc\u03ad\u03bd\u03b1 \u03c9\u03c2 "\u03bc\u03cc\u03bd\u03bf-\u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7", \u03bf\u03c0\u03cc\u03c4\u03b5 \u03b8\u03b1\n\u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03be\u03b1\u03bd\u03b1\u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1,\n\u03ba\u03b1\u03b9 \u03bd\u03b1 \u03be\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5.
-
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u039a\u03ac\u03c0\u03bf\u03b9\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 "\u03bc\u03cc\u03bd\u03bf-\u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2", \u03bf\u03c0\u03cc\u03c4\u03b5 \u03b8\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af\n\u03bd\u03b1 \u03be\u03b1\u03bd\u03b1-\u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1.
-
-#: Sketch.java:461
+#: ../../../processing/app/Sketch.java:1639
#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u039b\u03c5\u03c0\u03bf\u03cd\u03bc\u03b1\u03c3\u03c4\u03b5, \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03ad\u03bd\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf (\u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2) \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{0}".
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
-#: Preferences.java:111
-Spanish=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac
-
-#: Base.java:537
-Sunshine=\u039b\u03b9\u03b1\u03ba\u03ac\u03b4\u03b1
-
-#: Preferences.java:83
-!System\ Default=
-
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
-
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0397 \u03bb\u03ad\u03be\u03b7 'BYTE' \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.
-
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Client \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetClient.
-
-#: debug/Compiler.java:477
-The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Server \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetServer.
-
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Udp \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetUdp.
-
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u03a4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c0\u03b1\u03c1\u03b1\u03c4\u03af\u03b8\u03b5\u03c4\u03b1\u03b9, \u03b1\u03bb\u03bb\u03ac \u03c4\u03bf Arduino \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03c4\u03ac\u03be\u03b5\u03b9.
-
-#: Editor.java:2100
-#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf "{0}" \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03ad\u03c3\u03b1\n\u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{1}".\n\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5, \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1;
-
-#: Base.java:1202
-#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u0397 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 "{0}" \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af.\n\u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bc\u03cc\u03bd\u03bf \u03b2\u03b1\u03c3\u03b9\u03ba\u03ac \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b8\u03bc\u03bf\u03cd\u03c2.\n(\u03bc\u03cc\u03bd\u03bf ASCII \u03ba\u03b1\u03b9 \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b5\u03bd\u03ac, \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc)
-
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u03a4\u03bf \u03ba\u03c5\u03c1\u03af\u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7.\n(\u03af\u03c3\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b2\u03b5\u03af\u03c4\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03b9\u03bf\n"\u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc" \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03bf\u03c5)
-
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03ac\u03b5\u03b9 \u03bc\u03b5 \u03c4\u03b5\u03bb\u03b5\u03af\u03b1.
-
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Arduino \u03b3\u03b9\u03b1 \u03bd\u03b1\n\u03b1\u03bd\u03b1\u03bd\u03b5\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c3\u03b1\u03c2.
-
-#: Base.java:1125
-#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf "{0}" \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af.\n\u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bc\u03cc\u03bd\u03bf \u03b2\u03b1\u03c3\u03b9\u03ba\u03ac \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2.\n(\u039c\u03cc\u03bd\u03bf ASCII \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b5\u03bd\u03ac, \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc).\n\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03b1\u03bb\u03b1\u03c7\u03b8\u03b5\u03af\u03c4\u03b5 \u03b1\u03c0\u03cc \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1, \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf\n{1}
-
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5.\n\u0398\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03bf\u03c5\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1-\u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c3\u03c4\u03b7\u03bd \u03af\u03b4\u03b9\u03b1 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1,\n\u03b1\u03bb\u03bb\u03ac \u03c4\u03b1 \u03c0\u03ac\u03bd\u03c4\u03b1 \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03bf\u03cd\u03bd.
-
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bb\u03bb\u03ac\u03ba\u03b5\u03b9. \u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1\n\u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 ASCII \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2 (\u03b1\u03bb\u03bb\u03ac \u03cc\u03c7\u03b9 \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc).\n\u0398\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03b5\u03c0\u03af\u03c3\u03b7\u03c2 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bb\u03b9\u03b3\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc 64 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2.
+#: Editor.java:510
+!Sketchbook=
#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a4\u03bf Arduino \u03b8\u03b1 \u03b3\u03c5\u03c1\u03af\u03c3\u03b5\u03b9 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03bd\u03b5\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b1\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03bf. \u03a3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1, \u03c4\u03bf Arduino \u03b8\u03b1 \u03c3\u03c4\u03b1\u03bc\u03b1\u03c4\u03ae\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03bc\u03b9\u03bb\u03ac\u03b5\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5\n\u03c3\u03b5 \u03c4\u03c1\u03af\u03c4\u03bf \u03c0\u03c1\u03cc\u03c3\u03c9\u03c0\u03bf.
+Sketchbook\ folder\ disappeared=\u03a7\u03ac\u03b8\u03b7\u03ba\u03b5 \u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 Sketchbook
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03ad\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c3\u03c4\u03b7\u03bd \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03b1\u03c0\u03cc \u03cc\u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5.\n\u0394\u03b5\u03bd \u03ba\u03ac\u03bd\u03c9 \u03c4\u03af\u03c0\u03bf\u03c4\u03b1, \u03c0\u03bf\u03c5 \u03bd\u03b1 \u03c3\u03ba\u03b1\u03c3\u03b5\u03b9\u03c2
+#: Preferences.java:315
+Sketchbook\ location\:=\u0398\u03ad\u03c3\u03b7 Sketchbook\:
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+Spanish=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac
+
+#: Base.java:540
+Sunshine=\u039b\u03b9\u03b1\u03ba\u03ac\u03b4\u03b1
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+System\ Default=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2
+
+#: Preferences.java:116
+Tamil=\u03a4\u03b1\u03bc\u03af\u03bb
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u03a4\u03bf \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03c3\u03c5\u03bd\u03ad\u03b2\u03b7, \u03cc\u03bc\u03c9\u03c2 \u03c4\u03bf Arduino \u03b4\u03b5\u03bd \u03b8\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u0397 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 "{0}" \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af.\n\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b2\u03b1\u03c3\u03b9\u03ba\u03bf\u03cd\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03c5\u03c2.\n(\u03bc\u03cc\u03bd\u03bf ASCII \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b5\u03bd\u03ac, \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc)
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a0\u03b9\u03b8\u03b1\u03bd\u03cc\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino \u03c0\u03c1\u03bf\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03bd\u03b5\u03c9\u03b8\u03b5\u03af \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03c4\u03bf\u03c5 Sketchbook.
+
+#: Base.java:1430
+#, java-format
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf "{0}" \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03b5\u03b9\u03b7\u03b8\u03b5\u03af.\n\u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bc\u03cc\u03bd\u03bf \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2\n(ASCII- \u03bc\u03cc\u03bd\u03bf \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b5\u03bd\u03ac, \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc).\n\u0393\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03be\u03b1\u03bd\u03b1\u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1, \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf\n {1}
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 Sketchbook \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a4\u03bf Arduino \u03b8\u03b1 \u03b5\u03c0\u03b1\u03bd\u03ad\u03bb\u03b8\u03b5\u03b9 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b8\u03ad\u03c3\u03b7 \u03c4\u03bf\u03c5 Sketchbook, \n\u03ba\u03b1\u03b9 \u03b8\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03bd\u03ad\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf Sketchbook \u03b1\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9.\n\u03a4\u03cc\u03c4\u03b5 \u03c4\u03bf Arduino \u03b8\u03b1 \u03c3\u03c4\u03b1\u03bc\u03b1\u03c4\u03ae\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5 \u03c3\u03b5 \u03c4\u03c1\u03af\u03c4\u03bf \u03c0\u03c1\u03cc\u03c3\u03c9\u03c0\u03bf.
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
-Time\ for\ a\ Break=\u038f\u03c1\u03b1 \u03b3\u03b9\u03b1 \u0394\u03b9\u03ac\u03bb\u03b5\u03b9\u03bc\u03b1
+#: Base.java:535
+Time\ for\ a\ Break=\u038f\u03c1\u03b1 \u03b3\u03b9\u03b1 \u03b4\u03b5\u03b9\u03ac\u03bb\u03b5\u03b9\u03bc\u03b1
-#: Editor.java:656
-Tools=\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1
+#: Editor.java:663
+!Tools=
-#: Editor.java:1057
-Troubleshooting=\u0391\u03bd\u03c4\u03b9\u03bc\u03b5\u03c4\u03ce\u03c0\u03b9\u03c3\u03b7 \u03a0\u03c1\u03bf\u03b2\u03bb\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd
+#: Editor.java:1070
+!Troubleshooting=
#: ../../../processing/app/Preferences.java:117
!Turkish=
@@ -1010,7 +1066,7 @@ Troubleshooting=\u0391\u03bd\u03c4\u03b9\u03bc\u03b5\u03c4\u03ce\u03c0\u03b9\u03
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1018,214 +1074,213 @@ Troubleshooting=\u0391\u03bd\u03c4\u03b9\u03bc\u03b5\u03c4\u03ce\u03c0\u03b9\u03
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=\u0386\u03c0\u03b9\u03b1\u03c3\u03c4\u03bf \u03b5\u03af\u03b4\u03bf\u03c2 \u03b5\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2\: {0}
+!Uncaught\ exception\ type\:\ {0}=
-#: Editor.java:1119 Editor.java:1341
-Undo=\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7
+#: Editor.java:1133 Editor.java:1355
+!Undo=
#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1, \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2.\n\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 URL \u03ba\u03b1\u03b9 \u03c6\u03b1\u03ba\u03ad\u03bb\u03c9\u03bd, \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1\n\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae "launcher\=/path/to/app" \u03c3\u03c4\u03bf preferences.txt
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
#: UpdateCheck.java:111
-Update=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7
+!Update=
-#: Preferences.java:412
-Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0391\u03bd\u03b1\u03b2\u03ac\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u03bd\u03ad\u03b1 \u03ba\u03b1\u03c4\u03ac\u03bb\u03b7\u03be\u03b7 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 (.pde -> .ino)
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
-#: Editor.java:538 EditorToolbar.java:41
-Upload=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
+#: EditorToolbar.java:41 Editor.java:545
+Upload=\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u039c\u03b5 \u03a7\u03c1\u03ae\u03c3\u03b7 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae
+#: EditorToolbar.java:46 Editor.java:553
+Upload\ Using\ Programmer=\u0395\u03be\u03b1\u03b3\u03ce\u03b3\u03b7 \u039c\u03ad\u03c3\u03c9 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2.
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 I/O...
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
-#: Sketch.java:1661
-Uploading...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7...
+#: Sketch.java:1622
+!Uploading...=
-#: Editor.java:1255
-Use\ Selection\ For\ Find=\u03a7\u03c1\u03ae\u03c3\u03b7 \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b3\u03b9\u03b1 \u0395\u03cd\u03c1\u03b5\u03c3\u03b7
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
-#: Preferences.java:393
-Use\ external\ editor=\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2
+#: Preferences.java:409
+!Use\ external\ editor=
#: EditorToolbar.java:41 EditorToolbar.java:46
-Verify=\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7
+Verify=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7
-#: Editor.java:602
-Verify\ /\ Compile=\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 / \u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7
+#: Editor.java:609
+!Verify\ /\ Compile=
-#: Preferences.java:384
-Verify\ code\ after\ upload=\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
-#: Editor.java:1091
-Visit\ Arduino.cc=\u0395\u03c0\u03af\u03c3\u03ba\u03b5\u03c8\u03b7 \u03c3\u03c4\u03bf Arduino.cc
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
-#: Base.java:1842
-Warning=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7
+#: Editor.java:1105
+!Visit\ Arduino.cc=
-#: debug/Compiler.java:501
-Wire.receive()\ has\ been\ renamed\ Wire.read().=\u0397 Wire.receive() \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 Wire.read().
+#: Base.java:2128
+Warning=\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7
-#: debug/Compiler.java:495
-Wire.send()\ has\ been\ renamed\ Wire.write().=\u0397 Wire.send() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 Wire.write().
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
#: FindReplace.java:105
-Wrap\ Around=\u0391\u03bd\u03b1\u03b4\u03af\u03c0\u03bb\u03c9\u03c3\u03b7
+!Wrap\ Around=
#: debug/Uploader.java:213
-Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0392\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bb\u03ac\u03b8\u03bf\u03c2 \u03bc\u03b9\u03ba\u03c1\u03bf\u03b5\u03bb\u03b5\u03b3\u03ba\u03c4\u03ae\u03c2. \u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03b1\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c3\u03c9\u03c3\u03c4\u03ae \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 > \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1;
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=\u039d\u03b1\u03b9
-#: Sketch.java:1078
-You\ can't\ fool\ me=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c2 \u03bd\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c1\u03bf\u03b9\u03b4\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b5\u03bc\u03ad\u03bd\u03b1\!
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf .cpp \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 \u03af\u03b4\u03b9\u03bf \u03bc\u03b5 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5.
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 "{0}"\n\u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ad\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf .cpp \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1.
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c9\u03c2 "{0}"\n\u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ad\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf .cpp \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1.
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5. \u0391\u03c5\u03c4\u03cc \u03b4\u03b5 \u03b8\u03b1 \u03b5\u03af\u03c7\u03b5 \u03c4\u03ad\u03bb\u03bf\u03c2.
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
-#: Base.java:1602
-You\ forgot\ your\ sketchbook=\u039e\u03b5\u03c7\u03ac\u03c3\u03b1\u03c4\u03b5 \u03c4\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1 \u03c3\u03b1\u03c2
+#: Base.java:1888
+You\ forgot\ your\ sketchbook=\u039e\u03ad\u03c7\u03b1\u03c3\u03b5\u03c2 \u03c4\u03bf Sketchbook \u03c3\u03bf\u03c5
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0388\u03c7\u03b5\u03c4\u03b5 \u03c6\u03c4\u03ac\u03c3\u03b5\u03b9 \u03c4\u03bf \u03cc\u03c1\u03b9\u03bf \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1\u03c2 \u03c4\u03c9\u03bd \u03bd\u03ad\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b1\u03bd\u03b1\n\u03bc\u03ad\u03c1\u03b1. \u0393\u03b9\u03b1\u03c4\u03af \u03b4\u03b5\u03bd \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b2\u03cc\u03bb\u03c4\u03b1 \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b1;
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0388\u03c6\u03c4\u03b1\u03c3\u03b5\u03c2 \u03c4\u03bf \u03cc\u03c1\u03b9\u03bf \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1\u03c2 \u03c4\u03c9\u03bd \u03bd\u03ad\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd, \u03b3\u03b9\u03b1 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1.\n\u03a4\u03b9 \u03b8\u03b1 \u0384\u03bb\u03b5\u03b3\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03af\u03b3\u03bf \u03c0\u03b5\u03c1\u03c0\u03ac\u03c4\u03b7\u03bc\u03b1;
-#: ../../../processing/app/Base.java:2847
-!ZIP\ files\ or\ folders=
+#: Base.java:2638
+ZIP\ files\ or\ folders=\u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9
-#: ../../../processing/app/Base.java:2870
-!Zip\ doesn't\ contain\ a\ library=
+#: Base.java:2661
+Zip\ doesn't\ contain\ a\ library=\u03a4\u03bf \u03c3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=\u03a4\u03bf ".{0}" \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03ba\u03b1\u03c4\u03ac\u03bb\u03b7\u03be\u03b7.
+!".{0}"\ is\ not\ a\ valid\ extension.=
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u03a4\u03bf "{0}" \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03bc\u03b7 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03c3\u03b9\u03bc\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2. \u0391\u03bd \u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03b5\u03af\u03c7\u03b5 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03bc\u03b5 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03b7\u03c2 Processing, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 > \u0394\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 & \u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03bd\u03b5\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b1\u03c2 \u03c3\u03b5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 UTF-8. \u0391\u03bb\u03bb\u03b9\u03ce\u03c2, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03b1\u03bb\u03b1\u03c7\u03b8\u03b5\u03af\u03c4\u03b5 \u03b1\u03c0\u03cc \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1.
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u03a4\u03bf {0} \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2. \u0391\u03bd \u03b1\u03c5\u03c4\u03cc\u03c2 \u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2, \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b1 \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -> \u0394\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 & \u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03c7\u03c1\u03ae\u03c3\u03b7 UTF-8. \u03a3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03be\u03b1\u03bd\u03b1\u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1.
-#: debug/Compiler.java:466
-\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 0019, \u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \u03b2\u03b1\u03c3\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI.\n\u03a6\u03b1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \u03c4\u03b7\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5, \u03ae \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03ac\u03bb\u03bb\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03bf\u03c5 \u03b2\u03b1\u03c3\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI.\n\n
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03bb\u03ad\u03be\u03b7 'BYTE' \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd Serial.write() \u03b1\u03bd\u03c4\u03af \u03b1\u03c5\u03c4\u03ae\u03c2.\n\n
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03ba\u03bb\u03ac\u03c3\u03b7 Client \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetClient.\n\n
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03ba\u03bb\u03ac\u03c3\u03b7 Server \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetServer.\n\n
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03c3\u03c5\u03bd\u03ac\u03c1\u03c4\u03b7\u03c3\u03b7 Wire.receive() \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 Wire.read() \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bd\u03bf\u03c7\u03ae \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03b5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2.\n\n
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03c3\u03c5\u03bd\u03ac\u03c1\u03c4\u03b7\u03c3\u03b7 Wire.send() \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 Wire.write() \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bd\u03bf\u03c7\u03ae \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03b5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2.\n\n
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
!baud=
-#: Preferences.java:373
-compilation\ =\u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7
+#: Preferences.java:389
+!compilation\ =
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
-createNewFile()\ returned\ false=\u0397 createNewFile() \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 false
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
-environment=\u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd
+#: Base.java:2090
+environment=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd
-#: Editor.java:1094
-http\://arduino.cc/=http\://arduino.cc/
+#: Editor.java:1108
+!http\://arduino.cc/=
#: ../../../processing/app/debug/Compiler.java:49
!http\://github.com/arduino/Arduino/issues=
#: UpdateCheck.java:118
-http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
+!http\://www.arduino.cc/en/Main/Software=
#: UpdateCheck.java:53
-http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
+!http\://www.arduino.cc/latest.txt=
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 {0}
+!ignoring\ invalid\ font\ size\ {0}=
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
-name\ is\ null=\u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u039f buffer readBytesUntil() \u03b5\u03af\u03b1\u03bd\u03b9 \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 {0} bytes \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c4\u03bf\u03bd char {1}, \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b1\u03c5\u03c4\u03bf\u03cd
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1.. \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
-#: Editor.java:923
-serialMenu\ is\ null=\u03a4\u03bf serialMenu \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc
+#: Editor.java:932
+!serialMenu\ is\ null=
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u03b7 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 {0} \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae \u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03b7
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
+#: Preferences.java:391
+!upload=
-#: Preferences.java:375
-upload=\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.={0} \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
+!{0}\ files\ added\ to\ the\ sketch.=
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
-{0}\ returned\ {1}=\u03a4\u03bf {0} \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 {1}
+!{0}\ returned\ {1}=
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
-{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+!{0}\ |\ Arduino\ {1}=
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
-{0}.html={0}.html
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_en.po b/app/src/processing/app/i18n/Resources_en.po
index b1da8f1e7..e94ae7b6f 100644
--- a/app/src/processing/app/i18n/Resources_en.po
+++ b/app/src/processing/app/i18n/Resources_en.po
@@ -8,8 +8,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: 2012-10-31 15:17+0000\n"
-"Last-Translator: Deiv Xile Closing the last open sketch will quit Arduino."
+msgstr ""
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr ""
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr ""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr ""
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr ""
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr ""
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr ""
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr ""
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr ""
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr ""
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr ""
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr ""
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr ""
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr ""
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr ""
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr ""
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr ""
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr ""
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr ""
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr ""
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr ""
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr ""
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr ""
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr ""
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr ""
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr ""
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr ""
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr ""
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr ""
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr ""
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr ""
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr ""
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr ""
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr ""
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr ""
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr ""
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr ""
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr ""
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr ""
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr ""
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr ""
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr ""
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr ""
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr ""
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr ""
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr ""
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr ""
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr ""
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr ""
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr ""
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr ""
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr ""
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr ""
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr ""
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr ""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr ""
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr ""
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr ""
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr ""
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr ""
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr ""
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr ""
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr ""
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr ""
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr ""
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr ""
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr ""
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr ""
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr ""
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr ""
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr ""
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr ""
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr ""
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr ""
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
+msgid "English"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr ""
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr ""
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr ""
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr ""
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr ""
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr ""
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr ""
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr ""
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr ""
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr ""
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr ""
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr ""
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr ""
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr ""
+
+#: Editor.java:491
+msgid "File"
+msgstr ""
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr ""
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr ""
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr ""
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr ""
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr ""
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr ""
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr ""
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr ""
+
+#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr ""
+
+#: Preferences.java:97
+msgid "German"
+msgstr ""
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr ""
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr ""
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr ""
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr ""
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr ""
+
+#: Editor.java:1015
+msgid "Help"
+msgstr ""
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr ""
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr ""
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr ""
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr ""
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr ""
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr ""
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr ""
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr ""
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr ""
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr ""
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr ""
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr ""
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr ""
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr ""
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr ""
+
+#: Base.java:2112
+msgid "Message"
+msgstr ""
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr ""
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr ""
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr ""
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr ""
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr ""
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr ""
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr ""
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr ""
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr ""
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr ""
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr ""
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr ""
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr ""
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr ""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr ""
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr ""
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr ""
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr ""
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr ""
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr ""
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr ""
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr ""
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr ""
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr ""
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr ""
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr ""
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr ""
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr ""
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr ""
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr ""
+
+#: Editor.java:571
+msgid "Print"
+msgstr ""
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr ""
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr ""
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr ""
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr ""
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr ""
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr ""
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr ""
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr ""
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr ""
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr ""
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr ""
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr ""
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr ""
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr ""
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr ""
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr ""
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr ""
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr ""
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr ""
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr ""
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr ""
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr ""
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr ""
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr ""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr ""
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr ""
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr ""
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr ""
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr ""
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr ""
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr ""
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr ""
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr ""
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr ""
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr ""
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr ""
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr ""
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr ""
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr ""
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr ""
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr ""
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr ""
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr ""
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr ""
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr ""
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr ""
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr ""
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr ""
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr ""
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr ""
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr ""
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr ""
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr ""
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr ""
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr ""
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr ""
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr ""
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr ""
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr ""
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr ""
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr ""
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr ""
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr ""
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr ""
+
+#: Editor.java:663
+msgid "Tools"
+msgstr ""
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr ""
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr ""
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr ""
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr ""
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr ""
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr ""
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr ""
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr ""
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr ""
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr ""
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr ""
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr ""
+
+#: Base.java:2128
+msgid "Warning"
+msgstr ""
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr ""
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr ""
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr ""
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr ""
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr ""
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr ""
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr ""
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr ""
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr ""
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr ""
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr ""
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr ""
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr ""
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr ""
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr ""
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr ""
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr ""
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr ""
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr ""
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr ""
+
+#: Base.java:2080
+msgid "index.html"
+msgstr ""
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr ""
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr ""
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr ""
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr ""
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr ""
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr ""
+
+#: Preferences.java:391
+msgid "upload"
+msgstr ""
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr ""
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr ""
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr ""
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_en_GB.properties b/app/src/processing/app/i18n/Resources_en_GB.properties
new file mode 100644
index 000000000..db3ceff1d
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_en_GB.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+!About\ Arduino=
+
+#: Editor.java:650
+!Add\ File...=
+
+#: Base.java:963
+!Add\ Library...=
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
+
+#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
+!Aragonese=
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+!Browse=
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
+
+#: Sketch.java:455
+!Cannot\ Rename=
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+!Close=
+
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
+
+#: EditorConsole.java:152
+!Console\ Error=
+
+#: Editor.java:1157 Editor.java:2707
+!Copy=
+
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+!Could\ not\ delete\ {0}=
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+!Could\ not\ remove\ old\ version\ of\ {0}=
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+!Could\ not\ replace\ {0}=
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+!Cut=
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+!Danish=
+
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
+
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+!Don't\ Save=
+
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
+
+#: Editor.java:2564
+!Done\ printing.=
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+!Dutch=
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+!Edit=
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+!English=
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+!Error=
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+!Error\ opening\ serial\ port\ ''{0}''.=
+
+#: Preferences.java:277
+!Error\ reading\ preferences=
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+!Error\ while\ printing.=
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+!Estonian=
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+!Examples=
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+!File=
+
+#: Preferences.java:94
+!Filipino=
+
+#: FindReplace.java:124 FindReplace.java:127
+!Find=
+
+#: Editor.java:1249
+!Find\ Next=
+
+#: Editor.java:1259
+!Find\ Previous=
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+!Find...=
+
+#: FindReplace.java:80
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+!German=
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+!Greek=
+
+#: Base.java:2085
+!Guide_Environment.html=
+
+#: Base.java:2071
+!Guide_MacOSX.html=
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+!Guide_Windows.html=
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+!Help=
+
+#: Preferences.java:99
+!Hindi=
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+!Hungarian=
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+!Import\ Library...=
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
+
+#: Preferences.java:101
+!Indonesian=
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+!Italian=
+
+#: Preferences.java:103
+!Japanese=
+
+#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+!Lithuaninan=
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+!Message=
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+!Moving=
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+!New=
+
+#: EditorToolbar.java:46
+!New\ Editor\ Window=
+
+#: EditorHeader.java:292
+!New\ Tab=
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+!Next\ Tab=
+
+#: Preferences.java:78 UpdateCheck.java:108
+!No=
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+!Open=
+
+#: Editor.java:2688
+!Open\ URL=
+
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
+
+#: EditorToolbar.java:46
+!Open\ in\ Another\ Window=
+
+#: Base.java:903 Editor.java:501
+!Open...=
+
+#: Editor.java:563
+!Page\ Setup=
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+!Paste=
+
+#: Preferences.java:109
+!Persian=
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+!Please\ install\ JDK\ 1.5\ or\ later=
+
+#: Preferences.java:110
+!Polish=
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
+
+#: FindReplace.java:123 FindReplace.java:128
+!Previous=
+
+#: EditorHeader.java:326
+!Previous\ Tab=
+
+#: Editor.java:571
+!Print=
+
+#: Editor.java:2571
+!Printing\ canceled.=
+
+#: Editor.java:2547
+!Printing...=
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+!Problem\ Opening\ URL=
+
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+!Programmer=
+
+#: Base.java:783 Editor.java:593
+!Quit=
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+!Rename=
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
+
+#: FindReplace.java:122 FindReplace.java:129
+!Replace\ &\ Find=
+
+#: FindReplace.java:120 FindReplace.java:131
+!Replace\ All=
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+!Replace\ with\:=
+
+#: Preferences.java:113
+!Romanian=
+
+#: Preferences.java:114
+!Russian=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
+
+#: Editor.java:537
+!Save\ As...=
+
+#: Editor.java:2317
+!Save\ Canceled.=
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
+
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+!Send=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+!Settings\ issues=
+
+#: Editor.java:641
+!Show\ Sketch\ Folder=
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+!Sketch=
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
+
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
+
+#: Sketch.java:720
+!Sketch\ is\ read-only=
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+!Sketchbook\ folder\ disappeared=
+
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+!Time\ for\ a\ Break=
+
+#: Editor.java:663
+!Tools=
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+!Undo=
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+!Update=
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+!Uploading...=
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+!Verify=
+
+#: Editor.java:609
+!Verify\ /\ Compile=
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
+!Warning=
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+!Yes=
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+!environment=
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+!index.html=
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+!platforms.html=
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_es.po b/app/src/processing/app/i18n/Resources_es.po
index 05803b9b2..d29a7fe50 100644
--- a/app/src/processing/app/i18n/Resources_es.po
+++ b/app/src/processing/app/i18n/Resources_es.po
@@ -10,8 +10,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: 2012-11-05 19:45+0000\n"
-"Last-Translator: Descartex Closing the last open sketch will quit Arduino."
-msgstr ""
-" Viimase avatud visandi sulgemisel suletakse "
-"ka Arduino keskkond."
+msgstr " Viimase avatud visandi sulgemisel suletakse ka Arduino keskkond."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr ""
-" salvestamata muudatused "
-"lähevad kaduma"
+msgstr " salvestamata muudatused lähevad kaduma"
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
msgstr "\"{1}\" kasutas on fail nimega \"{0}\" juba olemas"
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
msgstr "Kaust \"{0}\" on juba olemas. Ei saa visandit avada."
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
-msgstr ""
+msgstr "\"{0}\" nimega teek on juba olemas"
#: UpdateCheck.java:103
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr ""
-"Saadaval on uuem versioon Arduinost.\n"
-"Kas soovid allalaadimislehte külastada?"
+msgstr "Saadaval on uuem versioon Arduinost.\nKas soovid avada allalaadimislehe?"
#: EditorConsole.java:153
msgid ""
@@ -89,41 +78,36 @@ msgid ""
"files used to store the console output."
msgstr "Konsooli väljundi salvestamiseks vajaliku faili avamisel tekkis viga."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
msgstr "Arduinost"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "Lisa fail..."
+msgstr "Lisa fail…"
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
-msgstr ""
+msgstr "Lisa teek…"
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"Faili kooditabeli muutmisel tekkis viga. Ära proovi\n"
-"seda visandit salvestada kuna see võib olemasoleva\n"
-"üle kirjutada. Ava visand uuesti ning proovi uuesti."
+msgstr "Faili kooditabeli muutmisel tekkis viga. Ära proovi\nseda visandit salvestada kuna see võib olemasoleva\nüle kirjutada. Ava visand uuesti ning proovi uuesti.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr ""
-"Sinu masina platvormipõhise koodi laadimisel\n"
-"tekkis tundmatu viga."
-
-#: Preferences.java:84
-msgid "Arabic"
-msgstr ""
+msgstr "Sinu masina platvormipõhise koodi laadimisel\ntekkis tundmatu viga."
#: Preferences.java:85
+msgid "Arabic"
+msgstr "Araabia"
+
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
@@ -143,9 +127,7 @@ msgstr "Visandi arhiveerimine katkestatud."
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"Visandi arhiveerimine ebaõnnestus kuna seda\n"
-"ei saanud korralikult salvestada."
+msgstr "Visandi arhiveerimine ebaõnnestus kuna seda\nei saanud korralikult salvestada."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -155,70 +137,71 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"Ei saa Arduinot käivitada kuna seadete kausta\n"
-"loomine ei õnnestunud."
+msgstr "Ei saa Arduinot käivitada kuna\nseadete kausta loomine ei õnnestunud."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
-"Ei saa Arduinot käivitada kuna visandite kausta\n"
-"loomine ei õnnestunud."
+msgstr "Ei saa Arduinot käivitada kuna\nvisandite kausta loomine ei õnnestunud."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr ""
-"Arduino vajab tööks kogu JDK paigaldamist (mitte ainult JRE).\n"
-"Palun paigalda JDK versioon 1.5 või hilisem.\n"
-"Rohkem infot leiad viidetest."
+msgstr "Arduino vajab tööks kogu JDK paigaldamist (mitte ainult JRE).\nPalun paigalda JDK versioon 1.5 või hilisem.\nRohkem infot leiad viidetest."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
msgstr "Oled kindel, et soovid kustutada \"{0}\"?"
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
msgstr "Oled kindel, et soovid kustutada selle visandi?"
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
#: tools/AutoFormat.java:91
msgid "Auto Format"
msgstr "Automaatvormindus"
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
msgid "Auto Format Canceled: Too many left curly braces."
msgstr "Automaatvormindus katkestatud: liiga palju algavaid looksulge."
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
msgid "Auto Format Canceled: Too many left parentheses."
msgstr "Automaatvormindus katkestatud: liiga palju algavaid sulge."
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
msgid "Auto Format Canceled: Too many right curly braces."
msgstr "Automaatvormindus katkestatud: liiga palju lõppevaid looksulge."
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
msgid "Auto Format Canceled: Too many right parentheses."
msgstr "Automaatvormindus katkestatud: liiga palju lõppevaid sulge."
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
msgstr "Automaatvormindus tehtud."
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
msgstr "Seo .ino laiend automaatselt Arduinoga"
@@ -226,44 +209,48 @@ msgstr "Seo .ino laiend automaatselt Arduinoga"
msgid "Autoscroll"
msgstr "Isekerimine"
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
msgstr "Viga real: {0}"
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
msgstr "Vigane fail valitud"
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
msgstr ""
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Plaat"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "lisa NL+CR (\\r\\n)"
+msgstr "lisa NL+CR (\\\\r\\\\n)"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
msgstr "Sirvi"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
msgstr "Kompileerimise kaust on haihtunud või pole kirjutatav"
@@ -271,13 +258,17 @@ msgstr "Kompileerimise kaust on haihtunud või pole kirjutatav"
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
msgid "Burn Bootloader"
msgstr "Kirjuta buudilaadur"
-#: Editor.java:2457
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Buudilaaduri I/O plaadile kirjutamine (see võib kesta mõni minut)..."
+msgstr "Buudilaaduri I/O plaadile kirjutamine (see võib kesta mõni minut)…"
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -287,61 +278,77 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "Loobu"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
msgstr "Ümbernimetamine nurjus"
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "lisa CR (\\r)"
+msgstr "lisa CR (\\\\r)"
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr "Katalaani"
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
msgstr "Käivitamisel kontrolli uuendusi"
-#: Preferences.java:87
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
msgid "Chinese Simplified"
msgstr "Hiina (lihtsustatud)"
-#: Preferences.java:88
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr "Traditsiooniline Hiina"
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "Sulge"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
msgstr "Kommentaari lisamine/eemaldamine"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
msgstr "Kompilaatori viga, saada see kood {0}"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Visandi kompileerimine..."
+msgstr "Visandi kompileerimine…"
#: EditorConsole.java:152
msgid "Console Error"
msgstr "Konsooli viga"
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "Kopeeri"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
msgstr "Kopeeri HTML-ina"
@@ -349,41 +356,41 @@ msgstr "Kopeeri HTML-ina"
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
msgstr "Kopeeri foorumi jaoks"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "''{0}'' ei saa visandisse lisada."
+msgstr "\"{0}\" ei saa visandisse lisada."
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
msgstr "Ettenähtud kohta ei saa kopeerida."
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
msgstr "Visandi kausta pole võimalik luua"
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
msgstr "Visandi loomine nurjus."
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
msgstr "\"{0}\" pole võimalik kustutada."
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
msgstr "Ei saa kustutada olemasolevat faili \"{0}\"."
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "{0} pole võimalik kustutada."
+msgstr "{0} pole võimalik kustutada"
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -400,33 +407,27 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
-"URL avamine ebaõnnestus\n"
-"{0}"
+msgstr "URL avamine ebaõnnestus\n{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"Kausta avamine ebaõnnestus\n"
-"{0}"
+msgstr "Kausta avamine ebaõnnestus\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
-"Visandi uuesti salvestamine nurjus. Siin on tegemist tõsise probleemiga.\n"
-"Proovi lõigata ning kleepida oma kood mõnda teisse tekstiredaktorisse."
+msgstr "Visandi uuesti salvestamine nurjus. Siin on tegemist tõsise probleemiga.\nProovi lõigata ning kleepida oma kood mõnda teisse tekstiredaktorisse."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
msgstr "Visandi uuesti salvestamine ebaõnnestus"
@@ -434,46 +435,42 @@ msgstr "Visandi uuesti salvestamine ebaõnnestus"
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr ""
-"Ei saa avada värviteema seadeid.\n"
-"Processing tuleb uuesti paigaldada."
+msgstr "Ei saa avada värviteema seadeid.\nProcessing tuleb uuesti paigaldada."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
-"Ei saa avada vaikimisi seadeid.\n"
-"Arduino tuleb uuesti paigaldada."
+msgstr "Ei saa lugeda vaikimisi seadeid.\nArduino tuleb uuesti paigaldada."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
msgstr "Ei saa lugeda eelistusi failist {0}"
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
msgstr "Ei saanud {0} vana versiooni eemaldada"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
msgstr "\"{0}\" pole võimalik \"{1}\"-ks ümber nimetada."
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
msgstr "Visandi ümbernimetamine nurjus. (0)"
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
msgstr "Visandi ümbernimetamine nurjus. (1)"
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
msgstr "Visandi ümbernimetamine nurjus. (2)"
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
msgstr "{0} pole võimalik asendada"
@@ -482,26 +479,26 @@ msgstr "{0} pole võimalik asendada"
msgid "Couldn't archive sketch"
msgstr "Visandi arhiveerimine ebaõnnestus"
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
msgstr "Programmi suurust ei saanud kindlaks teha: {0}"
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
msgstr "Ei saanud seda teha"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
"after initiating the upload."
-msgstr ""
+msgstr "Ei leie plaati valitud jadapordi otsast. Kontrolli pordi seadistust. Kui see on õige, vajuta kohe peale üleslaadimise alustamist RESET nuppu plaadil"
#: ../../../processing/app/Preferences.java:82
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "Lõika"
@@ -509,97 +506,103 @@ msgstr "Lõika"
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
msgstr "Taani"
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Vähenda taanet"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
msgstr "Kustuta"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr ""
-"Seade ei vasta. Kontrolli, et valitud oleks õige jadaport või vajuta enne "
-"eksportimist RESET nuppu"
+msgstr "Seade ei vasta. Kontrolli, et valitud oleks õige jadaport või vajuta enne eksportimist RESET nuppu"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
msgstr "Unusta kõik muudatused ning laadi uuesti?"
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
msgstr "Ära salvesta"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
msgstr "Salvestatud."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
msgstr "Buudilaadur edukalt kirjutatud."
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
msgstr "Kompileeritud."
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
msgstr "Trükitud."
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
msgstr "Laadimine lõpetatud"
-#: Preferences.java:90
+#: Preferences.java:91
msgid "Dutch"
msgstr "Hollandi"
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
msgid "Edit"
msgstr "Redigeeri"
-#: Preferences.java:354
+#: Preferences.java:370
msgid "Editor font size: "
msgstr "Tekstiredaktori kirja suurus:"
-#: Preferences.java:337
+#: Preferences.java:353
msgid "Editor language: "
msgstr "Tekstiredaktori keel:"
-#: Preferences.java:91
+#: Preferences.java:92
msgid "English"
msgstr "Inglise"
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
msgstr "Töökeskkond"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "Viga"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
msgstr "Viga faili lisamisel"
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
msgstr "Kompileerimise viga."
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
msgstr "Arduino andmekausta nime leidmise viga."
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
msgstr "Viga Serial.{0}() sees"
@@ -615,34 +618,32 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
msgstr "Viga jadapordi {0} avamisel"
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr "Viga eelistuste lugemisel"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"Viga eelistuste faili lugemisel. Palun kustuta (või tõsta\n"
-"mujale) {0} ning käivita Arduino uuesti."
+msgstr "Viga eelistuste faili lugemisel. Palun kustuta (või tõsta\nmujale) {0} ning käivita Arduino uuesti."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
-msgstr ""
+msgstr "Viga jadapordi {0} kasutamisel"
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
msgstr "Buudilaaduri kirjutamisel tekkis viga."
@@ -655,7 +656,7 @@ msgstr ""
msgid "Error while loading code {0}"
msgstr "Koodi laadimise viga {0}"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
msgstr "Viga trükkimisel."
@@ -664,23 +665,27 @@ msgstr "Viga trükkimisel."
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
+msgstr "Eesti"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
msgstr ""
-#: Editor.java:509
+#: Editor.java:516
msgid "Examples"
msgstr "Näited"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
msgstr "Eksport katkestatud. Muudatused peavad olema enne salvestatud."
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
msgstr "Fail"
@@ -692,50 +697,54 @@ msgstr "Filipiini"
msgid "Find"
msgstr "Otsi"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
msgstr "Otsi järgmine"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
msgstr "Otsi eelmine"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
msgstr "Registriviide"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Otsi..."
+msgstr "Otsi…"
#: FindReplace.java:80
msgid "Find:"
msgstr "Otsi:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
msgstr "Paranda kooditabel ning laadi uuesti"
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
-msgstr ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr "Rohkem infot teekide paigaldamise kohta leab aadressilt http://arduino.cc/en/Guide/Libraries\n"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
-msgstr ""
+msgstr "Pordi algseadistamine avamise/sulgemisega kiirusel 1200bps"
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
msgstr "Prantsuse"
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
msgstr "Korduma Kippuvad Küsimused"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
msgstr "Galeegi"
@@ -743,31 +752,43 @@ msgstr "Galeegi"
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
msgstr "Saksa"
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
msgstr "Alustamine"
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
msgstr "Kreeka"
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
@@ -775,27 +796,25 @@ msgstr "Guide_Windows.html"
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "Abi"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
-msgstr ""
+msgstr "Hindi"
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"Kuidas oleks, kui salvestaks visandi \n"
-"enne nime muutmist?"
+msgstr "Kuidas oleks, kui salvestaks visandi\nenne nime muutmist?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
msgstr "Maakera sees on maakera"
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr "Ungari"
@@ -803,17 +822,17 @@ msgstr "Ungari"
msgid "Ignore Case"
msgstr "Ignoreeri tähesuurust"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Vigase nimega teegi eiramine"
+msgstr "Vigase nimega teegi eriamine"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "Vigase nimega visandi eriamine"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Laadi teek..."
+msgstr "Laadi teek…"
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -826,86 +845,80 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
msgstr "Suurenda taanet"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
-msgstr ""
+msgstr "Indoneesia"
#: ../../../processing/app/Base.java:1204
#, java-format
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
+#: Preferences.java:102
msgid "Italian"
msgstr "Itaalia"
-#: Preferences.java:101
+#: Preferences.java:103
msgid "Japanese"
msgstr "Jaapani"
-#: Preferences.java:102
+#: Preferences.java:104
msgid "Korean"
-msgstr ""
+msgstr "Korea"
-#: Preferences.java:103
+#: Preferences.java:105
msgid "Latvian"
msgstr "Läti"
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
-msgstr ""
+msgstr "Teek lisatud sinu teelide nimistusse. Vaata \"Laadi teek…\" menüüd"
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
-msgstr ""
+msgstr "Leedu"
#: ../../../processing/app/Sketch.java:1660
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
-msgstr ""
+msgstr "Marathi"
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "Teade"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
msgstr "/* kommentaar */ lõpust puudub */"
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
msgstr "Rohkemate eelistuste muutmiseks muuda neid otse failis"
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
msgstr "Liigutamine"
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
msgstr "Uue faili nimi:"
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "Uus"
@@ -919,25 +932,25 @@ msgstr "Uus kaart"
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "lisa NL (\\n)"
+msgstr "lisa NL (\\\\n)"
#: EditorHeader.java:340
msgid "Next Tab"
msgstr "Järgmine kaart"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "Ei"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat."
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr "Automaatvormindus ei vaja muudatusi."
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
msgstr "Visandisse pole faile lisatud."
@@ -949,11 +962,11 @@ msgstr "Veebilehitseja puudub"
msgid "No line ending"
msgstr "Reavahetust ei lisa"
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
msgstr "Tõesti oleks aeg natuke värsket õhku hingata."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
msgstr "\"{0}\" kohta juhend puudub"
@@ -962,18 +975,19 @@ msgstr "\"{0}\" kohta juhend puudub"
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
msgstr "Mitte-saatsulik viga välimuse seadmises."
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
msgstr "Vabandust"
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
-
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
@@ -984,12 +998,12 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
msgstr "Olgu"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
msgstr "Visandisse on lisatud üks fail."
@@ -997,23 +1011,23 @@ msgstr "Visandisse on lisatud üks fail."
msgid "Open"
msgstr "Ava"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "Ava URL"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Ava Arduino visand..."
+msgstr "Ava Arduino visand…"
#: EditorToolbar.java:46
msgid "Open in Another Window"
msgstr "Ava uues aknas"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
-msgstr "Ava..."
+msgstr "Ava…"
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
msgstr "Lehekülje sätted"
@@ -1021,35 +1035,43 @@ msgstr "Lehekülje sätted"
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
msgstr "Aseta"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
msgstr "Pärsia"
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
msgstr "Impordi SPI teek menüüst Visand > Impordi teek"
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
msgstr "Palun paigalda JDK 1.5 või hilisem"
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
-msgstr ""
+msgstr "Poola"
#: ../../../processing/app/Editor.java:718
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
-msgstr "Portugali"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
msgstr "Eelistused"
@@ -1061,27 +1083,27 @@ msgstr "Eelmine"
msgid "Previous Tab"
msgstr "Eelmine kaart"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
msgstr "Prindi"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
msgstr "Trükkimine katkestati."
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Trükkimine..."
+msgstr "Trükkimine…"
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
msgstr "Kausta avamine ebaõnnestus"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
msgstr "URL avamine ebaõnnestus"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
msgstr "Platvormi valimise viga"
@@ -1093,28 +1115,26 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
msgstr "Probleem andmekausta nime leidmisega"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
msgstr "Probleem {0} liigutamisega kompileerimiskausta"
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
-msgstr ""
-"Probleem plaadile üleslaadimisega. http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload leiad soovitusi probleemi lahendamiseks."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr "Probleem plaadile üleslaadimisega. Vaata soovitusi probleemi lahendamiseks http://www.arduino.cc/en/Guide/Troubleshooting#upload"
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
msgstr "Probleem nime muutmisega"
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
@@ -1124,19 +1144,19 @@ msgstr "Avada saab ainult oma visandeid ning .ino või .pde laienditega faile."
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
msgstr "Pogrammaator"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "Välju"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
msgstr "Tee uuesti"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
msgstr "Seletused"
@@ -1144,7 +1164,7 @@ msgstr "Seletused"
msgid "Rename"
msgstr "Nimeta ümber"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "Asendada"
@@ -1156,70 +1176,70 @@ msgstr "Otsi ja asenda"
msgid "Replace All"
msgstr "Asenda kõik"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Kas vaherada {0} olemasolev versioon?"
+msgstr "Kas vahetada {0} olemasolev versioon?"
#: FindReplace.java:81
msgid "Replace with:"
msgstr "Asenda järgnevaga:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
msgstr "Rumeenia"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr "Vene"
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "Salvesta"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Salvesta kui..."
+msgstr "Salvesta kui…"
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
msgstr "Salvestamine katkestatud."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
msgstr "Salvestan muudatused enne eksportimist?"
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Salvesta muudatused faili \"{0}\""
+msgstr "Salvesta muudatused faili \"{0}\"?"
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Salvesta visand uude kausta..."
+msgstr "Salvesta visand uude kausta…"
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "Salvestamine..."
+msgstr "Salvestamine…"
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Vali (või loo uus) kaust visandite jaoks..."
+msgstr "Vali (või loo uus) kaust visandite jaoks…"
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
msgstr "Vali kõik"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
-msgstr ""
+msgstr "Vali vajalikku teeki sisaldav ZIP fail või kaust"
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Vali pilt või muu andmefail visandi juurde kopeerimiseks"
+msgstr "Vali pilt või muu andmefail visandisse kopeerimiseks"
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
msgstr "Vali uus visandite kaust"
@@ -1231,45 +1251,43 @@ msgstr ""
msgid "Send"
msgstr "Saada"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
msgstr "Jadapordi monitor"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr "Jadaport {0} on juba kasutusel. Välju programmist, mis seda kasutab."
+msgstr "Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
-msgstr ""
+msgstr "Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab."
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
msgstr "Jadaport {0} puudub. Vali õige port menüüst Tööriistad -> Jadaport"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"Jadaport {0} puudub.\n"
-"Proovin mõnda teist porti?"
+msgstr "Jadaport {0} puudub.\nProovin mõnda teist porti?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
msgstr "Probleem seadetega"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
msgstr "Näita visandite kausta"
@@ -1277,155 +1295,156 @@ msgstr "Näita visandite kausta"
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Näita detailsemat väljndit:"
+msgstr "Näita detailsemat väljundit: "
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
msgstr "Visand"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
msgstr "Visand on haihtunud"
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
msgstr "Visandit ei ole olemas"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
msgstr "Visand on kirjutuskaitsega"
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
msgstr "Visand on pealkirjastamata"
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
msgstr "Visand on kirjutuskaitsega"
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr ""
-"Visand on liiga suur. Vaata http://www.arduino.cc/en/Guide/"
-"Troubleshooting#size lehelt näpunäiteid selle vähendamiseks."
+msgstr "Visand on liiga suur. Vaata http://www.arduino.cc/en/Guide/Troubleshooting#size lehelt näpunäiteid selle vähendamiseks."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
msgstr "Visandid"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
msgstr "Visandite kaust on haihtunud"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
msgstr "Visandite asukoht:"
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"Mõned failid on kirjutuskaitsega. Proovi uuesti\n"
-"salvestades visand kuhugi mujale."
+msgstr "Mõned failid on kirjutuskaitsega. Proovi uuesti\nsalvestades visand kuhugi mujale."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
-"Mõned failid on kirjutuskaitsega.\n"
-"Pead salvestama visandi kuhugi mujale."
+msgstr "Mõned failid on kirjutuskaitsega.\nPead salvestama visandi kuhugi mujale."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
msgstr "Kahjuks on \"{0}\" nimega visand või kaust juba olemas."
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
msgstr "Hispaania"
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
msgstr "Särasilm"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr "Süsteemi vaikimisi keel"
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
msgstr "\"BYTE\" võtmesõna pole enam toetatud."
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
msgstr "Klass Client on nüüd EthernetClient."
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
msgstr "Klass Server on nüüd EthernetServer."
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
msgstr "Klass Udp on nimetatud ümber EthernetUdp."
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
msgstr "Kuigi Arduino läks ilusti käima, tekkis mingi viga."
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
-"\"{0}\" peab asuma visandite kaustas \"{1}\".\n"
-"Kas tekitan selle kausta ning liigutan faili sinna?"
+msgstr "\"{0}\" peab asuma visandite kaustas \"{1}\".\nKas tekitan selle kausta ning liigutan faili sinna?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
msgstr ""
-"Teeki \"{0}\" ei saa kasutada.\n"
-"Teekide nimed tohivad sisaldada ainult ASCII tähti ja\n"
-"numbreid ning peavad algama tähega."
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr "Põhifail ei tohi kasutada laiendit.\n"
+msgstr "Põhifailile ei tohi lisada laiendit."
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
msgstr "Nimi ei või alata puntiga."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"Valitud visandit ei ole enam.\n"
-"Visandite menüü uuendamiseks\n"
-"käivita Arduino uuesti."
+msgstr "Valitud visandit ei ole enam.\nVisandite menüü uuendamiseks\nkäivita Arduino uuesti."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1433,67 +1452,51 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-"Visandit \"{0}\" ei saa kasutada.\n"
-"Visandite nimed nimed tohivad sisaldada ainult ASCII tähti\n"
-"ja numbreid ning peavad algama tähega.\n"
-"Sellest teatest saab lahti ainult \"{1}\" kaustast\n"
-"visandi kustutamisega."
+msgstr "Visandit \"{0}\" ei saa kasutada.\nVisandite nimed nimed tohivad sisaldada ainult ASCII tähti\nja numbreid ning peavad algama tähega.\nSellest teatest saab lahti ainult {1} kaustast\nvisandi kustutamisega."
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
-"Visandi kaust on haihtunud.\n"
-"Püüan samasse kohta uuesti salvestada,\n"
-"kuid kõik peale selle koodi on kadunud."
+msgstr "Visandi kaust on haihtunud.\nPüüan samasse kohta uuesti salvestada,\nkuid kõik peale selle koodi on kadunud."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
-"Visandi nime tuleb muuta. Nimes tohivad olla vaid\n"
-"ASCII tähed ning numbrid (algama peab tähega).\n"
-"Nimi peab olema lühem kui 64 märki."
+msgstr "Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII tähed ning numbrid (algama peab tähega).\nNimi peab olema lühem kui 64 märki."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr ""
-"Visandite kausta pole enam.\n"
-"Arduino hakkab kasutama vaikimisi kausta ning\n"
-"vajadusel tekitab sinna uue visandite kausta."
+msgstr "Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab uue visandite kausta."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
-"See fail on juba kopeeritud kohta, kust sa seda\n"
-"kopeerida üritad. Seega ei pea ma midagi tegema."
+msgstr "See fail on juba kopeeritud kohta, kust sa seda\nkopeerida üritad. Seega ei pea ma midagi tegema."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
msgstr "Aeg puhata"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
msgstr "Tööriistad"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
msgstr "Probleemide lahendamine"
@@ -1519,7 +1522,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1530,12 +1533,12 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Uncaught exception type: {0}"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
msgstr "Võta tagasi"
@@ -1544,28 +1547,25 @@ msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"Tundmatu platvorm, veebilehitseja puudub.\n"
-"Veebiaadresside avamiseks lisa\n"
-"\"launcher=/kaust/brauser\" rida preferences.txt faili."
+msgstr "Tundmatu platvorm, veebilehitseja puudub.\nVeebiaadresside avamiseks lisa\n\"launcher=/kaust/brauser\" rida preferences.txt faili."
#: UpdateCheck.java:111
msgid "Update"
msgstr "Uuenda"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
msgstr "Salvestamisel uuenda visandite laiendit (.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "Laadi üles"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
msgstr "Laadi üles programmaatori kaudu"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
msgstr "Laadimine katkestati"
@@ -1573,19 +1573,19 @@ msgstr "Laadimine katkestati"
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "I/O plaadile laadimine..."
+msgstr "I/O plaadile laadimine…"
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Üleslaadimine..."
+msgstr "Üleslaadimine…"
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Kasuta otsimiseks valikut"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
msgstr "Kasuta välist redaktorit"
@@ -1593,27 +1593,31 @@ msgstr "Kasuta välist redaktorit"
msgid "Verify"
msgstr "Kontrolli"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
msgstr "Kontrolli / Kompileeri"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
msgstr "Kontrolli koodi peale üleslaadimist"
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
msgstr "Külasta Arduino.cc"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
msgstr "Hoiatus"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() on muudetud Wire.read()."
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
msgstr "Wire.send() on muudetud Wire.write()."
@@ -1625,47 +1629,39 @@ msgstr "Jätkatakse algusest"
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
-msgstr ""
-"Mikrokontroller on vale tüüpi. Kas sa valisid Tööriistad > Plaat alt õige "
-"plaadi?"
+msgstr "Mikrokontroller on vale tüüpi. Kas sa valisid Tööriistad > Plaat alt õige plaadi?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "Jah"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
msgstr "Mind sa ei lollita"
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
msgstr "Sama nimega visand on juba olemas. .cpp faili nimi peab olema erinev."
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Visandit ei saa nimetada \"{0}\" sest\n"
-"sellise nimega .cpp fail on juba olemas."
+msgstr "Visandit ei saa nimetada \"{0}\" sest sellise nimega .cpp fail on juba olemas."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Visandit ei saa salvestada nimega \"{0}\" sest\n"
-"sellise nimega .cpp fail on juba olemas."
+msgstr "Visandit ei saa salvestada nimega {0}\" sest\nsellise nimega .cpp fail on juba olemas."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"Sa ei saa salvestada visandit kausta,\n"
-"mis on sama kausta sees."
+msgstr "Sa ei saa salvestada visandit kausta,\nmis on sama kausta sees."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
msgstr "Sa unustasid oma visandid"
@@ -1674,26 +1670,24 @@ msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
-"Sa oled saavutanud ühel päeval loodavate automaatsete\n"
-"nimede piiri. Kuidas hoopis oleks väikese jalutuskäiguga?"
+msgstr "Sa oled saavutanud ühel päeval loodavate automaatsete\nnimede piiri. Kuidas oleks hoopis ühe väikese jalutuskäiguga"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
-msgstr ""
+msgstr "ZIP failid või kaustad"
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
-msgstr ""
+msgstr "ZIP-is pole teeki"
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" pole lubatud laiend."
+msgstr "\"{0}\" pole lubatud laiend."
#: SketchCode.java:258
#, java-format
@@ -1702,99 +1696,64 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr ""
-"\"{0}\" sisaldab tundmatuid tähemärke. Kui see kood on loodud vanema "
-"versiooniga, saab selle teisendada UTF-8'ks menüüst Tööriistad -> Paranda "
-"kooditabel ning laadi uuesti. Teine variant on vigased märgid käsitsi "
-"kustutada."
+msgstr "\"{0}\" sisaldab tundmatuid tähemärke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks menüüst Tööriistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased märgid käsitsi kustutada."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
-"\n"
-msgstr ""
-"\n"
-"Alates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\n"
-"Paistab, et sa kasutad seda või mõnda muud teeki, mis sõltub SPI teegist.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
+msgstr "\nAlates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\nPaistab, et sa kasutad seda või mõnda muud teeki, mis sõltub SPI teegist.\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr ""
-"\n"
-"Alates Arduino 1.0 ei kasutata enam võtmesõna \"BYTE\".\n"
-"Palun kasuta Serial.write() selle asemel.\n"
-"\n"
+msgstr "\nAlates Arduino 1.0 ei kasutata enam võtmesõna \"BYTE\".\nPalun kasuta Serial.write() selle asemel.\n\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Alates Arduino 1.0 on Etherneti teegis olev klass Client nimetatud ümber "
-"EthernetClient.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
+msgstr "\nAlates Arduino 1.0 on Etherneti teegis olev klass Client nimetatud ümber EthernetClient.\n\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"Alates Arduino 1.0 on Etherneti teegis olev klass Server nimetatud ümber "
-"EthernetServer.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
+msgstr "\nAlates Arduino 1.0 on Etherneti teegis olev klass Server nimetatud ümber EthernetServer.\n\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
-msgstr ""
+msgstr "\nAlates Arduino 1.0 on Etherneti teegis olev klass Udp nimetatud ümber EthernetUdp.\n\n"
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"Alates Arduino 1.0 on Wire.receive() nimetatud ümber Wire.read() tagamaks "
-"sarnase nimetamise teiste teekidega.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
+msgstr "\nAlates Arduino 1.0 on Wire.receive() nimetatud ümber Wire.read() tagamaks sarnase nimetamise teiste teekidega.\n\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"Alates Arduino 1.0 on Wire.send() nimetatud ümber Wire.write() tagamaks "
-"sarnase nimetamise teiste teekidega.\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
+msgstr "\nAlates Arduino 1.0 on Wire.send() nimetatud ümber Wire.write() tagamaks sarnase nimetamise teiste teekidega.\n\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
-msgstr ""
+msgstr "boodi"
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
msgstr "kopileerimise ajal"
@@ -1802,7 +1761,7 @@ msgstr "kopileerimise ajal"
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
msgstr "createNewFile() ebaõnnestus"
@@ -1810,11 +1769,11 @@ msgstr "createNewFile() ebaõnnestus"
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
msgstr "Töökeskkond"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@@ -1830,74 +1789,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "vigase fondi suuruse \"{0}\" eiramine"
+msgstr "vigase fondi suuruse {0} eiramine"
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name on null"
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr ""
-"readBytesUntil() baitide puhver on liiga väike {0} ja rohkema baidi jaoks "
-"alates märgist {1}"
+msgstr "readBytesUntil() baitide puhver on liiga väike {0} ja rohkema baidi jaoks alates märgist {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
msgstr "removeCode: sisemine viga.. ei leidnud koodi"
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu on null"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr "valitud jadaporti {0} ei eksisteeri või plaat on ühendamata"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
msgstr "üleslaadimise ajal"
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
msgstr "Visandisse on lisatud {0} faili."
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
msgstr "{0} tagastas {1}"
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_et.properties b/app/src/processing/app/i18n/Resources_et.properties
index b5747151b..f45bf035e 100644
--- a/app/src/processing/app/i18n/Resources_et.properties
+++ b/app/src/processing/app/i18n/Resources_et.properties
@@ -2,66 +2,66 @@
# Copyright (C) 2012
# This file is distributed under the same license as the Arduino package.
# Cougar Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Viimase avatud visandi sulgemisel suletakse ka Arduino keskkond.
+#: Base.java:773
+\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Viimase avatud visandi sulgemisel suletakse ka Arduino keskkond.
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= salvestamata muudatused l\u00e4hevad kaduma
+#: Editor.java:2053
+\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= salvestamata muudatused l\u00e4hevad kaduma
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"="{1}" kasutas on fail nimega "{0}" juba olemas
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Kaust "{0}" on juba olemas. Ei saa visandit avada.
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
-!A\ library\ named\ {0}\ already\ exists=
+A\ library\ named\ {0}\ already\ exists="{0}" nimega teek on juba olemas
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Saadaval on uuem versioon Arduinost.\nKas soovid allalaadimislehte k\u00fclastada?
+A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Saadaval on uuem versioon Arduinost.\nKas soovid avada allalaadimislehe?
#: EditorConsole.java:153
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Konsooli v\u00e4ljundi salvestamiseks vajaliku faili avamisel tekkis viga.
-#: Editor.java:1102
+#: Editor.java:1116
About\ Arduino=Arduinost
-#: Editor.java:643
-Add\ File...=Lisa fail...
+#: Editor.java:650
+Add\ File...=Lisa fail\u2026
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
+#: Base.java:963
+Add\ Library...=Lisa teek\u2026
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Faili kooditabeli muutmisel tekkis viga. \u00c4ra proovi\nseda visandit salvestada kuna see v\u00f5ib olemasoleva\n\u00fcle kirjutada. Ava visand uuesti ning proovi uuesti.
+An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Faili kooditabeli muutmisel tekkis viga. \u00c4ra proovi\nseda visandit salvestada kuna see v\u00f5ib olemasoleva\n\u00fcle kirjutada. Ava visand uuesti ning proovi uuesti.\n
-#: Base.java:221
+#: Base.java:228
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Sinu masina platvormip\u00f5hise koodi laadimisel\ntekkis tundmatu viga.
-#: Preferences.java:84
-!Arabic=
-
#: Preferences.java:85
+Arabic=Araabia
+
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
@@ -82,62 +82,68 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ei saa Arduinot k\u00e4ivitada kuna seadete kausta\nloomine ei \u00f5nnestunud.
+#: Base.java:1682
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ei saa Arduinot k\u00e4ivitada kuna\nseadete kausta loomine ei \u00f5nnestunud.
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Ei saa Arduinot k\u00e4ivitada kuna visandite kausta\nloomine ei \u00f5nnestunud.
+#: Base.java:1889
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Ei saa Arduinot k\u00e4ivitada kuna\nvisandite kausta loomine ei \u00f5nnestunud.
-#: Base.java:233
+#: Base.java:240
Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino vajab t\u00f6\u00f6ks kogu JDK paigaldamist (mitte ainult JRE).\nPalun paigalda JDK versioon 1.5 v\u00f5i hilisem.\nRohkem infot leiad viidetest.
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Oled kindel, et soovid kustutada "{0}"?
-#: Sketch.java:591
+#: Sketch.java:587
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Oled kindel, et soovid kustutada selle visandi?
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
#: tools/AutoFormat.java:91
Auto\ Format=Automaatvormindus
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Automaatvormindus katkestatud\: liiga palju algavaid looksulge.
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Automaatvormindus katkestatud\: liiga palju algavaid sulge.
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Automaatvormindus katkestatud\: liiga palju l\u00f5ppevaid looksulge.
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Automaatvormindus katkestatud\: liiga palju l\u00f5ppevaid sulge.
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
Auto\ Format\ finished.=Automaatvormindus tehtud.
-#: Preferences.java:423
+#: Preferences.java:439
Automatically\ associate\ .ino\ files\ with\ Arduino=Seo .ino laiend automaatselt Arduinoga
#: SerialMonitor.java:110
Autoscroll=Isekerimine
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
Bad\ error\ line\:\ {0}=Viga real\: {0}
-#: Editor.java:2089
+#: Editor.java:2136
Bad\ file\ selected=Vigane fail valitud
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=Plaat
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -146,23 +152,29 @@ Board=Plaat
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
-#: SerialMonitor.java:112
-Both\ NL\ &\ CR=lisa NL+CR (\\r\\n)
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
-#: Preferences.java:80
+#: SerialMonitor.java:112
+Both\ NL\ &\ CR=lisa NL+CR (\\\\r\\\\n)
+
+#: Preferences.java:81
Browse=Sirvi
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
Build\ folder\ disappeared\ or\ could\ not\ be\ written=Kompileerimise kaust on haihtunud v\u00f5i pole kirjutatav
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
Burn\ Bootloader=Kirjuta buudilaadur
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Buudilaaduri I/O plaadile kirjutamine (see v\u00f5ib kesta m\u00f5ni minut)...
+#: Editor.java:2504
+Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Buudilaaduri I/O plaadile kirjutamine (see v\u00f5ib kesta m\u00f5ni minut)\u2026
#: ../../../processing/app/Base.java:368
!Can't\ open\ source\ sketch\!=
@@ -170,80 +182,92 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Buudilaadur
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=Loobu
-#: Sketch.java:459
+#: Sketch.java:455
Cannot\ Rename=\u00dcmbernimetamine nurjus
#: SerialMonitor.java:112
-Carriage\ return=lisa CR (\\r)
-
-#: Preferences.java:86
-Catalan=Katalaani
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=K\u00e4ivitamisel kontrolli uuendusi
+Carriage\ return=lisa CR (\\\\r)
#: Preferences.java:87
-Chinese\ Simplified=Hiina (lihtsustatud)
+Catalan=Katalaani
+
+#: Preferences.java:419
+Check\ for\ updates\ on\ startup=K\u00e4ivitamisel kontrolli uuendusi
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+Chinese\ Simplified=Hiina (lihtsustatud)
+
+#: Preferences.java:89
Chinese\ Traditional=Traditsiooniline Hiina
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
Close=Sulge
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
Comment/Uncomment=Kommentaari lisamine/eemaldamine
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilaatori viga, saada see kood {0}
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Visandi kompileerimine...
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=Visandi kompileerimine\u2026
#: EditorConsole.java:152
Console\ Error=Konsooli viga
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
Copy=Kopeeri
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
Copy\ as\ HTML=Kopeeri HTML-ina
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
Copy\ for\ Forum=Kopeeri foorumi jaoks
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}'' ei saa visandisse lisada.
+Could\ not\ add\ ''{0}''\ to\ the\ sketch.="{0}" ei saa visandisse lisada.
-#: Editor.java:2141
+#: Editor.java:2188
Could\ not\ copy\ to\ a\ proper\ location.=Etten\u00e4htud kohta ei saa kopeerida.
-#: Editor.java:2132
+#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Visandi kausta pole v\u00f5imalik luua
-#: Editor.java:2159
+#: Editor.java:2206
Could\ not\ create\ the\ sketch.=Visandi loomine nurjus.
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
Could\ not\ delete\ "{0}".="{0}" pole v\u00f5imalik kustutada.
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Ei saa kustutada olemasolevat faili "{0}".
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
-Could\ not\ delete\ {0}={0} pole v\u00f5imalik kustutada.
+Could\ not\ delete\ {0}={0} pole v\u00f5imalik kustutada
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -257,138 +281,144 @@ Could\ not\ delete\ {0}={0} pole v\u00f5imalik kustutada.
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
Could\ not\ open\ the\ URL\n{0}=URL avamine eba\u00f5nnestus\n{0}
-#: Base.java:1672
+#: Base.java:1958
#, java-format
Could\ not\ open\ the\ folder\n{0}=Kausta avamine eba\u00f5nnestus\n{0}
-#: Sketch.java:1811
+#: Sketch.java:1769
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Visandi uuesti salvestamine nurjus. Siin on tegemist t\u00f5sise probleemiga.\nProovi l\u00f5igata ning kleepida oma kood m\u00f5nda teisse tekstiredaktorisse.
-#: Sketch.java:1810
+#: Sketch.java:1768
Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus
#: Theme.java:52
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Ei saa avada v\u00e4rviteema seadeid.\nProcessing tuleb uuesti paigaldada.
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada.
+#: Preferences.java:219
+Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa lugeda vaikimisi seadeid.\nArduino tuleb uuesti paigaldada.
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
Could\ not\ read\ preferences\ from\ {0}=Ei saa lugeda eelistusi failist {0}
-#: Base.java:2196
+#: Base.java:2482
#, java-format
Could\ not\ remove\ old\ version\ of\ {0}=Ei saanud {0} vana versiooni eemaldada
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}" pole v\u00f5imalik "{1}"-ks \u00fcmber nimetada.
-#: Sketch.java:479
+#: Sketch.java:475
Could\ not\ rename\ the\ sketch.\ (0)=Visandi \u00fcmbernimetamine nurjus. (0)
-#: Sketch.java:500
+#: Sketch.java:496
Could\ not\ rename\ the\ sketch.\ (1)=Visandi \u00fcmbernimetamine nurjus. (1)
-#: Sketch.java:507
+#: Sketch.java:503
Could\ not\ rename\ the\ sketch.\ (2)=Visandi \u00fcmbernimetamine nurjus. (2)
-#: Base.java:2206
+#: Base.java:2492
#, java-format
Could\ not\ replace\ {0}={0} pole v\u00f5imalik asendada
#: tools/Archiver.java:74
Couldn't\ archive\ sketch=Visandi arhiveerimine eba\u00f5nnestus
-#: Sketch.java:1689
+#: Sketch.java:1647
Couldn't\ determine\ program\ size\:\ {0}=Programmi suurust ei saanud kindlaks teha\: {0}
-#: Sketch.java:620
+#: Sketch.java:616
Couldn't\ do\ it=Ei saanud seda teha
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
-!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+#: debug/BasicUploader.java:209
+Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Ei leie plaati valitud jadapordi otsast. Kontrolli pordi seadistust. Kui see on \u00f5ige, vajuta kohe peale \u00fcleslaadimise alustamist RESET nuppu plaadil
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
Cut=L\u00f5ika
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
+#: Preferences.java:90
Danish=Taani
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=V\u00e4henda taanet
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
Delete=Kustuta
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Seade ei vasta. Kontrolli, et valitud oleks \u00f5ige jadaport v\u00f5i vajuta enne eksportimist RESET nuppu
#: tools/FixEncoding.java:57
Discard\ all\ changes\ and\ reload\ sketch?=Unusta k\u00f5ik muudatused ning laadi uuesti?
-#: Editor.java:2017
+#: Editor.java:2064
Don't\ Save=\u00c4ra salvesta
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
Done\ Saving.=Salvestatud.
-#: Editor.java:2463
+#: Editor.java:2510
Done\ burning\ bootloader.=Buudilaadur edukalt kirjutatud.
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
Done\ compiling.=Kompileeritud.
-#: Editor.java:2517
+#: Editor.java:2564
Done\ printing.=Tr\u00fckitud.
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
Done\ uploading.=Laadimine l\u00f5petatud
-#: Preferences.java:90
+#: Preferences.java:91
Dutch=Hollandi
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
Edit=Redigeeri
-#: Preferences.java:354
+#: Preferences.java:370
Editor\ font\ size\:\ =Tekstiredaktori kirja suurus\:
-#: Preferences.java:337
+#: Preferences.java:353
Editor\ language\:\ =Tekstiredaktori keel\:
-#: Preferences.java:91
+#: Preferences.java:92
English=Inglise
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
Environment=T\u00f6\u00f6keskkond
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=Viga
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
Error\ adding\ file=Viga faili lisamisel
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
Error\ compiling.=Kompileerimise viga.
-#: Base.java:1433
+#: Base.java:1674
Error\ getting\ the\ Arduino\ data\ folder.=Arduino andmekausta nime leidmise viga.
-#: Serial.java:567
+#: Serial.java:593
#, java-format
Error\ inside\ Serial.{0}()=Viga Serial.{0}() sees
@@ -401,25 +431,25 @@ Error\ inside\ Serial.{0}()=Viga Serial.{0}() sees
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
Error\ opening\ serial\ port\ ''{0}''.=Viga jadapordi {0} avamisel
-#: Preferences.java:261
+#: Preferences.java:277
Error\ reading\ preferences=Viga eelistuste lugemisel
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Viga eelistuste faili lugemisel. Palun kustuta (v\u00f5i t\u00f5sta\nmujale) {0} ning k\u00e4ivita Arduino uuesti.
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
-!Error\ touching\ serial\ port\ ''{0}''.=
+Error\ touching\ serial\ port\ ''{0}''.=Viga jadapordi {0} kasutamisel
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
Error\ while\ burning\ bootloader.=Buudilaaduri kirjutamisel tekkis viga.
#: ../../../processing/app/Editor.java:2555
@@ -429,26 +459,29 @@ Error\ while\ burning\ bootloader.=Buudilaaduri kirjutamisel tekkis viga.
#, java-format
Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0}
-#: Editor.java:2520
+#: Editor.java:2567
Error\ while\ printing.=Viga tr\u00fckkimisel.
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
-!Estonian=
+#: Preferences.java:93
+Estonian=Eesti
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
Examples=N\u00e4ited
-#: Editor.java:2435
+#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud. Muudatused peavad olema enne salvestatud.
-#: Base.java:1814
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
+#: Editor.java:491
File=Fail
#: Preferences.java:94
@@ -457,158 +490,164 @@ Filipino=Filipiini
#: FindReplace.java:124 FindReplace.java:127
Find=Otsi
-#: Editor.java:1235
+#: Editor.java:1249
Find\ Next=Otsi j\u00e4rgmine
-#: Editor.java:1245
+#: Editor.java:1259
Find\ Previous=Otsi eelmine
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
Find\ in\ Reference=Registriviide
-#: Editor.java:1220
-Find...=Otsi...
+#: Editor.java:1234
+Find...=Otsi\u2026
#: FindReplace.java:80
Find\:=Otsi\:
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
Fix\ Encoding\ &\ Reload=Paranda kooditabel ning laadi uuesti
-#: ../../../processing/app/Base.java:2057
-!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+#: Base.java:1851
+For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Rohkem infot teekide paigaldamise kohta leab aadressilt http\://arduino.cc/en/Guide/Libraries\n
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
-!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-
-#: Preferences.java:93
-French=Prantsuse
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Korduma Kippuvad K\u00fcsimused
+#: debug/BasicUploader.java:80
+Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Pordi algseadistamine avamise/sulgemisega kiirusel 1200bps
#: Preferences.java:95
+French=Prantsuse
+
+#: Editor.java:1097
+Frequently\ Asked\ Questions=Korduma Kippuvad K\u00fcsimused
+
+#: Preferences.java:96
Galician=Galeegi
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
+#: Preferences.java:97
German=Saksa
-#: Editor.java:1041
+#: Editor.java:1054
Getting\ Started=Alustamine
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
Greek=Kreeka
-#: Base.java:1799
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
+#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
+#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
+#: Editor.java:1015
Help=Abi
-#: ../../../processing/app/Preferences.java:98
-!Hindi=
+#: Preferences.java:99
+Hindi=Hindi
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Kuidas oleks, kui salvestaks visandi \nenne nime muutmist?
+#: Sketch.java:295
+How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Kuidas oleks, kui salvestaks visandi\nenne nime muutmist?
-#: Sketch.java:886
+#: Sketch.java:882
How\ very\ Borges\ of\ you=Maakera sees on maakera
-#: Preferences.java:98
+#: Preferences.java:100
Hungarian=Ungari
#: FindReplace.java:96
Ignore\ Case=Ignoreeri t\u00e4hesuurust
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Vigase nimega teegi eiramine
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Vigase nimega teegi eriamine
-#: Base.java:1132
+#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=Vigase nimega visandi eriamine
-#: Editor.java:629
-Import\ Library...=Laadi teek...
+#: Editor.java:636
+Import\ Library...=Laadi teek\u2026
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
Increase\ Indent=Suurenda taanet
-#: Preferences.java:99
-!Indonesian=
+#: Preferences.java:101
+Indonesian=Indoneesia
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
+#: Preferences.java:102
Italian=Itaalia
-#: Preferences.java:101
+#: Preferences.java:103
Japanese=Jaapani
-#: Preferences.java:102
-!Korean=
+#: Preferences.java:104
+Korean=Korea
-#: Preferences.java:103
+#: Preferences.java:105
Latvian=L\u00e4ti
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+#: Base.java:2699
+Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Teek lisatud sinu teelide nimistusse. Vaata "Laadi teek\u2026" men\u00fc\u00fcd
-#: Preferences.java:104
-!Lithuaninan=
+#: Preferences.java:106
+Lithuaninan=Leedu
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
-!Marathi=
+#: Preferences.java:107
+Marathi=Marathi
-#: Base.java:1826
+#: Base.java:2112
Message=Teade
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
+#: Sketch.java:1712
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* kommentaar */ l\u00f5pust puudub */
-#: Preferences.java:433
+#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Rohkemate eelistuste muutmiseks muuda neid otse failis
-#: Editor.java:2109
+#: Editor.java:2156
Moving=Liigutamine
-#: Sketch.java:286
+#: Sketch.java:282
Name\ for\ new\ file\:=Uue faili nimi\:
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
New=Uus
#: EditorToolbar.java:46
@@ -618,21 +657,21 @@ New\ Editor\ Window=Uus redaktoriaken
New\ Tab=Uus kaart
#: SerialMonitor.java:112
-Newline=lisa NL (\\n)
+Newline=lisa NL (\\\\n)
#: EditorHeader.java:340
Next\ Tab=J\u00e4rgmine kaart
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=Ei
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plaat pole valitud. Palun tee oma valik men\u00fc\u00fcs T\u00f6\u00f6riistad > Plaat.
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
No\ changes\ necessary\ for\ Auto\ Format.=Automaatvormindus ei vaja muudatusi.
-#: Editor.java:366
+#: Editor.java:373
No\ files\ were\ added\ to\ the\ sketch.=Visandisse pole faile lisatud.
#: Platform.java:167
@@ -641,81 +680,88 @@ No\ launcher\ available=Veebilehitseja puudub
#: SerialMonitor.java:112
No\ line\ ending=Reavahetust ei lisa
-#: Base.java:538
+#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=T\u00f5esti oleks aeg natuke v\u00e4rsket \u00f5hku hingata.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
No\ reference\ available\ for\ "{0}"="{0}" kohta juhend puudub
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Mitte-saatsulik viga v\u00e4limuse seadmises.
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Vabandust
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
OK=Olgu
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
One\ file\ added\ to\ the\ sketch.=Visandisse on lisatud \u00fcks fail.
#: EditorToolbar.java:41
Open=Ava
-#: Editor.java:2641
+#: Editor.java:2688
Open\ URL=Ava URL
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=Ava Arduino visand...
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=Ava Arduino visand\u2026
#: EditorToolbar.java:46
Open\ in\ Another\ Window=Ava uues aknas
-#: Editor.java:494 Base.java:903
-Open...=Ava...
+#: Base.java:903 Editor.java:501
+Open...=Ava\u2026
-#: Editor.java:556
+#: Editor.java:563
Page\ Setup=Lehek\u00fclje s\u00e4tted
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
Paste=Aseta
-#: Preferences.java:105
+#: Preferences.java:109
Persian=P\u00e4rsia
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Impordi SPI teek men\u00fc\u00fcst Visand > Impordi teek
-#: Base.java:232
+#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=Palun paigalda JDK 1.5 v\u00f5i hilisem
-#: Preferences.java:106
-!Polish=
+#: Preferences.java:110
+Polish=Poola
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-Portuguese=Portugali
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
Preferences=Eelistused
#: FindReplace.java:123 FindReplace.java:128
@@ -724,22 +770,22 @@ Previous=Eelmine
#: EditorHeader.java:326
Previous\ Tab=Eelmine kaart
-#: Editor.java:564
+#: Editor.java:571
Print=Prindi
-#: Editor.java:2524
+#: Editor.java:2571
Printing\ canceled.=Tr\u00fckkimine katkestati.
-#: Editor.java:2500
-Printing...=Tr\u00fckkimine...
+#: Editor.java:2547
+Printing...=Tr\u00fckkimine\u2026
-#: Base.java:1671
+#: Base.java:1957
Problem\ Opening\ Folder=Kausta avamine eba\u00f5nnestus
-#: Base.java:1647
+#: Base.java:1933
Problem\ Opening\ URL=URL avamine eba\u00f5nnestus
-#: Base.java:220
+#: Base.java:227
Problem\ Setting\ the\ Platform=Platvormi valimise viga
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
@@ -748,41 +794,41 @@ Problem\ Setting\ the\ Platform=Platvormi valimise viga
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
+#: Base.java:1673
Problem\ getting\ data\ folder=Probleem andmekausta nime leidmisega
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
Problem\ moving\ {0}\ to\ the\ build\ folder=Probleem {0} liigutamisega kompileerimiskausta
#: debug/Uploader.java:209
-Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleem plaadile \u00fcleslaadimisega. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload leiad soovitusi probleemi lahendamiseks.
+Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleem plaadile \u00fcleslaadimisega. Vaata soovitusi probleemi lahendamiseks http\://www.arduino.cc/en/Guide/Troubleshooting\#upload
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
Problem\ with\ rename=Probleem nime muutmisega
-#: Editor.java:2090
+#: Editor.java:2137
Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Avada saab ainult oma visandeid ning .ino v\u00f5i .pde laienditega faile.
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
+#: Editor.java:704
Programmer=Pogrammaator
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=V\u00e4lju
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
Redo=Tee uuesti
-#: Editor.java:1065
+#: Editor.java:1078
Reference=Seletused
#: EditorHeader.java:300
Rename=Nimeta \u00fcmber
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=Asendada
#: FindReplace.java:122 FindReplace.java:129
@@ -791,55 +837,55 @@ Replace\ &\ Find=Otsi ja asenda
#: FindReplace.java:120 FindReplace.java:131
Replace\ All=Asenda k\u00f5ik
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=Kas vaherada {0} olemasolev versioon?
+Replace\ the\ existing\ version\ of\ {0}?=Kas vahetada {0} olemasolev versioon?
#: FindReplace.java:81
Replace\ with\:=Asenda j\u00e4rgnevaga\:
-#: Preferences.java:109
+#: Preferences.java:113
Romanian=Rumeenia
-#: Preferences.java:110
+#: Preferences.java:114
Russian=Vene
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=Salvesta
-#: Editor.java:530
-Save\ As...=Salvesta kui...
+#: Editor.java:537
+Save\ As...=Salvesta kui\u2026
-#: Editor.java:2270
+#: Editor.java:2317
Save\ Canceled.=Salvestamine katkestatud.
-#: Editor.java:2420
+#: Editor.java:2467
Save\ changes\ before\ export?=Salvestan muudatused enne eksportimist?
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Salvesta muudatused faili "{0}"
+Save\ changes\ to\ "{0}"?\ \ =Salvesta muudatused faili "{0}"?
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Salvesta visand uude kausta...
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=Salvesta visand uude kausta\u2026
-#: Editor.java:2223 Editor.java:2261
-Saving...=Salvestamine...
+#: Editor.java:2270 Editor.java:2308
+Saving...=Salvestamine\u2026
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=Vali (v\u00f5i loo uus) kaust visandite jaoks...
+#: Base.java:1909
+Select\ (or\ create\ new)\ folder\ for\ sketches...=Vali (v\u00f5i loo uus) kaust visandite jaoks\u2026
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
Select\ All=Vali k\u00f5ik
-#: ../../../processing/app/Base.java:2845
-!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+#: Base.java:2636
+Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Vali vajalikku teeki sisaldav ZIP fail v\u00f5i kaust
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Vali pilt v\u00f5i muu andmefail visandi juurde kopeerimiseks
+#: Sketch.java:975
+Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Vali pilt v\u00f5i muu andmefail visandisse kopeerimiseks
-#: Preferences.java:314
+#: Preferences.java:330
Select\ new\ sketchbook\ location=Vali uus visandite kaust
#: ../../../processing/app/debug/Compiler.java:146
@@ -848,147 +894,157 @@ Select\ new\ sketchbook\ location=Vali uus visandite kaust
#: SerialMonitor.java:93
Send=Saada
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
Serial\ Monitor=Jadapordi monitor
-#: Serial.java:147
+#: Serial.java:174
#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. V\u00e4lju programmist, mis seda kasutab.
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab.
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
-!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab.
-#: Serial.java:167
+#: Serial.java:194
#, java-format
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Jadaport {0} puudub. Vali \u00f5ige port men\u00fc\u00fcst T\u00f6\u00f6riistad -> Jadaport
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Jadaport {0} puudub.\nProovin m\u00f5nda teist porti?
-#: Base.java:1440
+#: Base.java:1681
Settings\ issues=Probleem seadetega
-#: Editor.java:634
+#: Editor.java:641
Show\ Sketch\ Folder=N\u00e4ita visandite kausta
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =N\u00e4ita detailsemat v\u00e4ljndit\:
+#: Preferences.java:387
+Show\ verbose\ output\ during\:\ =N\u00e4ita detailsemat v\u00e4ljundit\:
-#: Editor.java:600
+#: Editor.java:607
Sketch=Visand
-#: Sketch.java:1796
+#: Sketch.java:1754
Sketch\ Disappeared=Visand on haihtunud
-#: Base.java:1095
+#: Base.java:1411
Sketch\ Does\ Not\ Exist=Visandit ei ole olemas
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
Sketch\ is\ Read-Only=Visand on kirjutuskaitsega
-#: Sketch.java:298
+#: Sketch.java:294
Sketch\ is\ Untitled=Visand on pealkirjastamata
-#: Sketch.java:724
+#: Sketch.java:720
Sketch\ is\ read-only=Visand on kirjutuskaitsega
-#: Sketch.java:1694
+#: Sketch.java:1653
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Visand on liiga suur. Vaata http\://www.arduino.cc/en/Guide/Troubleshooting\#size lehelt n\u00e4pun\u00e4iteid selle v\u00e4hendamiseks.
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
Sketchbook=Visandid
-#: Base.java:257
+#: Base.java:258
Sketchbook\ folder\ disappeared=Visandite kaust on haihtunud
-#: Preferences.java:299
+#: Preferences.java:315
Sketchbook\ location\:=Visandite asukoht\:
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=M\u00f5ned failid on kirjutuskaitsega. Proovi uuesti\nsalvestades visand kuhugi mujale.
-#: Sketch.java:725
+#: Sketch.java:721
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=M\u00f5ned failid on kirjutuskaitsega.\nPead salvestama visandi kuhugi mujale.
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Kahjuks on "{0}" nimega visand v\u00f5i kaust juba olemas.
-#: Preferences.java:111
+#: Preferences.java:115
Spanish=Hispaania
-#: Base.java:537
+#: Base.java:540
Sunshine=S\u00e4rasilm
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
System\ Default=S\u00fcsteemi vaikimisi keel
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
!Tamil=
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.="BYTE" v\u00f5tmes\u00f5na pole enam toetatud.
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klass Client on n\u00fc\u00fcd EthernetClient.
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klass Server on n\u00fc\u00fcd EthernetServer.
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klass Udp on nimetatud \u00fcmber EthernetUdp.
-#: Base.java:185
+#: Base.java:192
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Kuigi Arduino l\u00e4ks ilusti k\u00e4ima, tekkis mingi viga.
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?="{0}" peab asuma visandite kaustas "{1}".\nKas tekitan selle kausta ning liigutan faili sinna?
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Teeki "{0}" ei saa kasutada.\nTeekide nimed tohivad sisaldada ainult ASCII t\u00e4hti ja\nnumbreid ning peavad algama t\u00e4hega.
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=P\u00f5hifail ei tohi kasutada laiendit.\n
+#: Sketch.java:374
+The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=P\u00f5hifailile ei tohi lisada laiendit.
-#: Sketch.java:360
+#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=Nimi ei v\u00f5i alata puntiga.
-#: Base.java:1096
+#: Base.java:1412
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Valitud visandit ei ole enam.\nVisandite men\u00fc\u00fc uuendamiseks\nk\u00e4ivita Arduino uuesti.
-#: Base.java:1125
+#: Base.java:1430
#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Visandit "{0}" ei saa kasutada.\nVisandite nimed nimed tohivad sisaldada ainult ASCII t\u00e4hti\nja numbreid ning peavad algama t\u00e4hega.\nSellest teatest saab lahti ainult "{1}" kaustast\nvisandi kustutamisega.
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Visandit "{0}" ei saa kasutada.\nVisandite nimed nimed tohivad sisaldada ainult ASCII t\u00e4hti\nja numbreid ning peavad algama t\u00e4hega.\nSellest teatest saab lahti ainult {1} kaustast\nvisandi kustutamisega.
-#: Sketch.java:1797
+#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Visandi kaust on haihtunud.\nP\u00fc\u00fcan samasse kohta uuesti salvestada,\nkuid k\u00f5ik peale selle koodi on kadunud.
-#: Sketch.java:2060
+#: Sketch.java:2018
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII t\u00e4hed ning numbrid (algama peab t\u00e4hega).\nNimi peab olema l\u00fchem kui 64 m\u00e4rki.
-#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab sinna uue visandite kausta.
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab uue visandite kausta.
-#: Sketch.java:1079
+#: Sketch.java:1075
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=See fail on juba kopeeritud kohta, kust sa seda\nkopeerida \u00fcritad. Seega ei pea ma midagi tegema.
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
+#: Base.java:535
Time\ for\ a\ Break=Aeg puhata
-#: Editor.java:656
+#: Editor.java:663
Tools=T\u00f6\u00f6riistad
-#: Editor.java:1057
+#: Editor.java:1070
Troubleshooting=Probleemide lahendamine
#: ../../../processing/app/Preferences.java:117
@@ -1008,7 +1064,7 @@ Troubleshooting=Probleemide lahendamine
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1016,11 +1072,11 @@ Troubleshooting=Probleemide lahendamine
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=Uncaught exception type\: {0}
+!Uncaught\ exception\ type\:\ {0}=
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
Undo=V\u00f5ta tagasi
#: Platform.java:168
@@ -1029,52 +1085,55 @@ Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\
#: UpdateCheck.java:111
Update=Uuenda
-#: Preferences.java:412
+#: Preferences.java:428
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Salvestamisel uuenda visandite laiendit (.pde -> .ino)
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=Laadi \u00fcles
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
Upload\ Using\ Programmer=Laadi \u00fcles programmaatori kaudu
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=Laadimine katkestati
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=I/O plaadile laadimine...
+#: Editor.java:2378
+Uploading\ to\ I/O\ Board...=I/O plaadile laadimine\u2026
-#: Sketch.java:1661
-Uploading...=\u00dcleslaadimine...
+#: Sketch.java:1622
+Uploading...=\u00dcleslaadimine\u2026
-#: Editor.java:1255
+#: Editor.java:1269
Use\ Selection\ For\ Find=Kasuta otsimiseks valikut
-#: Preferences.java:393
+#: Preferences.java:409
Use\ external\ editor=Kasuta v\u00e4list redaktorit
#: EditorToolbar.java:41 EditorToolbar.java:46
Verify=Kontrolli
-#: Editor.java:602
+#: Editor.java:609
Verify\ /\ Compile=Kontrolli / Kompileeri
-#: Preferences.java:384
+#: Preferences.java:400
Verify\ code\ after\ upload=Kontrolli koodi peale \u00fcleslaadimist
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
Visit\ Arduino.cc=K\u00fclasta Arduino.cc
-#: Base.java:1842
+#: Base.java:2128
Warning=Hoiatus
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() on muudetud Wire.read().
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() on muudetud Wire.write().
#: FindReplace.java:105
@@ -1083,88 +1142,87 @@ Wrap\ Around=J\u00e4tkatakse algusest
#: debug/Uploader.java:213
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mikrokontroller on vale t\u00fc\u00fcpi. Kas sa valisid T\u00f6\u00f6riistad > Plaat alt \u00f5ige plaadi?
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=Jah
-#: Sketch.java:1078
+#: Sketch.java:1074
You\ can't\ fool\ me=Mind sa ei lollita
-#: Sketch.java:415
+#: Sketch.java:411
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sama nimega visand on juba olemas. .cpp faili nimi peab olema erinev.
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa nimetada "{0}" sest\nsellise nimega .cpp fail on juba olemas.
+#: Sketch.java:421
+You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa nimetada "{0}" sest sellise nimega .cpp fail on juba olemas.
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa salvestada nimega "{0}" sest\nsellise nimega .cpp fail on juba olemas.
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa salvestada nimega {0}" sest\nsellise nimega .cpp fail on juba olemas.
-#: Sketch.java:887
+#: Sketch.java:883
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sa ei saa salvestada visandit kausta,\nmis on sama kausta sees.
-#: Base.java:1602
+#: Base.java:1888
You\ forgot\ your\ sketchbook=Sa unustasid oma visandid
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Sa oled saavutanud \u00fchel p\u00e4eval loodavate automaatsete\nnimede piiri. Kuidas hoopis oleks v\u00e4ikese jalutusk\u00e4iguga?
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Sa oled saavutanud \u00fchel p\u00e4eval loodavate automaatsete\nnimede piiri. Kuidas oleks hoopis \u00fche v\u00e4ikese jalutusk\u00e4iguga
-#: ../../../processing/app/Base.java:2847
-!ZIP\ files\ or\ folders=
+#: Base.java:2638
+ZIP\ files\ or\ folders=ZIP failid v\u00f5i kaustad
-#: ../../../processing/app/Base.java:2870
-!Zip\ doesn't\ contain\ a\ library=
+#: Base.java:2661
+Zip\ doesn't\ contain\ a\ library=ZIP-is pole teeki
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" pole lubatud laiend.
+".{0}"\ is\ not\ a\ valid\ extension.="{0}" pole lubatud laiend.
#: SketchCode.java:258
#, java-format
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sisaldab tundmatuid t\u00e4hem\u00e4rke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks men\u00fc\u00fcst T\u00f6\u00f6riistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased m\u00e4rgid k\u00e4sitsi kustutada.
-#: debug/Compiler.java:466
-\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAlates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\nPaistab, et sa kasutad seda v\u00f5i m\u00f5nda muud teeki, mis s\u00f5ltub SPI teegist.\n\n
+#: debug/Compiler.java:409
+\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAlates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\nPaistab, et sa kasutad seda v\u00f5i m\u00f5nda muud teeki, mis s\u00f5ltub SPI teegist.\n
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nAlates Arduino 1.0 ei kasutata enam v\u00f5tmes\u00f5na "BYTE".\nPalun kasuta Serial.write() selle asemel.\n\n
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Client nimetatud \u00fcmber EthernetClient.\n\n
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Server nimetatud \u00fcmber EthernetServer.\n\n
-#: ../../../processing/app/debug/Compiler.java:451
-!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+#: debug/Compiler.java:433
+\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Udp nimetatud \u00fcmber EthernetUdp.\n\n
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nAlates Arduino 1.0 on Wire.receive() nimetatud \u00fcmber Wire.read() tagamaks sarnase nimetamise teiste teekidega.\n\n
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nAlates Arduino 1.0 on Wire.send() nimetatud \u00fcmber Wire.write() tagamaks sarnase nimetamise teiste teekidega.\n\n
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
-!baud=
+#: SerialMonitor.java:130 SerialMonitor.java:133
+baud=boodi
-#: Preferences.java:373
+#: Preferences.java:389
compilation\ =kopileerimise ajal
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
+#: Sketch.java:540
createNewFile()\ returned\ false=createNewFile() eba\u00f5nnestus
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
+#: Base.java:2090
environment=T\u00f6\u00f6keskkond
-#: Editor.java:1094
+#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
@@ -1176,54 +1234,51 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=vigase fondi suuruse "{0}" eiramine
+ignoring\ invalid\ font\ size\ {0}=vigase fondi suuruse {0} eiramine
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
name\ is\ null=name on null
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() baitide puhver on liiga v\u00e4ike {0} ja rohkema baidi jaoks alates m\u00e4rgist {1}
-#: Sketch.java:651
+#: Sketch.java:647
removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: sisemine viga.. ei leidnud koodi
-#: Editor.java:923
+#: Editor.java:932
serialMenu\ is\ null=serialMenu on null
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=valitud jadaporti {0} ei eksisteeri v\u00f5i plaat on \u00fchendamata
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
+#: Preferences.java:391
upload=\u00fcleslaadimise ajal
-#: Editor.java:373
+#: Editor.java:380
#, java-format
{0}\ files\ added\ to\ the\ sketch.=Visandisse on lisatud {0} faili.
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
{0}\ returned\ {1}={0} tagastas {1}
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_et_EE.po b/app/src/processing/app/i18n/Resources_et_EE.po
new file mode 100644
index 000000000..6d47b5f2c
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_et_EE.po
@@ -0,0 +1,1857 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+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: 2013-09-10 10:35+0000\n"
+"Last-Translator: cmaglie Closing the last open sketch will quit Arduino."
+msgstr " Viimase avatud visandi sulgemisel suletakse ka Arduino keskkond."
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr " salvestamata muudatused lähevad kaduma"
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr "\"{1}\" kasutas on fail nimega \"{0}\" juba olemas"
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr "Kaust \"{0}\" on juba olemas. Ei saa visandit avada."
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr "Teek \"{0}\" on juba olemas"
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr "Saadaval on uuem versioon Arduinost.\nKas soovid allalaadimislehte külastada?"
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr "Konsooli väljundi salvestamiseks vajaliku faili avamisel tekkis viga."
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr "Arduinost"
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr "Lisa fail..."
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Lisa teek..."
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr "Faili kooditabeli muutmisel tekkis viga. Ära proovi\nseda visandit salvestada kuna see võib olemasoleva\nüle kirjutada. Ava visand uuesti ning proovi uuesti.\n"
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr "Sinu masina platvormipõhise koodi laadimisel\ntekkis tundmatu viga."
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr "Araabia"
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr "´aragoni"
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr "Arhiveeri visand"
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr "Arhiveeri visand uue nimega:"
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr "Visandi arhiveerimine katkestatud."
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr "Visandi arhiveerimine ebaõnnestus kuna seda\nei saanud korralikult salvestada."
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr "Arduino ARM (32 bit) plaadid"
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr "Arduino AVR plaadid"
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr "Ei saa Arduinot käivitada kuna seadete kausta\nloomine ei õnnestunud."
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr "Ei saa Arduinot käivitada kuna visandite kausta\nloomine ei õnnestunud."
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr "Arduino vajab tööks kogu JDK paigaldamist (mitte ainult JRE).\nPalun paigalda JDK versioon 1.5 või hilisem.\nRohkem infot leiad viidetest."
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr "Oled kindel, et soovid kustutada \"{0}\"?"
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr "Oled kindel, et soovid kustutada selle visandi?"
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr "Automaatvormindus"
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr "Automaatvormindus katkestatud: liiga palju algavaid looksulge."
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr "Automaatvormindus katkestatud: liiga palju algavaid sulge."
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr "Automaatvormindus katkestatud: liiga palju lõppevaid looksulge."
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr "Automaatvormindus katkestatud: liiga palju lõppevaid sulge."
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr "Automaatvormindus tehtud."
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr "Seo .ino laiend automaatselt Arduinoga"
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr "Isekerimine"
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr "Viga real: {0}"
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr "Vigane fail valitud"
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr "Plaat"
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr "lisa NL+CR (\\r\\n)"
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr "Sirvi"
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr "Kompileerimise kaust on haihtunud või pole kirjutatav"
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr "Bulgaaria"
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr "Kirjuta buudilaadur"
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr "Buudilaaduri I/O plaadile kirjutamine (see võib kesta mõni minut)..."
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr "Visandi avamine ebaõnnestus"
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr "Prantsuse (Kanada)"
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr "Loobu"
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr "Ümbernimetamine nurjus"
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr "lisa CR (\\r)"
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr "Katalaani"
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr "Käivitamisel kontrolli uuendusi"
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr "Hiina (lihtsustatud)"
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr "Traditsiooniline Hiina"
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr "Sulge"
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr "Kommentaari lisamine/eemaldamine"
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr "Kompilaatori viga, saada see kood {0}"
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr "Visandi kompileerimine..."
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr "Konsooli viga"
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr "Kopeeri"
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr "Kopeeri HTML-ina"
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr ""
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr "Kopeeri foorumi jaoks"
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr "''{0}'' ei saa visandisse lisada."
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr "Ettenähtud kohta ei saa kopeerida."
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr "Visandi kausta pole võimalik luua"
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr "Visandi loomine nurjus."
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr "\"{0}\" pole võimalik kustutada."
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr "Ei saa kustutada olemasolevat faili \"{0}\"."
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr "{0} pole võimalik kustutada."
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr ""
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr "URL avamine ebaõnnestus\n{0}"
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr "Kausta avamine ebaõnnestus\n{0}"
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr "Visandi uuesti salvestamine nurjus. Siin on tegemist tõsise probleemiga.\nProovi lõigata ning kleepida oma kood mõnda teisse tekstiredaktorisse."
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr "Visandi uuesti salvestamine ebaõnnestus"
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr "Ei saa avada värviteema seadeid.\nProcessing tuleb uuesti paigaldada."
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr "Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada."
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr "Ei saa lugeda eelistusi failist {0}"
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr "Ei saanud {0} vana versiooni eemaldada"
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr "\"{0}\" pole võimalik \"{1}\"-ks ümber nimetada."
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr "Visandi ümbernimetamine nurjus. (0)"
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr "Visandi ümbernimetamine nurjus. (1)"
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr "Visandi ümbernimetamine nurjus. (2)"
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr "{0} pole võimalik asendada"
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr "Visandi arhiveerimine ebaõnnestus"
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr "Programmi suurust ei saanud kindlaks teha: {0}"
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr "Ei saanud seda teha"
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr "Ei leia plaati valitud pordi küljest. Konrolli, et valitud oleks õige port. Kui port on õige, proovi vajutada plaadi RESET nuppu kohe peale üleslaadimise alustamist."
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr "Horvaatia"
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr "Lõika"
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr "Tšehhi"
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr "Taani"
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr "Vähenda taanet"
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr "Kustuta"
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr "Seade ei vasta. Kontrolli, et valitud oleks õige jadaport või vajuta enne eksportimist RESET nuppu"
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr "Unusta kõik muudatused ning laadi uuesti?"
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr "Ära salvesta"
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr "Salvestatud."
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr "Buudilaadur edukalt kirjutatud."
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr "Kompileeritud."
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr "Trükitud."
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr "Laadimine lõpetatud"
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr "Hollandi"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr "Redigeeri"
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr "Tekstiredaktori kirja suurus:"
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr "Tekstiredaktori keel:"
+
+#: Preferences.java:92
+msgid "English"
+msgstr "Inglise"
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr "Töökeskkond"
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr "Viga"
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr "Viga faili lisamisel"
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr "Kompileerimise viga."
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr "Arduino andmekausta nime leidmise viga."
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr "Viga Serial.{0}() sees"
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr ""
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr "Viga jadapordi {0} avamisel"
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr "Viga eelistuste lugemisel"
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr "Viga eelistuste faili lugemisel. Palun kustuta (või tõsta\nmujale) {0} ning käivita Arduino uuesti."
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr "Viga jadapordi {0} avamisel"
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr "Buudilaaduri kirjutamisel tekkis viga."
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr "Koodi laadimise viga {0}"
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr "Viga trükkimisel."
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr "Eesti"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr "Näited"
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr "Eksport katkestatud. Muudatused peavad olema enne salvestatud."
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr "FAQ.html"
+
+#: Editor.java:491
+msgid "File"
+msgstr "Fail"
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr "Filipiini"
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr "Otsi"
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr "Otsi järgmine"
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr "Otsi eelmine"
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr "Registriviide"
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr "Otsi..."
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr "Otsi:"
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr "Paranda kooditabel ning laadi uuesti"
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr "Teekide paigaldamise juhendi leiab aadressilt http://arduino.cc/en/Guide/Libraries\n"
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr "Jõuga alglaadimine kasutades 1200bps pordi avamist-sulgemist"
+
+#: Preferences.java:95
+msgid "French"
+msgstr "Prantsuse"
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr "Korduma Kippuvad Küsimused"
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr "Galeegi"
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr "Gruusia"
+
+#: Preferences.java:97
+msgid "German"
+msgstr "Saksa"
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr "Alustamine"
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr "Kreeka"
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr "Guide_Environment.html"
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr "Guide_MacOSX.html"
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr "Guide_Troubleshooting.html"
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr "Guide_Windows.html"
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr "Heebria"
+
+#: Editor.java:1015
+msgid "Help"
+msgstr "Abi"
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr "Hindi"
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr "Kuidas oleks, kui salvestaks visandi \nenne nime muutmist?"
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr "Maakera sees on maakera"
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr "Ungari"
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr "Ignoreeri tähesuurust"
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr "Vigase nimega teegi eiramine"
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr "Vigase nimega visandi eriamine"
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr "Laadi teek..."
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr ""
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr "Suurenda taanet"
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr "Indoneesia"
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr ""
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr "Itaalia"
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr "Jaapani"
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr "Korea"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "Läti"
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr "Teek lisatud sinu teekide hulka. Leiad selle \"Laadi teek...\" menüüst"
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr "Leedu"
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr ""
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr "Marathi"
+
+#: Base.java:2112
+msgid "Message"
+msgstr "Teade"
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr "/* kommentaar */ lõpust puudub */"
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr "Rohkemate eelistuste muutmiseks muuda neid otse failis"
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr "Liigutamine"
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr "Uue faili nimi:"
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr "Uus"
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr "Uus redaktoriaken"
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr "Uus kaart"
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr "lisa NL (\\n)"
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr "Järgmine kaart"
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr "Ei"
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat."
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr "Automaatvormindus ei vaja muudatusi."
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr "Visandisse pole faile lisatud."
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr "Veebilehitseja puudub"
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr "Reavahetust ei lisa"
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr "Tõesti oleks aeg natuke värsket õhku hingata."
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr "\"{0}\" kohta juhend puudub"
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr "Mitte-saatsulik viga välimuse seadmises."
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr "Vabandust"
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr "Norra (Bokmål)"
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr ""
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr "Olgu"
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr "Visandisse on lisatud üks fail."
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr "Ava"
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr "Ava URL"
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr "Ava Arduino visand..."
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr "Ava uues aknas"
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr "Ava..."
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr "Lehekülje sätted"
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr "Aseta"
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr "Pärsia"
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr "Laadi SPI teek menüüst Visand > Laadi teek"
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr "Palun paigalda JDK 1.5 või hilisem"
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr "Poola"
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr "Eelistused"
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr "Eelmine"
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr "Eelmine kaart"
+
+#: Editor.java:571
+msgid "Print"
+msgstr "Prindi"
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr "Trükkimine katkestati."
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr "Trükkimine..."
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr "Kausta avamine ebaõnnestus"
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr "URL avamine ebaõnnestus"
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr "Platvormi valimise viga"
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr "Probleem andmekausta nime leidmisega"
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr "Probleem {0} liigutamisega kompileerimiskausta"
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr "Probleem plaadile üleslaadimisega. http://www.arduino.cc/en/Guide/Troubleshooting#upload leiad soovitusi probleemi lahendamiseks."
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr "Probleem nime muutmisega"
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr "Avada saab ainult oma visandeid ning .ino või .pde laienditega faile."
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr "Processor"
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr "Pogrammaator"
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr "Välju"
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr "Tee uuesti"
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr "Seletused"
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr "Nimeta ümber"
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr "Asendada"
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr "Otsi ja asenda"
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr "Asenda kõik"
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr "Kas vahetada {0} olemasolev versioon?"
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr "Asenda järgnevaga:"
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr "Rumeenia"
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr "Vene"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr "Salvesta"
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr "Salvesta kui..."
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr "Salvestamine katkestatud."
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr "Salvestan muudatused enne eksportimist?"
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr "Salvesta muudatused faili \"{0}\""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr "Salvesta visand uude kausta..."
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr "Salvestamine..."
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr "Vali (või loo uus) kaust visandite jaoks..."
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr "Vali kõik"
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr "Vali teeki sisaldav kataloog või ZIP fail"
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr "Vali pilt või muu andmefail visandi juurde kopeerimiseks"
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr "Vali uus visandite kaust"
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr ""
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr "Saada"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr "Jadapordi monitor"
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr "Jadaport {0} on juba kasutusel. Välju programmist, mis seda kasutab."
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr "Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab."
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr "Jadaport {0} puudub. Vali õige port menüüst Tööriistad -> Jadaport"
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr "Jadaport {0} puudub.\nProovin mõnda teist porti?"
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr "Probleem seadetega"
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr "Näita visandite kausta"
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr ""
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr "Näita detailsemat väljundit:"
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr "Visand"
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr "Visand on haihtunud"
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr "Visandit ei ole olemas"
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr "Visand on kirjutuskaitsega"
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr "Visand on pealkirjastamata"
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr "Visand on kirjutuskaitsega"
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr "Visand on liiga suur. Vaata http://www.arduino.cc/en/Guide/Troubleshooting#size lehelt näpunäiteid selle vähendamiseks."
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr "Visandid"
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr "Visandite kaust on haihtunud"
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr "Visandite asukoht:"
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr "Mõned failid on kirjutuskaitsega. Proovi uuesti\nsalvestades visand kuhugi mujale."
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr "Mõned failid on kirjutuskaitsega.\nPead salvestama visandi kuhugi mujale."
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr "Kahjuks on \"{0}\" nimega visand või kaust juba olemas."
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr "Hispaania"
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr "Särasilm"
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr "Süsteemi vaikimisi keel"
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr "Tamili"
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr "\"BYTE\" võtmesõna pole enam toetatud."
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr "Klass Client on nüüd EthernetClient."
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr "Klass Server on nüüd EthernetServer."
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr "Klass Udp on nimetatud ümber EthernetUdp."
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr "Kuigi Arduino läks ilusti käima, tekkis mingi viga."
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr "\"{0}\" peab asuma visandite kaustas \"{1}\".\nKas tekitan selle kausta ning liigutan faili sinna?"
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr "Teeki \"{0}\" ei saa kasutada.\nTeekide nimed tohivad sisaldada ainult ASCII tähti ja\nnumbreid ning peavad algama tähega."
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr "Põhifail ei tohi kasutada laiendit."
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr "Nimi ei või alata puntiga."
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr "Valitud visandit ei ole enam.\nVisandite menüü uuendamiseks\nkäivita Arduino uuesti."
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr "Visandit \"{0}\" ei saa kasutada.\nVisandite nimed nimed tohivad sisaldada ainult ASCII tähti\nja numbreid ning peavad algama tähega.\nSellest teatest saab lahti ainult \"{1}\" kaustast\nvisandi kustutamisega."
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr "Visandi kaust on haihtunud.\nPüüan samasse kohta uuesti salvestada,\nkuid kõik peale selle koodi on kadunud."
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr "Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII tähed ning numbrid (algama peab tähega).\nNimi peab olema lühem kui 64 märki."
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr "Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab sinna uue visandite kausta."
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr "See fail on juba kopeeritud kohta, kust sa seda\nkopeerida üritad. Seega ei pea ma midagi tegema."
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr "Aeg puhata"
+
+#: Editor.java:663
+msgid "Tools"
+msgstr "Tööriistad"
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr "Probleemide lahendamine"
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr "Türgi"
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr "Ukraina"
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr "Tekkis eriline viga: {0}"
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr "Võta tagasi"
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr "Tundmatu platvorm, veebilehitseja puudub.\nVeebiaadresside avamiseks lisa\n\"launcher=/kaust/brauser\" rida preferences.txt faili."
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr "Uuenda"
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr "Salvestamisel uuenda visandite laiendit (.pde -> .ino)"
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr "Laadi üles"
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr "Laadi üles programmaatori kaudu"
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr "Laadimine katkestati"
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr "I/O plaadile laadimine..."
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr "Üleslaadimine..."
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr "Kasuta otsimiseks valikut"
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr "Kasuta välist redaktorit"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr "Kontrolli"
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr "Kontrolli / Kompileeri"
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr "Kontrolli koodi peale üleslaadimist"
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr "Külasta Arduino.cc"
+
+#: Base.java:2128
+msgid "Warning"
+msgstr "Hoiatus"
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr "Wire.receive() on muudetud Wire.read()."
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr "Wire.send() on muudetud Wire.write()."
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr "Jätkatakse algusest"
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr "Mikrokontroller on vale tüüpi. Kas sa valisid Tööriistad > Plaat alt õige plaadi?"
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr "Jah"
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr "Mind sa ei lollita"
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr "Sama nimega visand on juba olemas. .cpp faili nimi peab olema erinev."
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr "Visandit ei saa nimetada \"{0}\" sest\nsellise nimega .cpp fail on juba olemas."
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr "Visandit ei saa salvestada nimega \"{0}\" sest\nsellise nimega .cpp fail on juba olemas."
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr "Sa ei saa salvestada visandit kausta,\nmis on sama kausta sees."
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr "Sa unustasid oma visandid"
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr "Sa oled saavutanud ühel päeval loodavate automaatsete\nnimede piiri. Kuidas hoopis oleks väikese jalutuskäiguga?"
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr "ZIP failid või kaustad"
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr "ZIP failis pole teeki"
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr "\".{0}\" pole lubatud laiend."
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr "\"{0}\" sisaldab tundmatuid tähemärke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks menüüst Tööriistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased märgid käsitsi kustutada."
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr "\nAlates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\nPaistab, et sa kasutad seda või mõnda muud teeki, mis sõltub SPI teegist.\n\n"
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr "\nAlates Arduino 1.0 ei kasutata enam võtmesõna \"BYTE\".\nPalun kasuta Serial.write() selle asemel.\n\n"
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr "\nAlates Arduino 1.0 on Etherneti teegis olev klass Client nimetatud ümber EthernetClient.\n\n"
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr "\nAlates Arduino 1.0 on Etherneti teegis olev klass Server nimetatud ümber EthernetServer.\n\n"
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr "\nAlates Arduino 1.0 on Etherneti teegis olev klass Udp nimetatud ümber EthernetUdp.\n\n"
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr "\nAlates Arduino 1.0 on Wire.receive() nimetatud ümber Wire.read() tagamaks sarnase nimetamise teiste teekidega.\n\n"
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr "\nAlates Arduino 1.0 on Wire.send() nimetatud ümber Wire.write() tagamaks sarnase nimetamise teiste teekidega.\n\n"
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr " boodi"
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr "kopileerimise ajal"
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr "createNewFile() ebaõnnestus"
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr "Töökeskkond"
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr "http://arduino.cc/"
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr "http://github.com/arduino/Arduino/issues"
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr "http://www.arduino.cc/en/Main/Software"
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr "http://www.arduino.cc/latest.txt"
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr "http://www.arduino.cc/playground/Learning/Linux"
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr "vigase fondi suuruse \"{0}\" eiramine"
+
+#: Base.java:2080
+msgid "index.html"
+msgstr "index.html"
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr "name on null"
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr "platforms.html"
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr "readBytesUntil() baitide puhver on liiga väike {0} ja rohkema baidi jaoks alates märgist {1}"
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr "removeCode: sisemine viga.. ei leidnud koodi"
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr "serialMenu on null"
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr "valitud jadaporti {0} ei eksisteeri või plaat on ühendamata"
+
+#: Preferences.java:391
+msgid "upload"
+msgstr "üleslaadimise ajal"
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr "Visandisse on lisatud {0} faili."
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr "{0} tagastas {1}"
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr "{0} | Arduino {1}"
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_et_EE.properties b/app/src/processing/app/i18n/Resources_et_EE.properties
new file mode 100644
index 000000000..ad1e2fc72
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_et_EE.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Viimase avatud visandi sulgemisel suletakse ka Arduino keskkond.
+
+#: Editor.java:2053
+\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= salvestamata muudatused l\u00e4hevad kaduma
+
+#: Sketch.java:398
+#, java-format
+A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"="{1}" kasutas on fail nimega "{0}" juba olemas
+
+#: Editor.java:2169
+#, java-format
+A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Kaust "{0}" on juba olemas. Ei saa visandit avada.
+
+#: Base.java:2690
+#, java-format
+A\ library\ named\ {0}\ already\ exists=Teek "{0}" on juba olemas
+
+#: UpdateCheck.java:103
+A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Saadaval on uuem versioon Arduinost.\nKas soovid allalaadimislehte k\u00fclastada?
+
+#: EditorConsole.java:153
+A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Konsooli v\u00e4ljundi salvestamiseks vajaliku faili avamisel tekkis viga.
+
+#: Editor.java:1116
+About\ Arduino=Arduinost
+
+#: Editor.java:650
+Add\ File...=Lisa fail...
+
+#: Base.java:963
+Add\ Library...=Lisa teek...
+
+#: tools/FixEncoding.java:77
+An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Faili kooditabeli muutmisel tekkis viga. \u00c4ra proovi\nseda visandit salvestada kuna see v\u00f5ib olemasoleva\n\u00fcle kirjutada. Ava visand uuesti ning proovi uuesti.\n
+
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Sinu masina platvormip\u00f5hise koodi laadimisel\ntekkis tundmatu viga.
+
+#: Preferences.java:85
+Arabic=Araabia
+
+#: Preferences.java:86
+Aragonese=\u00b4aragoni
+
+#: tools/Archiver.java:48
+Archive\ Sketch=Arhiveeri visand
+
+#: tools/Archiver.java:109
+Archive\ sketch\ as\:=Arhiveeri visand uue nimega\:
+
+#: tools/Archiver.java:139
+Archive\ sketch\ canceled.=Visandi arhiveerimine katkestatud.
+
+#: tools/Archiver.java:75
+Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Visandi arhiveerimine eba\u00f5nnestus kuna seda\nei saanud korralikult salvestada.
+
+#: ../../../processing/app/I18n.java:83
+Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32 bit) plaadid
+
+#: ../../../processing/app/I18n.java:82
+Arduino\ AVR\ Boards=Arduino AVR plaadid
+
+#: Base.java:1682
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ei saa Arduinot k\u00e4ivitada kuna seadete kausta\nloomine ei \u00f5nnestunud.
+
+#: Base.java:1889
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Ei saa Arduinot k\u00e4ivitada kuna visandite kausta\nloomine ei \u00f5nnestunud.
+
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino vajab t\u00f6\u00f6ks kogu JDK paigaldamist (mitte ainult JRE).\nPalun paigalda JDK versioon 1.5 v\u00f5i hilisem.\nRohkem infot leiad viidetest.
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Oled kindel, et soovid kustutada "{0}"?
+
+#: Sketch.java:587
+Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Oled kindel, et soovid kustutada selle visandi?
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+Auto\ Format=Automaatvormindus
+
+#: tools/AutoFormat.java:934
+Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Automaatvormindus katkestatud\: liiga palju algavaid looksulge.
+
+#: tools/AutoFormat.java:925
+Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Automaatvormindus katkestatud\: liiga palju algavaid sulge.
+
+#: tools/AutoFormat.java:931
+Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Automaatvormindus katkestatud\: liiga palju l\u00f5ppevaid looksulge.
+
+#: tools/AutoFormat.java:922
+Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Automaatvormindus katkestatud\: liiga palju l\u00f5ppevaid sulge.
+
+#: tools/AutoFormat.java:944
+Auto\ Format\ finished.=Automaatvormindus tehtud.
+
+#: Preferences.java:439
+Automatically\ associate\ .ino\ files\ with\ Arduino=Seo .ino laiend automaatselt Arduinoga
+
+#: SerialMonitor.java:110
+Autoscroll=Isekerimine
+
+#: Editor.java:2619
+#, java-format
+Bad\ error\ line\:\ {0}=Viga real\: {0}
+
+#: Editor.java:2136
+Bad\ file\ selected=Vigane fail valitud
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+Board=Plaat
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+Both\ NL\ &\ CR=lisa NL+CR (\\r\\n)
+
+#: Preferences.java:81
+Browse=Sirvi
+
+#: Sketch.java:1392 Sketch.java:1423
+Build\ folder\ disappeared\ or\ could\ not\ be\ written=Kompileerimise kaust on haihtunud v\u00f5i pole kirjutatav
+
+#: ../../../processing/app/Preferences.java:80
+Bulgarian=Bulgaaria
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+Burn\ Bootloader=Kirjuta buudilaadur
+
+#: Editor.java:2504
+Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Buudilaaduri I/O plaadile kirjutamine (see v\u00f5ib kesta m\u00f5ni minut)...
+
+#: ../../../processing/app/Base.java:368
+Can't\ open\ source\ sketch\!=Visandi avamine eba\u00f5nnestus
+
+#: ../../../processing/app/Preferences.java:92
+Canadian\ French=Prantsuse (Kanada)
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+Cancel=Loobu
+
+#: Sketch.java:455
+Cannot\ Rename=\u00dcmbernimetamine nurjus
+
+#: SerialMonitor.java:112
+Carriage\ return=lisa CR (\\r)
+
+#: Preferences.java:87
+Catalan=Katalaani
+
+#: Preferences.java:419
+Check\ for\ updates\ on\ startup=K\u00e4ivitamisel kontrolli uuendusi
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+Chinese\ Simplified=Hiina (lihtsustatud)
+
+#: Preferences.java:89
+Chinese\ Traditional=Traditsiooniline Hiina
+
+#: Editor.java:521 Editor.java:2024
+Close=Sulge
+
+#: Editor.java:1208 Editor.java:2749
+Comment/Uncomment=Kommentaari lisamine/eemaldamine
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilaatori viga, saada see kood {0}
+
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=Visandi kompileerimine...
+
+#: EditorConsole.java:152
+Console\ Error=Konsooli viga
+
+#: Editor.java:1157 Editor.java:2707
+Copy=Kopeeri
+
+#: Editor.java:1177 Editor.java:2723
+Copy\ as\ HTML=Kopeeri HTML-ina
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=Kopeeri foorumi jaoks
+
+#: Sketch.java:1089
+#, java-format
+Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}'' ei saa visandisse lisada.
+
+#: Editor.java:2188
+Could\ not\ copy\ to\ a\ proper\ location.=Etten\u00e4htud kohta ei saa kopeerida.
+
+#: Editor.java:2179
+Could\ not\ create\ the\ sketch\ folder.=Visandi kausta pole v\u00f5imalik luua
+
+#: Editor.java:2206
+Could\ not\ create\ the\ sketch.=Visandi loomine nurjus.
+
+#: Sketch.java:617
+#, java-format
+Could\ not\ delete\ "{0}".="{0}" pole v\u00f5imalik kustutada.
+
+#: Sketch.java:1066
+#, java-format
+Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Ei saa kustutada olemasolevat faili "{0}".
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+Could\ not\ delete\ {0}={0} pole v\u00f5imalik kustutada.
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+Could\ not\ open\ the\ URL\n{0}=URL avamine eba\u00f5nnestus\n{0}
+
+#: Base.java:1958
+#, java-format
+Could\ not\ open\ the\ folder\n{0}=Kausta avamine eba\u00f5nnestus\n{0}
+
+#: Sketch.java:1769
+Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Visandi uuesti salvestamine nurjus. Siin on tegemist t\u00f5sise probleemiga.\nProovi l\u00f5igata ning kleepida oma kood m\u00f5nda teisse tekstiredaktorisse.
+
+#: Sketch.java:1768
+Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus
+
+#: Theme.java:52
+Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Ei saa avada v\u00e4rviteema seadeid.\nProcessing tuleb uuesti paigaldada.
+
+#: Preferences.java:219
+Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada.
+
+#: Preferences.java:258
+#, java-format
+Could\ not\ read\ preferences\ from\ {0}=Ei saa lugeda eelistusi failist {0}
+
+#: Base.java:2482
+#, java-format
+Could\ not\ remove\ old\ version\ of\ {0}=Ei saanud {0} vana versiooni eemaldada
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}" pole v\u00f5imalik "{1}"-ks \u00fcmber nimetada.
+
+#: Sketch.java:475
+Could\ not\ rename\ the\ sketch.\ (0)=Visandi \u00fcmbernimetamine nurjus. (0)
+
+#: Sketch.java:496
+Could\ not\ rename\ the\ sketch.\ (1)=Visandi \u00fcmbernimetamine nurjus. (1)
+
+#: Sketch.java:503
+Could\ not\ rename\ the\ sketch.\ (2)=Visandi \u00fcmbernimetamine nurjus. (2)
+
+#: Base.java:2492
+#, java-format
+Could\ not\ replace\ {0}={0} pole v\u00f5imalik asendada
+
+#: tools/Archiver.java:74
+Couldn't\ archive\ sketch=Visandi arhiveerimine eba\u00f5nnestus
+
+#: Sketch.java:1647
+Couldn't\ determine\ program\ size\:\ {0}=Programmi suurust ei saanud kindlaks teha\: {0}
+
+#: Sketch.java:616
+Couldn't\ do\ it=Ei saanud seda teha
+
+#: debug/BasicUploader.java:209
+Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Ei leia plaati valitud pordi k\u00fcljest. Konrolli, et valitud oleks \u00f5ige port. Kui port on \u00f5ige, proovi vajutada plaadi RESET nuppu kohe peale \u00fcleslaadimise alustamist.
+
+#: ../../../processing/app/Preferences.java:82
+Croatian=Horvaatia
+
+#: Editor.java:1149 Editor.java:2699
+Cut=L\u00f5ika
+
+#: ../../../processing/app/Preferences.java:83
+Czech=T\u0161ehhi
+
+#: Preferences.java:90
+Danish=Taani
+
+#: Editor.java:1224 Editor.java:2765
+Decrease\ Indent=V\u00e4henda taanet
+
+#: EditorHeader.java:314 Sketch.java:591
+Delete=Kustuta
+
+#: debug/Uploader.java:199
+Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Seade ei vasta. Kontrolli, et valitud oleks \u00f5ige jadaport v\u00f5i vajuta enne eksportimist RESET nuppu
+
+#: tools/FixEncoding.java:57
+Discard\ all\ changes\ and\ reload\ sketch?=Unusta k\u00f5ik muudatused ning laadi uuesti?
+
+#: Editor.java:2064
+Don't\ Save=\u00c4ra salvesta
+
+#: Editor.java:2275 Editor.java:2311
+Done\ Saving.=Salvestatud.
+
+#: Editor.java:2510
+Done\ burning\ bootloader.=Buudilaadur edukalt kirjutatud.
+
+#: Editor.java:1911 Editor.java:1928
+Done\ compiling.=Kompileeritud.
+
+#: Editor.java:2564
+Done\ printing.=Tr\u00fckitud.
+
+#: Editor.java:2395 Editor.java:2431
+Done\ uploading.=Laadimine l\u00f5petatud
+
+#: Preferences.java:91
+Dutch=Hollandi
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+Edit=Redigeeri
+
+#: Preferences.java:370
+Editor\ font\ size\:\ =Tekstiredaktori kirja suurus\:
+
+#: Preferences.java:353
+Editor\ language\:\ =Tekstiredaktori keel\:
+
+#: Preferences.java:92
+English=Inglise
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+Environment=T\u00f6\u00f6keskkond
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=Viga
+
+#: Sketch.java:1065 Sketch.java:1088
+Error\ adding\ file=Viga faili lisamisel
+
+#: debug/Compiler.java:369
+Error\ compiling.=Kompileerimise viga.
+
+#: Base.java:1674
+Error\ getting\ the\ Arduino\ data\ folder.=Arduino andmekausta nime leidmise viga.
+
+#: Serial.java:593
+#, java-format
+Error\ inside\ Serial.{0}()=Viga Serial.{0}() sees
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+Error\ opening\ serial\ port\ ''{0}''.=Viga jadapordi {0} avamisel
+
+#: Preferences.java:277
+Error\ reading\ preferences=Viga eelistuste lugemisel
+
+#: Preferences.java:279
+#, java-format
+Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Viga eelistuste faili lugemisel. Palun kustuta (v\u00f5i t\u00f5sta\nmujale) {0} ning k\u00e4ivita Arduino uuesti.
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+Error\ touching\ serial\ port\ ''{0}''.=Viga jadapordi {0} avamisel
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+Error\ while\ burning\ bootloader.=Buudilaaduri kirjutamisel tekkis viga.
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0}
+
+#: Editor.java:2567
+Error\ while\ printing.=Viga tr\u00fckkimisel.
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+Estonian=Eesti
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+Examples=N\u00e4ited
+
+#: Editor.java:2482
+Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud. Muudatused peavad olema enne salvestatud.
+
+#: Base.java:2100
+FAQ.html=FAQ.html
+
+#: Editor.java:491
+File=Fail
+
+#: Preferences.java:94
+Filipino=Filipiini
+
+#: FindReplace.java:124 FindReplace.java:127
+Find=Otsi
+
+#: Editor.java:1249
+Find\ Next=Otsi j\u00e4rgmine
+
+#: Editor.java:1259
+Find\ Previous=Otsi eelmine
+
+#: Editor.java:1086 Editor.java:2775
+Find\ in\ Reference=Registriviide
+
+#: Editor.java:1234
+Find...=Otsi...
+
+#: FindReplace.java:80
+Find\:=Otsi\:
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+Fix\ Encoding\ &\ Reload=Paranda kooditabel ning laadi uuesti
+
+#: Base.java:1851
+For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Teekide paigaldamise juhendi leiab aadressilt http\://arduino.cc/en/Guide/Libraries\n
+
+#: debug/BasicUploader.java:80
+Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =J\u00f5uga alglaadimine kasutades 1200bps pordi avamist-sulgemist
+
+#: Preferences.java:95
+French=Prantsuse
+
+#: Editor.java:1097
+Frequently\ Asked\ Questions=Korduma Kippuvad K\u00fcsimused
+
+#: Preferences.java:96
+Galician=Galeegi
+
+#: ../../../processing/app/Preferences.java:94
+Georgian=Gruusia
+
+#: Preferences.java:97
+German=Saksa
+
+#: Editor.java:1054
+Getting\ Started=Alustamine
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+Greek=Kreeka
+
+#: Base.java:2085
+Guide_Environment.html=Guide_Environment.html
+
+#: Base.java:2071
+Guide_MacOSX.html=Guide_MacOSX.html
+
+#: Base.java:2095
+Guide_Troubleshooting.html=Guide_Troubleshooting.html
+
+#: Base.java:2073
+Guide_Windows.html=Guide_Windows.html
+
+#: ../../../processing/app/Preferences.java:95
+Hebrew=Heebria
+
+#: Editor.java:1015
+Help=Abi
+
+#: Preferences.java:99
+Hindi=Hindi
+
+#: Sketch.java:295
+How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Kuidas oleks, kui salvestaks visandi \nenne nime muutmist?
+
+#: Sketch.java:882
+How\ very\ Borges\ of\ you=Maakera sees on maakera
+
+#: Preferences.java:100
+Hungarian=Ungari
+
+#: FindReplace.java:96
+Ignore\ Case=Ignoreeri t\u00e4hesuurust
+
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Vigase nimega teegi eiramine
+
+#: Base.java:1436
+Ignoring\ sketch\ with\ bad\ name=Vigase nimega visandi eriamine
+
+#: Editor.java:636
+Import\ Library...=Laadi teek...
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+Increase\ Indent=Suurenda taanet
+
+#: Preferences.java:101
+Indonesian=Indoneesia
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+Italian=Itaalia
+
+#: Preferences.java:103
+Japanese=Jaapani
+
+#: Preferences.java:104
+Korean=Korea
+
+#: Preferences.java:105
+Latvian=L\u00e4ti
+
+#: Base.java:2699
+Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Teek lisatud sinu teekide hulka. Leiad selle "Laadi teek..." men\u00fc\u00fcst
+
+#: Preferences.java:106
+Lithuaninan=Leedu
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+Marathi=Marathi
+
+#: Base.java:2112
+Message=Teade
+
+#: Sketch.java:1712
+Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* kommentaar */ l\u00f5pust puudub */
+
+#: Preferences.java:449
+More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Rohkemate eelistuste muutmiseks muuda neid otse failis
+
+#: Editor.java:2156
+Moving=Liigutamine
+
+#: Sketch.java:282
+Name\ for\ new\ file\:=Uue faili nimi\:
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+New=Uus
+
+#: EditorToolbar.java:46
+New\ Editor\ Window=Uus redaktoriaken
+
+#: EditorHeader.java:292
+New\ Tab=Uus kaart
+
+#: SerialMonitor.java:112
+Newline=lisa NL (\\n)
+
+#: EditorHeader.java:340
+Next\ Tab=J\u00e4rgmine kaart
+
+#: Preferences.java:78 UpdateCheck.java:108
+No=Ei
+
+#: debug/Compiler.java:126
+No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plaat pole valitud. Palun tee oma valik men\u00fc\u00fcs T\u00f6\u00f6riistad > Plaat.
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+No\ changes\ necessary\ for\ Auto\ Format.=Automaatvormindus ei vaja muudatusi.
+
+#: Editor.java:373
+No\ files\ were\ added\ to\ the\ sketch.=Visandisse pole faile lisatud.
+
+#: Platform.java:167
+No\ launcher\ available=Veebilehitseja puudub
+
+#: SerialMonitor.java:112
+No\ line\ ending=Reavahetust ei lisa
+
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=T\u00f5esti oleks aeg natuke v\u00e4rsket \u00f5hku hingata.
+
+#: Editor.java:1872
+#, java-format
+No\ reference\ available\ for\ "{0}"="{0}" kohta juhend puudub
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Mitte-saatsulik viga v\u00e4limuse seadmises.
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+Nope=Vabandust
+
+#: ../../../processing/app/Preferences.java:108
+Norwegian\ Bokm\u00e5l=Norra (Bokm\u00e5l)
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=Olgu
+
+#: Sketch.java:992 Editor.java:376
+One\ file\ added\ to\ the\ sketch.=Visandisse on lisatud \u00fcks fail.
+
+#: EditorToolbar.java:41
+Open=Ava
+
+#: Editor.java:2688
+Open\ URL=Ava URL
+
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=Ava Arduino visand...
+
+#: EditorToolbar.java:46
+Open\ in\ Another\ Window=Ava uues aknas
+
+#: Base.java:903 Editor.java:501
+Open...=Ava...
+
+#: Editor.java:563
+Page\ Setup=Lehek\u00fclje s\u00e4tted
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+Paste=Aseta
+
+#: Preferences.java:109
+Persian=P\u00e4rsia
+
+#: debug/Compiler.java:408
+Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Laadi SPI teek men\u00fc\u00fcst Visand > Laadi teek
+
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=Palun paigalda JDK 1.5 v\u00f5i hilisem
+
+#: Preferences.java:110
+Polish=Poola
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+Preferences=Eelistused
+
+#: FindReplace.java:123 FindReplace.java:128
+Previous=Eelmine
+
+#: EditorHeader.java:326
+Previous\ Tab=Eelmine kaart
+
+#: Editor.java:571
+Print=Prindi
+
+#: Editor.java:2571
+Printing\ canceled.=Tr\u00fckkimine katkestati.
+
+#: Editor.java:2547
+Printing...=Tr\u00fckkimine...
+
+#: Base.java:1957
+Problem\ Opening\ Folder=Kausta avamine eba\u00f5nnestus
+
+#: Base.java:1933
+Problem\ Opening\ URL=URL avamine eba\u00f5nnestus
+
+#: Base.java:227
+Problem\ Setting\ the\ Platform=Platvormi valimise viga
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+Problem\ getting\ data\ folder=Probleem andmekausta nime leidmisega
+
+#: Sketch.java:1467
+#, java-format
+Problem\ moving\ {0}\ to\ the\ build\ folder=Probleem {0} liigutamisega kompileerimiskausta
+
+#: debug/Uploader.java:209
+Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleem plaadile \u00fcleslaadimisega. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload leiad soovitusi probleemi lahendamiseks.
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+Problem\ with\ rename=Probleem nime muutmisega
+
+#: Editor.java:2137
+Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Avada saab ainult oma visandeid ning .ino v\u00f5i .pde laienditega faile.
+
+#: ../../../processing/app/I18n.java:86
+Processor=Processor
+
+#: Editor.java:704
+Programmer=Pogrammaator
+
+#: Base.java:783 Editor.java:593
+Quit=V\u00e4lju
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+Redo=Tee uuesti
+
+#: Editor.java:1078
+Reference=Seletused
+
+#: EditorHeader.java:300
+Rename=Nimeta \u00fcmber
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+Replace=Asendada
+
+#: FindReplace.java:122 FindReplace.java:129
+Replace\ &\ Find=Otsi ja asenda
+
+#: FindReplace.java:120 FindReplace.java:131
+Replace\ All=Asenda k\u00f5ik
+
+#: Sketch.java:1043
+#, java-format
+Replace\ the\ existing\ version\ of\ {0}?=Kas vahetada {0} olemasolev versioon?
+
+#: FindReplace.java:81
+Replace\ with\:=Asenda j\u00e4rgnevaga\:
+
+#: Preferences.java:113
+Romanian=Rumeenia
+
+#: Preferences.java:114
+Russian=Vene
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+Save=Salvesta
+
+#: Editor.java:537
+Save\ As...=Salvesta kui...
+
+#: Editor.java:2317
+Save\ Canceled.=Salvestamine katkestatud.
+
+#: Editor.java:2467
+Save\ changes\ before\ export?=Salvestan muudatused enne eksportimist?
+
+#: Editor.java:2020
+#, java-format
+Save\ changes\ to\ "{0}"?\ \ =Salvesta muudatused faili "{0}"
+
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=Salvesta visand uude kausta...
+
+#: Editor.java:2270 Editor.java:2308
+Saving...=Salvestamine...
+
+#: Base.java:1909
+Select\ (or\ create\ new)\ folder\ for\ sketches...=Vali (v\u00f5i loo uus) kaust visandite jaoks...
+
+#: Editor.java:1198 Editor.java:2739
+Select\ All=Vali k\u00f5ik
+
+#: Base.java:2636
+Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Vali teeki sisaldav kataloog v\u00f5i ZIP fail
+
+#: Sketch.java:975
+Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Vali pilt v\u00f5i muu andmefail visandi juurde kopeerimiseks
+
+#: Preferences.java:330
+Select\ new\ sketchbook\ location=Vali uus visandite kaust
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+Send=Saada
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+Serial\ Monitor=Jadapordi monitor
+
+#: Serial.java:174
+#, java-format
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. V\u00e4lju programmist, mis seda kasutab.
+
+#: Serial.java:121
+#, java-format
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab.
+
+#: Serial.java:194
+#, java-format
+Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Jadaport {0} puudub. Vali \u00f5ige port men\u00fc\u00fcst T\u00f6\u00f6riistad -> Jadaport
+
+#: Editor.java:2343
+#, java-format
+Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Jadaport {0} puudub.\nProovin m\u00f5nda teist porti?
+
+#: Base.java:1681
+Settings\ issues=Probleem seadetega
+
+#: Editor.java:641
+Show\ Sketch\ Folder=N\u00e4ita visandite kausta
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+Show\ verbose\ output\ during\:\ =N\u00e4ita detailsemat v\u00e4ljundit\:
+
+#: Editor.java:607
+Sketch=Visand
+
+#: Sketch.java:1754
+Sketch\ Disappeared=Visand on haihtunud
+
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=Visandit ei ole olemas
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+Sketch\ is\ Read-Only=Visand on kirjutuskaitsega
+
+#: Sketch.java:294
+Sketch\ is\ Untitled=Visand on pealkirjastamata
+
+#: Sketch.java:720
+Sketch\ is\ read-only=Visand on kirjutuskaitsega
+
+#: Sketch.java:1653
+Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Visand on liiga suur. Vaata http\://www.arduino.cc/en/Guide/Troubleshooting\#size lehelt n\u00e4pun\u00e4iteid selle v\u00e4hendamiseks.
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+Sketchbook=Visandid
+
+#: Base.java:258
+Sketchbook\ folder\ disappeared=Visandite kaust on haihtunud
+
+#: Preferences.java:315
+Sketchbook\ location\:=Visandite asukoht\:
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=M\u00f5ned failid on kirjutuskaitsega. Proovi uuesti\nsalvestades visand kuhugi mujale.
+
+#: Sketch.java:721
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=M\u00f5ned failid on kirjutuskaitsega.\nPead salvestama visandi kuhugi mujale.
+
+#: Sketch.java:457
+#, java-format
+Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Kahjuks on "{0}" nimega visand v\u00f5i kaust juba olemas.
+
+#: Preferences.java:115
+Spanish=Hispaania
+
+#: Base.java:540
+Sunshine=S\u00e4rasilm
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+System\ Default=S\u00fcsteemi vaikimisi keel
+
+#: Preferences.java:116
+Tamil=Tamili
+
+#: debug/Compiler.java:414
+The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.="BYTE" v\u00f5tmes\u00f5na pole enam toetatud.
+
+#: debug/Compiler.java:426
+The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klass Client on n\u00fc\u00fcd EthernetClient.
+
+#: debug/Compiler.java:420
+The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klass Server on n\u00fc\u00fcd EthernetServer.
+
+#: debug/Compiler.java:432
+The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klass Udp on nimetatud \u00fcmber EthernetUdp.
+
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Kuigi Arduino l\u00e4ks ilusti k\u00e4ima, tekkis mingi viga.
+
+#: Editor.java:2147
+#, java-format
+The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?="{0}" peab asuma visandite kaustas "{1}".\nKas tekitan selle kausta ning liigutan faili sinna?
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Teeki "{0}" ei saa kasutada.\nTeekide nimed tohivad sisaldada ainult ASCII t\u00e4hti ja\nnumbreid ning peavad algama t\u00e4hega.
+
+#: Sketch.java:374
+The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=P\u00f5hifail ei tohi kasutada laiendit.
+
+#: Sketch.java:356
+The\ name\ cannot\ start\ with\ a\ period.=Nimi ei v\u00f5i alata puntiga.
+
+#: Base.java:1412
+The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Valitud visandit ei ole enam.\nVisandite men\u00fc\u00fc uuendamiseks\nk\u00e4ivita Arduino uuesti.
+
+#: Base.java:1430
+#, java-format
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Visandit "{0}" ei saa kasutada.\nVisandite nimed nimed tohivad sisaldada ainult ASCII t\u00e4hti\nja numbreid ning peavad algama t\u00e4hega.\nSellest teatest saab lahti ainult "{1}" kaustast\nvisandi kustutamisega.
+
+#: Sketch.java:1755
+The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Visandi kaust on haihtunud.\nP\u00fc\u00fcan samasse kohta uuesti salvestada,\nkuid k\u00f5ik peale selle koodi on kadunud.
+
+#: Sketch.java:2018
+The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII t\u00e4hed ning numbrid (algama peab t\u00e4hega).\nNimi peab olema l\u00fchem kui 64 m\u00e4rki.
+
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab sinna uue visandite kausta.
+
+#: Sketch.java:1075
+This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=See fail on juba kopeeritud kohta, kust sa seda\nkopeerida \u00fcritad. Seega ei pea ma midagi tegema.
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+Time\ for\ a\ Break=Aeg puhata
+
+#: Editor.java:663
+Tools=T\u00f6\u00f6riistad
+
+#: Editor.java:1070
+Troubleshooting=Probleemide lahendamine
+
+#: ../../../processing/app/Preferences.java:117
+Turkish=T\u00fcrgi
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+Ukrainian=Ukraina
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+Uncaught\ exception\ type\:\ {0}=Tekkis eriline viga\: {0}
+
+#: Editor.java:1133 Editor.java:1355
+Undo=V\u00f5ta tagasi
+
+#: Platform.java:168
+Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Tundmatu platvorm, veebilehitseja puudub.\nVeebiaadresside avamiseks lisa\n"launcher\=/kaust/brauser" rida preferences.txt faili.
+
+#: UpdateCheck.java:111
+Update=Uuenda
+
+#: Preferences.java:428
+Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Salvestamisel uuenda visandite laiendit (.pde -> .ino)
+
+#: EditorToolbar.java:41 Editor.java:545
+Upload=Laadi \u00fcles
+
+#: EditorToolbar.java:46 Editor.java:553
+Upload\ Using\ Programmer=Laadi \u00fcles programmaatori kaudu
+
+#: Editor.java:2403 Editor.java:2439
+Upload\ canceled.=Laadimine katkestati
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+Uploading\ to\ I/O\ Board...=I/O plaadile laadimine...
+
+#: Sketch.java:1622
+Uploading...=\u00dcleslaadimine...
+
+#: Editor.java:1269
+Use\ Selection\ For\ Find=Kasuta otsimiseks valikut
+
+#: Preferences.java:409
+Use\ external\ editor=Kasuta v\u00e4list redaktorit
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+Verify=Kontrolli
+
+#: Editor.java:609
+Verify\ /\ Compile=Kontrolli / Kompileeri
+
+#: Preferences.java:400
+Verify\ code\ after\ upload=Kontrolli koodi peale \u00fcleslaadimist
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+Visit\ Arduino.cc=K\u00fclasta Arduino.cc
+
+#: Base.java:2128
+Warning=Hoiatus
+
+#: debug/Compiler.java:444
+Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() on muudetud Wire.read().
+
+#: debug/Compiler.java:438
+Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() on muudetud Wire.write().
+
+#: FindReplace.java:105
+Wrap\ Around=J\u00e4tkatakse algusest
+
+#: debug/Uploader.java:213
+Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mikrokontroller on vale t\u00fc\u00fcpi. Kas sa valisid T\u00f6\u00f6riistad > Plaat alt \u00f5ige plaadi?
+
+#: Preferences.java:77 UpdateCheck.java:108
+Yes=Jah
+
+#: Sketch.java:1074
+You\ can't\ fool\ me=Mind sa ei lollita
+
+#: Sketch.java:411
+You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sama nimega visand on juba olemas. .cpp faili nimi peab olema erinev.
+
+#: Sketch.java:421
+You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa nimetada "{0}" sest\nsellise nimega .cpp fail on juba olemas.
+
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa salvestada nimega "{0}" sest\nsellise nimega .cpp fail on juba olemas.
+
+#: Sketch.java:883
+You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sa ei saa salvestada visandit kausta,\nmis on sama kausta sees.
+
+#: Base.java:1888
+You\ forgot\ your\ sketchbook=Sa unustasid oma visandid
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Sa oled saavutanud \u00fchel p\u00e4eval loodavate automaatsete\nnimede piiri. Kuidas hoopis oleks v\u00e4ikese jalutusk\u00e4iguga?
+
+#: Base.java:2638
+ZIP\ files\ or\ folders=ZIP failid v\u00f5i kaustad
+
+#: Base.java:2661
+Zip\ doesn't\ contain\ a\ library=ZIP failis pole teeki
+
+#: Sketch.java:364
+#, java-format
+".{0}"\ is\ not\ a\ valid\ extension.=".{0}" pole lubatud laiend.
+
+#: SketchCode.java:258
+#, java-format
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sisaldab tundmatuid t\u00e4hem\u00e4rke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks men\u00fc\u00fcst T\u00f6\u00f6riistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased m\u00e4rgid k\u00e4sitsi kustutada.
+
+#: debug/Compiler.java:409
+\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAlates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\nPaistab, et sa kasutad seda v\u00f5i m\u00f5nda muud teeki, mis s\u00f5ltub SPI teegist.\n\n
+
+#: debug/Compiler.java:415
+\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nAlates Arduino 1.0 ei kasutata enam v\u00f5tmes\u00f5na "BYTE".\nPalun kasuta Serial.write() selle asemel.\n\n
+
+#: debug/Compiler.java:427
+\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Client nimetatud \u00fcmber EthernetClient.\n\n
+
+#: debug/Compiler.java:421
+\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Server nimetatud \u00fcmber EthernetServer.\n\n
+
+#: debug/Compiler.java:433
+\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Udp nimetatud \u00fcmber EthernetUdp.\n\n
+
+#: debug/Compiler.java:445
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nAlates Arduino 1.0 on Wire.receive() nimetatud \u00fcmber Wire.read() tagamaks sarnase nimetamise teiste teekidega.\n\n
+
+#: debug/Compiler.java:439
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nAlates Arduino 1.0 on Wire.send() nimetatud \u00fcmber Wire.write() tagamaks sarnase nimetamise teiste teekidega.\n\n
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+baud=\ boodi
+
+#: Preferences.java:389
+compilation\ =kopileerimise ajal
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+createNewFile()\ returned\ false=createNewFile() eba\u00f5nnestus
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+environment=T\u00f6\u00f6keskkond
+
+#: Editor.java:1108
+http\://arduino.cc/=http\://arduino.cc/
+
+#: ../../../processing/app/debug/Compiler.java:49
+http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues
+
+#: UpdateCheck.java:118
+http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
+
+#: UpdateCheck.java:53
+http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
+
+#: Base.java:2075
+http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
+
+#: Preferences.java:625
+#, java-format
+ignoring\ invalid\ font\ size\ {0}=vigase fondi suuruse "{0}" eiramine
+
+#: Base.java:2080
+index.html=index.html
+
+#: Editor.java:936 Editor.java:943
+name\ is\ null=name on null
+
+#: Base.java:2090
+platforms.html=platforms.html
+
+#: Serial.java:451
+#, java-format
+readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() baitide puhver on liiga v\u00e4ike {0} ja rohkema baidi jaoks alates m\u00e4rgist {1}
+
+#: Sketch.java:647
+removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: sisemine viga.. ei leidnud koodi
+
+#: Editor.java:932
+serialMenu\ is\ null=serialMenu on null
+
+#: debug/Uploader.java:195
+#, java-format
+the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=valitud jadaporti {0} ei eksisteeri v\u00f5i plaat on \u00fchendamata
+
+#: Preferences.java:391
+upload=\u00fcleslaadimise ajal
+
+#: Editor.java:380
+#, java-format
+{0}\ files\ added\ to\ the\ sketch.=Visandisse on lisatud {0} faili.
+
+#: debug/Compiler.java:365
+#, java-format
+{0}\ returned\ {1}={0} tagastas {1}
+
+#: Editor.java:2213
+#, java-format
+{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+
+#: Editor.java:1874
+#, java-format
+{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_fa.po b/app/src/processing/app/i18n/Resources_fa.po
index 322852d36..cce03b9dc 100644
--- a/app/src/processing/app/i18n/Resources_fa.po
+++ b/app/src/processing/app/i18n/Resources_fa.po
@@ -5,64 +5,64 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Arduino 1.01\n"
+"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: 2012-03-30 16:19+0330\n"
-"Last-Translator: \n"
-"Language-Team: Persian\n"
-"Language: fa\n"
+"PO-Revision-Date: 2013-09-10 10:35+0000\n"
+"Last-Translator: cmaglie Closing the last open sketch will quit Arduino."
msgstr " بستن آخرین طرح باز شده منجر به خارجشدن آردئینو خواهد شد."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
msgstr " اگر شما ذخیره کنید تغییراتتان گم خواهند شد."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
msgstr "یک پروندهٔ نامگذاری شده با \"{0}\" در \"{1}\" موجود است"
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
msgstr "یک پوشه به نام \"{0}\" در حال حاضر موجود است. نمیتوان طرح را باز نمود."
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -71,27 +71,23 @@ msgstr ""
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr ""
-"نسخهٔ جدید از آردئینو موجود است،\n"
-"مایل هستید که صفحهٔ بارگیری آردئینو را مشاهده کنید؟"
+msgstr "نسخهٔ جدید از آردئینو موجود است،\nمایل هستید که صفحهٔ بارگیری آردئینو را مشاهده کنید؟"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr ""
-"یک اشکال بههنگام سعی برای بازکردن پروندههای\n"
-"استفاده شده برای ذخیرهسازی خروجی کنسول رخ داد."
+msgstr "یک اشکال بههنگام سعی برای بازکردن پروندههای\nاستفاده شده برای ذخیرهسازی خروجی کنسول رخ داد."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
msgstr "درباره آردئینو"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
msgstr "افزودن پرونده..."
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
msgstr ""
@@ -100,24 +96,19 @@ msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"خطایی به عنوان اصلاح کدگذاری پرونده رخداد.\n"
-"سعی نکنید این طرح را بر روی نسخهٔ قبلی ذخیرهٔ کنید.\n"
-"از بازکردن را بازکردن مجدد طرح استفاده کنید و دوباره سعی نمایید.\n"
+msgstr "خطایی به عنوان اصلاح کدگذاری پرونده رخداد.\nسعی نکنید این طرح را بر روی نسخهٔ قبلی ذخیرهٔ کنید.\nاز بازکردن را بازکردن مجدد طرح استفاده کنید و دوباره سعی نمایید.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr ""
-"ایراد ناشناختهای هنگام سعی در بارگیری رخ داد\n"
-"کد خاص سکو برای ماشین شما."
+msgstr "ایراد ناشناختهای هنگام سعی در بارگیری رخ داد\nکد خاص سکو برای ماشین شما."
-#: Preferences.java:84
+#: Preferences.java:85
msgid "Arabic"
msgstr ""
-#: Preferences.java:85
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
@@ -137,9 +128,7 @@ msgstr "بایگانیکردن طرح فسخگردید."
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"بایگانیکردن طرح فسخگردید به این دلیل که\n"
-"نمیتوان طرح را به درستی ذخیره نمود."
+msgstr "بایگانیکردن طرح فسخگردید به این دلیل که\nنمیتوان طرح را به درستی ذخیره نمود."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -149,70 +138,71 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"آردئینو نمیتواند اجرا شود به این دلیل که نمیتواند\n"
-"پوشهای برای ذخیرهٔ تنظیمات شما بسازد."
+msgstr "آردئینو نمیتواند اجرا شود به این دلیل که نمیتواند\nپوشهای برای ذخیرهٔ تنظیمات شما بسازد."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
-"آردئینو نمیتواند اجرا شود به این دلیل که نمیتواند\n"
-"پوشهای برای ذخیرهٔ کتاب طرحتان بسازد."
+msgstr "آردئینو نمیتواند اجرا شود به این دلیل که نمیتواند\nپوشهای برای ذخیرهٔ کتاب طرحتان بسازد."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr ""
-"آردئینو نیازمند یک JDK کامل (نه فقط یک JRE(\n"
-"برای اجرا است. لطفاً JDK ۱.۵ یا بعد از آن را نصب کنید.\n"
-"اطلاعات بیشتر را میتوان در مرجع یافت."
+msgstr "آردئینو نیازمند یک JDK کامل (نه فقط یک JRE(\nبرای اجرا است. لطفاً JDK ۱.۵ یا بعد از آن را نصب کنید.\nاطلاعات بیشتر را میتوان در مرجع یافت."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
msgstr "آیا شما مطمئن هستید که میخواهید \"{0}\" را پاک کنید؟"
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
msgstr "آیا شما مطمئن هستید که میخواهید این طرح را پاک کنید؟"
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
#: tools/AutoFormat.java:91
msgid "Auto Format"
msgstr "قالببندی خودکار"
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
msgid "Auto Format Canceled: Too many left curly braces."
msgstr "قالببندی خودکار لغو گشت: حلقهٔ چپ بیش از حدی وجود دارد."
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
msgid "Auto Format Canceled: Too many left parentheses."
msgstr "قالببندی خودکار لغو گشت: پارانتز چپ بیش از حدی وجود دارد."
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
msgid "Auto Format Canceled: Too many right curly braces."
msgstr "قالببندی خودکار لغو گشت: حلقهٔ راست بیش از حدی وجود دارد."
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
msgid "Auto Format Canceled: Too many right parentheses."
msgstr "قالببندی خودکار لغو گشت: پارانتز راست بیش از حدی وجود دارد."
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
msgstr "قالببندی خودکار به پایان رسید."
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
msgstr "اختصاص خودکار پروندههای .ino با آردئینو"
@@ -220,44 +210,48 @@ msgstr "اختصاص خودکار پروندههای .ino با آردئینو
msgid "Autoscroll"
msgstr "حرکتخودکار"
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
msgstr "خطای نامناسب خط: {0}"
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
msgstr "پرونده انتخابشدهٔ نامناسب"
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
msgstr ""
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
msgstr "برد"
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
msgstr "هر دوی NL و CR"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
msgstr "یافتن"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
msgstr "ساختن پوشه مخفی شدهاست یا نمیتوان نوشته شود"
@@ -265,11 +259,15 @@ msgstr "ساختن پوشه مخفی شدهاست یا نمیتوان نو
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
msgid "Burn Bootloader"
msgstr "سوزاندن بوتلودر"
-#: Editor.java:2457
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
msgstr "سوزاندن bootleader به برد I/O (این ممکن است یک دقیقه به طول بیانجامد)..."
@@ -281,12 +279,12 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "فسخکردن"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
msgstr "نمیتوان نامگذاری مجدد کرد"
@@ -294,36 +292,52 @@ msgstr "نمیتوان نامگذاری مجدد کرد"
msgid "Carriage return"
msgstr "بازگشت Carriage"
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr ""
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
msgstr "بررسی برای بهروزرسانیها در ابتدای بالا آمدن"
-#: Preferences.java:87
-msgid "Chinese Simplified"
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "یستن"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
msgstr "توضیحکردن/از توضیح در آوردن"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
msgstr "خطای کامپایلر، لطفاً این کد را به {0} ارائه دهید"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
msgstr "کامپایلکردن طرح..."
@@ -331,11 +345,11 @@ msgstr "کامپایلکردن طرح..."
msgid "Console Error"
msgstr "خطای کنسول"
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "رونوشت"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
msgstr "رونوشت به عنوان اچتیامال"
@@ -343,38 +357,38 @@ msgstr "رونوشت به عنوان اچتیامال"
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
msgstr "رونوشت برای تالار گفتگو"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
msgstr "نمیتوان ''{0}'' را به طرح افزود."
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
msgstr "نمیتوان به یک مکان مناسب کپی نمود."
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
msgstr "نمیتوان پوشهٔ طرح را ایجاد نمود."
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
msgstr "نمیتوان طرح را ایجاد نمود."
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
msgstr "نمیتوانید \"{0}\" را پاک کرد."
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
msgstr "نمیتوان پرونده موجود ''{0}'' را پاک نمود."
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
msgstr "نمیتوان {0} را حذف نمود"
@@ -394,33 +408,27 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
-"نمیتوان URL را گشود\n"
-"{0}"
+msgstr "نمیتوان URL را گشود\n{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"نمیتوان پوشه را گشود\n"
-"{0}"
+msgstr "نمیتوان پوشه را گشود\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
-"نمیتواند طرح را به درستی مجدداً ذخیره نمود. شما میبایست در مشکل باشید در نقطه،\n"
-"و شاید زمان آن باشد که کدتان را در ویرایشگر متنی دیگری رونوشت و پچسپانید. "
+msgstr "نمیتواند طرح را به درستی مجدداً ذخیره نمود. شما میبایست در مشکل باشید در نقطه،\nو شاید زمان آن باشد که کدتان را در ویرایشگر متنی دیگری رونوشت و پچسپانید. "
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
msgstr "نمیتواند طرح را مجدداً ذخیره نمود"
@@ -428,46 +436,42 @@ msgstr "نمیتواند طرح را مجدداً ذخیره نمود"
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr ""
-"نمیتوان تنظیمات رنگ را خواند.\n"
-"شما میبایست که Processing را مجدداً نصب نمایید."
+msgstr "نمیتوان تنظیمات رنگ را خواند.\nشما میبایست که Processing را مجدداً نصب نمایید."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
-"نمیتوان تنظیمات پیشفرض را خواند.\n"
-"شما میبایست که آردئینو را مجدداً نصب کنید."
+msgstr "نمیتوان تنظیمات پیشفرض را خواند.\nشما میبایست که آردئینو را مجدداً نصب کنید."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
msgstr "نمیتوان ترجیحات را از {0} خواند"
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
msgstr "نمیتوان نسخهٔ قدیمی {0} را حذف نمود"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
msgstr "نمیتوان \"{0}\" را به \"{1}\" تغییر نام داد."
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
msgstr "نمیتوان طرح را نامگذاری مجدد نمود. (۰)"
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
msgstr "نمیتوان طرح را تغییر نام داد. (۱)"
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
msgstr "نمیتوان طرح را تغییر نام داد. (۲)"
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
msgstr "نمیتوان {0} را جایگزین نمود"
@@ -476,15 +480,15 @@ msgstr "نمیتوان {0} را جایگزین نمود"
msgid "Couldn't archive sketch"
msgstr "نمیتوان طرح را بایگانی نمود"
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
msgstr "نمیتوان اندازهٔ برنامه را تعیین نمود: {0}"
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
msgstr "نمیتوانید انجامش دهید"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -495,7 +499,7 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "بریدن"
@@ -503,19 +507,19 @@ msgstr "بریدن"
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "کاهش تورفتگی"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
msgstr "حذف"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
@@ -525,73 +529,81 @@ msgstr "دستگاه پاسخگو نیست، درگاه سریال انتخا
msgid "Discard all changes and reload sketch?"
msgstr "دورانداختن همهٔ تغییرات و بارگیری مجدد طرح؟"
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
msgstr "ذخیره نکن"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
msgstr "ذخیرهسازی انجامشد."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
msgstr "سوزاندن بوتلودر انجام گردید."
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
msgstr "انجام کامپایل کردن."
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
msgstr "چاپکردن به انجام رسید."
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
msgstr "بارگذاری انجامشد."
-#: Preferences.java:90
+#: Preferences.java:91
msgid "Dutch"
msgstr ""
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
msgid "Edit"
msgstr "ویرایش"
-#: Preferences.java:354
+#: Preferences.java:370
msgid "Editor font size: "
msgstr "اندازهٔ قلم ویرایشگر"
-#: Preferences.java:337
+#: Preferences.java:353
msgid "Editor language: "
msgstr ""
-#: Preferences.java:91
+#: Preferences.java:92
msgid "English"
msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
msgstr "محیط"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "خطا"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
msgstr "خطای افزودن پرونده"
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
msgstr "خطای کامپایل"
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
msgstr "خطای گرفتن پوشه اطلاعات آردئینو"
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
msgstr "خطای درونی. {0}()"
@@ -607,34 +619,32 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
msgstr "خطا به هنگام بازنمودن ''{0}''."
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr "خطای خواندن ترجیحات"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"خطای به هنگام خواندن پروندهٔ ترجیحات. لطفاً {0} را حذف (یا انتفال)\n"
-"و آردئینو را بازگشایی مجدد کنید."
+msgstr "خطای به هنگام خواندن پروندهٔ ترجیحات. لطفاً {0} را حذف (یا انتفال)\nو آردئینو را بازگشایی مجدد کنید."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
msgstr "خطای به هنگام سوزاندن بوتلودر."
@@ -647,7 +657,7 @@ msgstr ""
msgid "Error while loading code {0}"
msgstr "خطا به هنگام بارگیری کد {0}"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
msgstr "خطا هنگام چاپکردن."
@@ -656,23 +666,27 @@ msgstr "خطا هنگام چاپکردن."
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
msgstr "نمونهها"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
msgstr "خارجسازی فسخگردید، تغییرات ابتدا میبایست ذخیره گردند."
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
msgstr "پرونده"
@@ -684,19 +698,19 @@ msgstr ""
msgid "Find"
msgstr "یافتن"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
msgstr "یافتن بعدی"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
msgstr "یافتن قبلی"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
msgstr "یافتن در مرجع"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
msgstr "یافتن..."
@@ -704,30 +718,34 @@ msgstr "یافتن..."
msgid "Find:"
msgstr "یافتن:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
msgstr "خطازدایی کدگذاری و بارگیری مجدد"
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
msgstr ""
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
msgstr "سوالهای متداول پرسیدهشده"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
msgstr ""
@@ -735,31 +753,43 @@ msgstr ""
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
msgstr ""
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
msgstr "شروع کار"
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
msgstr ""
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
@@ -767,27 +797,25 @@ msgstr "Guide_Windows.html"
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "کمک"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"چطور است ابتدا طرح را بیش از تلاش برای نامگذاری\n"
-"مجدد آن ذخیره کنیم؟"
+msgstr "چطور است ابتدا طرح را بیش از تلاش برای نامگذاری\nمجدد آن ذخیره کنیم؟"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
msgstr "چه بورخسی هستید شما"
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr ""
@@ -795,15 +823,15 @@ msgstr ""
msgid "Ignore Case"
msgstr "نادیدهگرفتن بزرگی/کوچکی"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
msgstr "در نظر نگرفتن نام نامناسب کتابخانه"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "نادیده گرفتن طرح با نام بد"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
msgstr "واردسازی کتابخانه..."
@@ -818,11 +846,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
msgstr "افزایش تورفتگی"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -831,27 +859,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
+#: Preferences.java:102
msgid "Italian"
msgstr ""
-#: Preferences.java:101
+#: Preferences.java:103
msgid "Japanese"
msgstr ""
-#: Preferences.java:102
+#: Preferences.java:104
msgid "Korean"
msgstr ""
-#: Preferences.java:103
+#: Preferences.java:105
msgid "Latvian"
msgstr ""
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
msgstr ""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -859,45 +887,39 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "پیغام"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
msgstr "فقدان */ از انتهای یک /* توضیح */"
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
msgstr "ترجیحات بیشتر میتوانند مستقیماً درون یک پروندهٔ ویرایش گردند"
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
msgstr "انتقال"
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
msgstr "نام برای پروندهٔ جدید:"
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "جدید"
@@ -917,19 +939,19 @@ msgstr "خط جدید"
msgid "Next Tab"
msgstr "تب بعد"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "خیر"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
msgstr "بردی انتخاب شدهاست؛ لطفاً یک برد از منوی ابزارها > برد انتخاب کنید."
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr "تغییری برای قالببندی خودکار نیاز نیست."
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
msgstr "پروندهای به طرح افزوده نشد."
@@ -941,11 +963,11 @@ msgstr "پرتابکنندهای موجود نیست"
msgid "No line ending"
msgstr "بدون پایان خط"
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
msgstr "نه جداً، وقت مقداری هوای تازهاست."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
msgstr "مرجعی برای \"{0}\" موجود نیست"
@@ -954,18 +976,19 @@ msgstr "مرجعی برای \"{0}\" موجود نیست"
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
msgstr "خطای غیر وخیمی هنگام تنظیم ظاهر."
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
msgstr "نفی"
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
-
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
@@ -976,12 +999,12 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
msgstr "اوکی"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
msgstr "یک پرونده به طرح افزوده شد."
@@ -989,11 +1012,11 @@ msgstr "یک پرونده به طرح افزوده شد."
msgid "Open"
msgstr "بازکردن"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "بازکردن URL"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
msgstr "یک طرح آردئینو را باز کن..."
@@ -1001,11 +1024,11 @@ msgstr "یک طرح آردئینو را باز کن..."
msgid "Open in Another Window"
msgstr "بازکردن در پنجرهای دیگر"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "باز کردن...."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
msgstr "تنظیم صفحه"
@@ -1013,23 +1036,23 @@ msgstr "تنظیم صفحه"
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
msgstr "الساق"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
msgstr ""
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
msgstr "لطفاً کتابخانه SPI را از منوی طرح > درونسازی کتابخانه درونسازی کنید."
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
msgstr "لطفاً JDK ۱.۵ یا بعدتر از آن را نصب کنید"
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1037,11 +1060,19 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
msgstr "ترجیحات"
@@ -1053,27 +1084,27 @@ msgstr "قبلی"
msgid "Previous Tab"
msgstr "تب قبل"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
msgstr "چاپ"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
msgstr "چاپ ابطال گشت."
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
msgstr "چاپکردن..."
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
msgstr "اشکال در بازکردن پوشه"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
msgstr "اشکال بازکردن URL"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
msgstr "اشکال تنظیم سکو"
@@ -1085,50 +1116,48 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
msgstr "اشکال گرفتن پوشهٔ دادهها"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
msgstr "اشکال بههنگام انتقال {0} به پوشهٔ ساخت"
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr "اشکال در بارگذاری به برد. http://www.arduino.cc/en/Guide/Troubleshooting#upload را برای پیشنهادات ببینید."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
msgstr "مشکل با نامگذاری مجدد"
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
-"Processing فقط میتواند طرحهای خودش را باز کند\n"
-"و سایر پروندههایی که با .ino یا .pde پایان میپذیرند"
+msgstr "Processing فقط میتواند طرحهای خودش را باز کند\nو سایر پروندههایی که با .ino یا .pde پایان میپذیرند"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
msgstr "پروگرامر"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "خروج"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
msgstr "انجام دوباره"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
msgstr "مرجع"
@@ -1136,7 +1165,7 @@ msgstr "مرجع"
msgid "Rename"
msgstr "تغییرنام"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "جایگزینی"
@@ -1148,7 +1177,7 @@ msgstr "جایگزینی و یافتن"
msgid "Replace All"
msgstr "جایگزینی همه"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
msgstr "جایگزینی نسخهٔ موجود از {0}؟"
@@ -1157,61 +1186,61 @@ msgstr "جایگزینی نسخهٔ موجود از {0}؟"
msgid "Replace with:"
msgstr "جایگزین کردن:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
msgstr ""
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "ذخیره"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
msgstr "ذخیره به عنوان...."
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
msgstr "ذخیرهسازی فسخ گشت."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
msgstr "ذخیرهٔ تغییرات پیش از خارجسازی؟"
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
msgstr "ذخیرهٔ تغییرات در \"{0}\"?"
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
msgstr "ذخیرهٔ پوشه طرح به عنوان..."
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
msgstr "ذخیرهسازی...."
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
msgstr "انتخاب (یا درستکردن جدید) پوشه برای طرحها...."
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
msgstr "انتخاب همه"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
msgstr "انتخاب یک تصویر یا سایر پروندههای دادهها برای رونوشت به طرحتان"
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
msgstr "موقعیت جدید کتاب را انتخاب کنید"
@@ -1223,45 +1252,43 @@ msgstr ""
msgid "Send"
msgstr "ارسال"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
msgstr "نمایشگر سریال"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
msgstr "درگاه سریال ''{0}'' درحال حاضر در حال استفادهاست. سعیکنید هر برنامهای که از آن استفاده میکنید خارج کنید."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
msgstr "درگاه سریال ''{0}'' یافت نشد. آیا شما درست آن را از منوی ابزارها > درگاه سریال انتخاب نمودهاید؟"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"درگاه سریال {0} یافت نشد.\n"
-"انجام مجدد باگذاری با درگاه سریالی دیگر؟"
+msgstr "درگاه سریال {0} یافت نشد.\nانجام مجدد باگذاری با درگاه سریالی دیگر؟"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
msgstr "مشکلات تنظیمات"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
msgstr "نمایش پوشهٔ طرح"
@@ -1269,157 +1296,156 @@ msgstr "نمایش پوشهٔ طرح"
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
msgstr "نمایش خروجی پرگو به هنگام:"
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
msgstr "طرح"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
msgstr "طرح ناپدید گشت"
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
msgstr "طرح موجود نیست"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
msgstr "طرح فقط خواندنی است"
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
msgstr "طرح بینام است"
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
msgstr "طرح فقط خواندی است"
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
msgstr "اندازهٔ طرح بسیار بزرگ است؛ http://www.arduino.cc/en/Guide/Troubleshooting#size را برای راهنماییهایی در رابطه کاهش آن ببینید."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
msgstr "کتاب طرح"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
msgstr "پوشهٔ کتاب طرحها ناپدید شد"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
msgstr "موقعیت کتاب طرح:"
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"بعضی از پروندهها به عنوان «فقط خواندنی» برچسپگذاری\n"
-"شدهاند، بنابراین شما نیازمند آن هستید که طرح دوباره در\n"
-"محل دیگری ذخیره کنید و مجدداً تلاش نمایید."
+msgstr "بعضی از پروندهها به عنوان «فقط خواندنی» برچسپگذاری\nشدهاند، بنابراین شما نیازمند آن هستید که طرح دوباره در\nمحل دیگری ذخیره کنید و مجدداً تلاش نمایید."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
-"بعضی از پروندهها \"read-only\" برچسپگذاری شدهاند، بنابراین شما\n"
-"مجبور خواهید بود که این طرح را در مکانی دیگر مجدداً ذخیرهکنید."
+msgstr "بعضی از پروندهها \"read-only\" برچسپگذاری شدهاند، بنابراین شما\nمجبور خواهید بود که این طرح را در مکانی دیگر مجدداً ذخیرهکنید."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
msgstr "شرمنده، یک طرح (یا پرونده) نامدهی شده با \"{0}\" در حال حاضر موجود است."
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
msgstr ""
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
msgstr "طلوع"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
msgstr "کلیدواژهٔ 'BYTE' دیگر پشتیبانی نمیگردد."
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
msgstr "کلاس Client به EthernetClient تغییر نام پیدا کردهاست."
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
msgstr "کلاس Server به EthernetServer تغییر نام پیدا کردهاست."
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
msgstr "کلاس Udp به EthernetUdp تغییر نام پیدا کردهاست."
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
msgstr "پیغام خطا در ذیل آمده، هرچند آردئینو باید به درستی کار کند."
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
-"پرونده \"{0}\" میبایست داخل یک\n"
-"پوشهٔ طرح به نام \"{1}\" ذخیره گردند.\n"
-"ساختن این پوشه، انتقال پرونده و ادامه؟"
+msgstr "پرونده \"{0}\" میبایست داخل یک\nپوشهٔ طرح به نام \"{1}\" ذخیره گردند.\nساختن این پوشه، انتقال پرونده و ادامه؟"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
-"کتابخانهٔ \"{0}\" نمیتوان استفاده گردد.\n"
-"نام کتابخانه فقط میبایست شامل حروف ساده و عدد باشد.\n"
-"(فقط ASCII و بدون فاصله و نمیتواند با یک عدد شروع شود.)"
+msgstr "کتابخانهٔ \"{0}\" نمیتوان استفاده گردد.\nنام کتابخانه فقط میبایست شامل حروف ساده و عدد باشد.\n(فقط ASCII و بدون فاصله و نمیتواند با یک عدد شروع شود.)"
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr ""
-"پروندهٔ اصلی نمیتواند دارای یک افزونه باشد.\n"
-"(شاید زمان آن باشد که یک محیط «واقعی» برنامهنویسیرا مطالعه کنید)"
+msgstr "پروندهٔ اصلی نمیتواند دارای یک افزونه باشد.\n(شاید زمان آن باشد که یک محیط «واقعی» برنامهنویسیرا مطالعه کنید)"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
msgstr "نام نمیتواند با یک نقطه آغار گردد."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"طرح انتخاب شده دیگر موجود نیست.\n"
-"شما میبایست آردئینو را برای بهروزرسانی منوی\n"
-"کتاب طرح بازگشایی مجدد کنید."
+msgstr "طرح انتخاب شده دیگر موجود نیست.\nشما میبایست آردئینو را برای بهروزرسانی منوی\nکتاب طرح بازگشایی مجدد کنید."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1427,69 +1453,51 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-"طرح \"{0}\" نمیتواند استفاده گردد.\n"
-"نام طرحها میبایست فقط شامل حروف ساده و عددها باشند\n"
-"(فقط ASCII بدون فاصله و نمیتواند با عدد شروع شود).\n"
-"برای خلاصشدن از این پیغام، طرح را از {1} حذف نمایید."
+msgstr "طرح \"{0}\" نمیتواند استفاده گردد.\nنام طرحها میبایست فقط شامل حروف ساده و عددها باشند\n(فقط ASCII بدون فاصله و نمیتواند با عدد شروع شود).\nبرای خلاصشدن از این پیغام، طرح را از {1} حذف نمایید."
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
-"پوشهٔ طرح ناپدید شدهاست.\n"
-" تلاش خواهید که آن را در محل مشابه ذخیره نمود\n"
-"ولی بهعلاوهٔ آن کد مفقود خواهد شد."
+msgstr "پوشهٔ طرح ناپدید شدهاست.\n تلاش خواهید که آن را در محل مشابه ذخیره نمود\nولی بهعلاوهٔ آن کد مفقود خواهد شد."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
-"نام طرح میبایست که تغییریابد. نامهای طرح فقط میبایست شامل نویسههای\n"
-"ASCII و اعداد باشند (ولی با اعداد آغاز نگردند).\n"
-"اینها میبایست کمتر از ۶۴ نویسه طول داشته باشند."
+msgstr "نام طرح میبایست که تغییریابد. نامهای طرح فقط میبایست شامل نویسههای\nASCII و اعداد باشند (ولی با اعداد آغاز نگردند).\nاینها میبایست کمتر از ۶۴ نویسه طول داشته باشند."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr ""
-"پوشهٔ کتاب طرح دیگر موجود نیست.\n"
-"آردئنو محل کتاب طرح پیشفرض را انتخاب خواهد کرد\n"
-"و پوشهٔ کتاب طرحی درست خواهد کرد اگر مورد نیاز\n"
-"باشد. آردئینو صحبت کردن در رابطه با خود را به عنوان\n"
-"سوم شخص را پایان میدهد."
+msgstr "پوشهٔ کتاب طرح دیگر موجود نیست.\nآردئنو محل کتاب طرح پیشفرض را انتخاب خواهد کرد\nو پوشهٔ کتاب طرحی درست خواهد کرد اگر مورد نیاز\nباشد. آردئینو صحبت کردن در رابطه با خود را به عنوان\nسوم شخص را پایان میدهد."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
-"این پرونده در حال حاضر به موضعیتی که\n"
-"شما میخواهید بیافزایید کپیشدهاست.\n"
-"من کاری نمیکنم."
+msgstr "این پرونده در حال حاضر به موضعیتی که\nشما میخواهید بیافزایید کپیشدهاست.\nمن کاری نمیکنم."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
msgstr "وقت برای استراحت"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
msgstr "ابزارها"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
msgstr "خطایابی"
@@ -1515,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1526,12 +1534,12 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
msgstr "خطای گرفته نشده از نوع: {0}"
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
msgstr "بازگردانی"
@@ -1540,27 +1548,25 @@ msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"سکوی نامشخص، پرتابکنندهای موجود نیست.\n"
-"برای فعالسازی بازکردن URLها یا پوشهها، یک خط\"launcher=/path/to/app\" به preferences.txt بیافزایید."
+msgstr "سکوی نامشخص، پرتابکنندهای موجود نیست.\nبرای فعالسازی بازکردن URLها یا پوشهها، یک خط\"launcher=/path/to/app\" به preferences.txt بیافزایید."
#: UpdateCheck.java:111
msgid "Update"
msgstr "بهروزرسانی"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
msgstr "بهروزرسانی پرونده طرح به یک پسوند جدید به هنگام ذخیرهسازی (.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "بارگذاری"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
msgstr "بارگذاری به کمک پروگرامر"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
msgstr "بارگذاری ابطال گشت."
@@ -1568,19 +1574,19 @@ msgstr "بارگذاری ابطال گشت."
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
msgstr "بارگذاری به برد I/O..."
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
msgstr "بارگذاری..."
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "استفاده از گزینش برای یافتن"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
msgstr "استفاده از ویرایشگر خارجی"
@@ -1588,27 +1594,31 @@ msgstr "استفاده از ویرایشگر خارجی"
msgid "Verify"
msgstr "بازبینی"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
msgstr "بازبینی / کامپایل"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
msgstr "بازدید Arduino.cc"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
msgstr "اخطار"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() به Wire.read() تغییرنام پیداکردهاست."
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
msgstr "Wire.send() به Wire.write() تغییر نام پیداکردهاست."
@@ -1622,41 +1632,37 @@ msgid ""
"> Board menu?"
msgstr "میکروکنترلر اشتباهی یافت شد. آیا شما برد مناسبی از منوی ابزارها > برد انتخاب کردهاید؟"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "بله"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
msgstr "شما نمیتوانید فریبم دهید"
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
msgstr "شما نمیتوانید یک پروندهٔ .cpp با نام مشابه طرح داشته باشید."
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"شما نمیتوانید طرح را به \"{0}\" تغییر نام دهید\n"
-"به این دلیل که طرح در حال حاضر دارای یک پروندهٔ .cpp با نام مشابه است."
+msgstr "شما نمیتوانید طرح را به \"{0}\" تغییر نام دهید\nبه این دلیل که طرح در حال حاضر دارای یک پروندهٔ .cpp با نام مشابه است."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr "شما نمیتوانید طرح را بهعنوان \"{0}\" ذخیرهسازید به این دلیل که طرح در حال حاضردارای یک پروندهٔ .cpp با نام مشابه است."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"شما نمیتوانید طرح را در درون پوشهٔ خودش ذخیرهسازید\n"
-"این شاید برای همیشه باشد."
+msgstr "شما نمیتوانید طرح را در درون پوشهٔ خودش ذخیرهسازید\nاین شاید برای همیشه باشد."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
msgstr "شما کتاب طرحتان را فراموش کردهاید"
@@ -1665,23 +1671,21 @@ msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
-"شما به محدودهٔ نامگذاری خودکار برای طرحهای برای امروز\n"
-"رسیدهاید. چطور است به جای آن یک پیادهروی داشته باشید؟"
+msgstr "شما به محدودهٔ نامگذاری خودکار برای طرحهای برای امروز\nرسیدهاید. چطور است به جای آن یک پیادهروی داشته باشید؟"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
msgstr "\".{0}\" پسوند نامعتبری است."
@@ -1695,89 +1699,62 @@ msgid ""
"todelete the bad characters to get rid of this warning."
msgstr "\"{0}\" شامل نویسههای ناشناختهاست. اگر این کد با نسخههای قدیمیتر Processing درستشدهاست، شما احتمالاً نیازمند هستید که از Tools -> Fix Enconding & Reload برای بهروزرسانی برای استفاده از کدگذاری UTF-8 استفاده کنید. وگرنه، شما ممکناست نیازمند حذف نویسههای نامناسب و برای رهایی از این اخطار شوید."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
-"\n"
-msgstr ""
-"\n"
-"از آردئینو ۰۰۱۹، کتابخانهٔ Ethernet به کتابخانهٔ SPI وابسته شدهاست.\n"
-"شما ظاهراً از آن یا کتابخانهٔ دیگری که به کتابخانهٔ SPI وابستهاست استفاده میکنید.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
+msgstr "\nاز آردئینو ۰۰۱۹، کتابخانهٔ Ethernet به کتابخانهٔ SPI وابسته شدهاست.\nشما ظاهراً از آن یا کتابخانهٔ دیگری که به کتابخانهٔ SPI وابستهاست استفاده میکنید.\n\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr ""
-"\n"
-"از آردئینو ۱.۰، کلیدواژه 'BYTE' دیگر پشتیبانی نمیگردد.\n"
-"لطفاً از Serial.write() به جای آن استفاده نمایید.\n"
-"\n"
+msgstr "\nاز آردئینو ۱.۰، کلیدواژه 'BYTE' دیگر پشتیبانی نمیگردد.\nلطفاً از Serial.write() به جای آن استفاده نمایید.\n\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"از آردئینو ۱.۰، کلاس Client در کتابخانهٔ Ethernet به EthernetClient تغییر نام پیداکردهاست.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
+msgstr "\nاز آردئینو ۱.۰، کلاس Client در کتابخانهٔ Ethernet به EthernetClient تغییر نام پیداکردهاست.\n\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"از آردئینو ۱.۰، کلاس سرور در کتابخانهٔ Ethernet به EthernetServer تغییرنام پیدا کردهاست.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
+msgstr "\nاز آردئینو ۱.۰، کلاس سرور در کتابخانهٔ Ethernet به EthernetServer تغییرنام پیدا کردهاست.\n\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"از آردئینو ۱.۰، تابع Wire.receive() به Wire.read() برای سازگاری بیشتر با سایر کتابخانهها تغییر نام پیداکردهاست.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
+msgstr "\nاز آردئینو ۱.۰، تابع Wire.receive() به Wire.read() برای سازگاری بیشتر با سایر کتابخانهها تغییر نام پیداکردهاست.\n\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"از آردئینو ۱.۰، تابع Wire.send() به Wire.write() برای سازگاری با سایر کتابخانهها تغییر نام پیداکردهاست.\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
+msgstr "\nاز آردئینو ۱.۰، تابع Wire.send() به Wire.write() برای سازگاری با سایر کتابخانهها تغییر نام پیداکردهاست.\n\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
msgstr "کامپایلنمودن"
@@ -1785,7 +1762,7 @@ msgstr "کامپایلنمودن"
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
msgstr "createNewFile() مقدار فالس برگرداند"
@@ -1793,11 +1770,11 @@ msgstr "createNewFile() مقدار فالس برگرداند"
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
msgstr "محیط"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@@ -1813,72 +1790,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "درنظر نگرفتن اندازهٔ قلم نامناسب {0}"
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name تهی است"
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
msgstr "بافر بایت readBytesUntil() برای بیش از {0} بایت و شامل نویسهٔ {1} بسیار کوچک است"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
msgstr "removeCode: خطای درونی.. نمیتوان کد را یافت"
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu تهی است"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr "درگاه سریال انتخاب شده {0} موجود نیست یا برد شما متصل نشدهاست"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
msgstr "بارگذاری"
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
msgstr "{0} پرونده به طرح افزوده شد."
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
msgstr "{0}،{1} را بازگرداند"
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
msgstr "{0} | آردئینو {1}"
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_fa.properties b/app/src/processing/app/i18n/Resources_fa.properties
index 71640622d..965d24bf5 100644
--- a/app/src/processing/app/i18n/Resources_fa.properties
+++ b/app/src/processing/app/i18n/Resources_fa.properties
@@ -3,38 +3,38 @@
# This file is distributed under the same license as the Arduino IDE package.
# Ebrahim Byagowi Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0628\u0633\u062a\u0646 \u0622\u062e\u0631\u06cc\u0646 \u0637\u0631\u062d \u0628\u0627\u0632 \u0634\u062f\u0647 \u0645\u0646\u062c\u0631 \u0628\u0647 \u062e\u0627\u0631\u062c\u200c\u0634\u062f\u0646 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u062e\u0648\u0627\u0647\u062f \u0634\u062f.
-#: Editor.java:2006
+#: Editor.java:2053
\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= \u0627\u06af\u0631 \u0634\u0645\u0627 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a\u062a\u0627\u0646 \u06af\u0645 \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f.
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647 \u0628\u0627 "{0}" \u062f\u0631 "{1}" \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u06cc\u06a9 \u067e\u0648\u0634\u0647 \u0628\u0647 \u0646\u0627\u0645 "{0}" \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a. \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0627\u0632 \u0646\u0645\u0648\u062f.
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
@@ -44,25 +44,25 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
#: EditorConsole.java:153
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u06cc\u06a9 \u0627\u0634\u06a9\u0627\u0644 \u0628\u0647\u200c\u0647\u0646\u06af\u0627\u0645 \u0633\u0639\u06cc \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc\n\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc \u062e\u0631\u0648\u062c\u06cc \u06a9\u0646\u0633\u0648\u0644 \u0631\u062e \u062f\u0627\u062f.
-#: Editor.java:1102
+#: Editor.java:1116
About\ Arduino=\u062f\u0631\u0628\u0627\u0631\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648
-#: Editor.java:643
+#: Editor.java:650
Add\ File...=\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647...
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
!Add\ Library...=
#: tools/FixEncoding.java:77
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u062e\u0637\u0627\u06cc\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0627\u0635\u0644\u0627\u062d \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc \u067e\u0631\u0648\u0646\u062f\u0647 \u0631\u062e\u200c\u062f\u0627\u062f.\n\u0633\u0639\u06cc \u0646\u06a9\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0631 \u0631\u0648\u06cc \u0646\u0633\u062e\u0647\u0654 \u0642\u0628\u0644\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u06a9\u0646\u06cc\u062f.\n\u0627\u0632 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0631\u0627 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0645\u062c\u062f\u062f \u0637\u0631\u062d \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f \u0648 \u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u0646\u0645\u0627\u06cc\u06cc\u062f.\n
-#: Base.java:221
+#: Base.java:228
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0627\u06cc\u0631\u0627\u062f \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647\u200c\u0627\u06cc \u0647\u0646\u06af\u0627\u0645 \u0633\u0639\u06cc \u062f\u0631 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0631\u062e \u062f\u0627\u062f\n\u06a9\u062f \u062e\u0627\u0635 \u0633\u06a9\u0648 \u0628\u0631\u0627\u06cc \u0645\u0627\u0634\u06cc\u0646 \u0634\u0645\u0627.
-#: Preferences.java:84
+#: Preferences.java:85
!Arabic=
-#: Preferences.java:85
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
@@ -83,61 +83,67 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
+#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u062c\u0631\u0627 \u0634\u0648\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f\n\u067e\u0648\u0634\u0647\u200c\u0627\u06cc \u0628\u0631\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0634\u0645\u0627 \u0628\u0633\u0627\u0632\u062f.
-#: Base.java:1603
+#: Base.java:1889
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u062c\u0631\u0627 \u0634\u0648\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f\n\u067e\u0648\u0634\u0647\u200c\u0627\u06cc \u0628\u0631\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u200c\u062a\u0627\u0646 \u0628\u0633\u0627\u0632\u062f.
-#: Base.java:233
+#: Base.java:240
Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u06cc\u06a9 JDK \u06a9\u0627\u0645\u0644 (\u0646\u0647 \u0641\u0642\u0637 \u06cc\u06a9 JRE(\n\u0628\u0631\u0627\u06cc \u0627\u062c\u0631\u0627 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627\u064b JDK \u06f1.\u06f5 \u06cc\u0627 \u0628\u0639\u062f \u0627\u0632 \u0622\u0646 \u0631\u0627 \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f.\n\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0631\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062f\u0631 \u0645\u0631\u062c\u0639 \u06cc\u0627\u0641\u062a.
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f "{0}" \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0646\u06cc\u062f\u061f
-#: Sketch.java:591
+#: Sketch.java:587
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0646\u06cc\u062f\u061f
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
#: tools/AutoFormat.java:91
Auto\ Format=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u06af\u0634\u062a\: \u062d\u0644\u0642\u0647\u0654 \u0686\u067e \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u06af\u0634\u062a\: \u067e\u0627\u0631\u0627\u0646\u062a\u0632 \u0686\u067e \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u06af\u0634\u062a\: \u062d\u0644\u0642\u0647\u0654 \u0631\u0627\u0633\u062a \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u06af\u0634\u062a\: \u067e\u0627\u0631\u0627\u0646\u062a\u0632 \u0631\u0627\u0633\u062a \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
Auto\ Format\ finished.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0631\u0633\u06cc\u062f.
-#: Preferences.java:423
+#: Preferences.java:439
Automatically\ associate\ .ino\ files\ with\ Arduino=\u0627\u062e\u062a\u0635\u0627\u0635 \u062e\u0648\u062f\u06a9\u0627\u0631 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc .ino \u0628\u0627 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648
#: SerialMonitor.java:110
Autoscroll=\u062d\u0631\u06a9\u062a\u200c\u062e\u0648\u062f\u06a9\u0627\u0631
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
Bad\ error\ line\:\ {0}=\u062e\u0637\u0627\u06cc \u0646\u0627\u0645\u0646\u0627\u0633\u0628 \u062e\u0637\: {0}
-#: Editor.java:2089
+#: Editor.java:2136
Bad\ file\ selected=\u067e\u0631\u0648\u0646\u062f\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647\u0654 \u0646\u0627\u0645\u0646\u0627\u0633\u0628
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
Board=\u0628\u0631\u062f
#: ../../../processing/app/debug/TargetBoard.java:42
@@ -147,22 +153,28 @@ Board=\u0628\u0631\u062f
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
Both\ NL\ &\ CR=\u0647\u0631 \u062f\u0648\u06cc NL \u0648 CR
-#: Preferences.java:80
+#: Preferences.java:81
Browse=\u06cc\u0627\u0641\u062a\u0646
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0633\u0627\u062e\u062a\u0646 \u067e\u0648\u0634\u0647 \u0645\u062e\u0641\u06cc \u0634\u062f\u0647\u200c\u0627\u0633\u062a \u06cc\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0648\u0634\u062a\u0647 \u0634\u0648\u062f
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
Burn\ Bootloader=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631
-#: Editor.java:2457
+#: Editor.java:2504
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 bootleader \u0628\u0647 \u0628\u0631\u062f I/O (\u0627\u06cc\u0646 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u06cc\u06a9 \u062f\u0642\u06cc\u0642\u0647 \u0628\u0647 \u0637\u0648\u0644 \u0628\u06cc\u0627\u0646\u062c\u0627\u0645\u062f)...
#: ../../../processing/app/Base.java:368
@@ -171,78 +183,90 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0633\u064
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=\u0641\u0633\u062e\u200c\u06a9\u0631\u062f\u0646
-#: Sketch.java:459
+#: Sketch.java:455
Cannot\ Rename=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0645\u062c\u062f\u062f \u06a9\u0631\u062f
#: SerialMonitor.java:112
Carriage\ return=\u0628\u0627\u0632\u06af\u0634\u062a Carriage
-#: Preferences.java:86
+#: Preferences.java:87
!Catalan=
-#: Preferences.java:403
+#: Preferences.java:419
Check\ for\ updates\ on\ startup=\u0628\u0631\u0631\u0633\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc\u200c\u0647\u0627 \u062f\u0631 \u0627\u0628\u062a\u062f\u0627\u06cc \u0628\u0627\u0644\u0627 \u0622\u0645\u062f\u0646
-#: Preferences.java:87
-!Chinese\ Simplified=
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
!Chinese\ Traditional=
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
Close=\u06cc\u0633\u062a\u0646
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
Comment/Uncomment=\u062a\u0648\u0636\u06cc\u062d\u200c\u06a9\u0631\u062f\u0646/\u0627\u0632 \u062a\u0648\u0636\u06cc\u062d \u062f\u0631 \u0622\u0648\u0631\u062f\u0646
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u062e\u0637\u0627\u06cc \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u0631\u060c \u0644\u0637\u0641\u0627\u064b \u0627\u06cc\u0646 \u06a9\u062f \u0631\u0627 \u0628\u0647 {0} \u0627\u0631\u0627\u0626\u0647 \u062f\u0647\u06cc\u062f
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
Compiling\ sketch...=\u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u200c\u06a9\u0631\u062f\u0646 \u0637\u0631\u062d...
#: EditorConsole.java:152
Console\ Error=\u062e\u0637\u0627\u06cc \u06a9\u0646\u0633\u0648\u0644
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
Copy=\u0631\u0648\u0646\u0648\u0634\u062a
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
Copy\ as\ HTML=\u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0627\u0686\u200c\u062a\u06cc\u200c\u0627\u0645\u200c\u0627\u0644
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
Copy\ for\ Forum=\u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0631\u0627\u06cc \u062a\u0627\u0644\u0627\u0631 \u06af\u0641\u062a\u06af\u0648
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 ''{0}'' \u0631\u0627 \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f.
-#: Editor.java:2141
+#: Editor.java:2188
Could\ not\ copy\ to\ a\ proper\ location.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0628\u0647 \u06cc\u06a9 \u0645\u06a9\u0627\u0646 \u0645\u0646\u0627\u0633\u0628 \u06a9\u067e\u06cc \u0646\u0645\u0648\u062f.
-#: Editor.java:2132
+#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u0646\u0645\u0648\u062f.
-#: Editor.java:2159
+#: Editor.java:2206
Could\ not\ create\ the\ sketch.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u0646\u0645\u0648\u062f.
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
Could\ not\ delete\ "{0}".=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f "{0}" \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0631\u062f.
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u0645\u0648\u062c\u0648\u062f ''{0}'' \u0631\u0627 \u067e\u0627\u06a9 \u0646\u0645\u0648\u062f.
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
Could\ not\ delete\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 {0} \u0631\u0627 \u062d\u0630\u0641 \u0646\u0645\u0648\u062f
@@ -258,138 +282,144 @@ Could\ not\ delete\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 {0} \u0
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
Could\ not\ open\ the\ URL\n{0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 URL \u0631\u0627 \u06af\u0634\u0648\u062f\n{0}
-#: Base.java:1672
+#: Base.java:1958
#, java-format
Could\ not\ open\ the\ folder\n{0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u067e\u0648\u0634\u0647 \u0631\u0627 \u06af\u0634\u0648\u062f\n{0}
-#: Sketch.java:1811
+#: Sketch.java:1769
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0637\u0631\u062d \u0631\u0627 \u0628\u0647 \u062f\u0631\u0633\u062a\u06cc \u0645\u062c\u062f\u062f\u0627\u064b \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f. \u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u062f\u0631 \u0645\u0634\u06a9\u0644 \u0628\u0627\u0634\u06cc\u062f \u062f\u0631 \u0646\u0642\u0637\u0647\u060c\n\u0648 \u0634\u0627\u06cc\u062f \u0632\u0645\u0627\u0646 \u0622\u0646 \u0628\u0627\u0634\u062f \u06a9\u0647 \u06a9\u062f\u062a\u0627\u0646 \u0631\u0627 \u062f\u0631 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0645\u062a\u0646\u06cc \u062f\u06cc\u06af\u0631\u06cc \u0631\u0648\u0646\u0648\u0634\u062a \u0648 \u067e\u0686\u0633\u067e\u0627\u0646\u06cc\u062f.
-#: Sketch.java:1810
+#: Sketch.java:1768
Could\ not\ re-save\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0637\u0631\u062d \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f
#: Theme.java:52
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0646\u06af \u0631\u0627 \u062e\u0648\u0627\u0646\u062f.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 Processing \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0646\u0635\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f.
-#: Preferences.java:210
+#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0631\u0627 \u062e\u0648\u0627\u0646\u062f.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f.
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
Could\ not\ read\ preferences\ from\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a \u0631\u0627 \u0627\u0632 {0} \u062e\u0648\u0627\u0646\u062f
-#: Base.java:2196
+#: Base.java:2482
#, java-format
Could\ not\ remove\ old\ version\ of\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0633\u062e\u0647\u0654 \u0642\u062f\u06cc\u0645\u06cc {0} \u0631\u0627 \u062d\u0630\u0641 \u0646\u0645\u0648\u062f
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 "{0}" \u0631\u0627 \u0628\u0647 "{1}" \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0627\u062f.
-#: Sketch.java:479
+#: Sketch.java:475
Could\ not\ rename\ the\ sketch.\ (0)=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0645\u062c\u062f\u062f \u0646\u0645\u0648\u062f. (\u06f0)
-#: Sketch.java:500
+#: Sketch.java:496
Could\ not\ rename\ the\ sketch.\ (1)=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0627\u062f. (\u06f1)
-#: Sketch.java:507
+#: Sketch.java:503
Could\ not\ rename\ the\ sketch.\ (2)=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0627\u062f. (\u06f2)
-#: Base.java:2206
+#: Base.java:2492
#, java-format
Could\ not\ replace\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 {0} \u0631\u0627 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0646\u0645\u0648\u062f
#: tools/Archiver.java:74
Couldn't\ archive\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0646\u0645\u0648\u062f
-#: Sketch.java:1689
+#: Sketch.java:1647
Couldn't\ determine\ program\ size\:\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0628\u0631\u0646\u0627\u0645\u0647 \u0631\u0627 \u062a\u0639\u06cc\u06cc\u0646 \u0646\u0645\u0648\u062f\: {0}
-#: Sketch.java:620
+#: Sketch.java:616
Couldn't\ do\ it=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u0646\u062c\u0627\u0645\u0634 \u062f\u0647\u06cc\u062f
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
Cut=\u0628\u0631\u06cc\u062f\u0646
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
+#: Preferences.java:90
!Danish=
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
Delete=\u062d\u0630\u0641
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u062f\u0633\u062a\u06af\u0627\u0647 \u067e\u0627\u0633\u062e\u200c\u06af\u0648 \u0646\u06cc\u0633\u062a\u060c \u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f \u06cc\u0627 \u0628\u0631\u062f \u062f\u0631\u0633\u062a \u0642\u0628\u0644 \u0627\u0632 \u062e\u0627\u0631\u062c\u200c\u0633\u0627\u0632\u06cc RESET \u06a9\u0646\u06cc\u062f
#: tools/FixEncoding.java:57
Discard\ all\ changes\ and\ reload\ sketch?=\u062f\u0648\u0631\u0627\u0646\u062f\u0627\u062e\u062a\u0646 \u0647\u0645\u0647\u0654 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0648 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0645\u062c\u062f\u062f \u0637\u0631\u062d\u061f
-#: Editor.java:2017
+#: Editor.java:2064
Don't\ Save=\u0630\u062e\u06cc\u0631\u0647 \u0646\u06a9\u0646
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
Done\ Saving.=\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f.
-#: Editor.java:2463
+#: Editor.java:2510
Done\ burning\ bootloader.=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631 \u0627\u0646\u062c\u0627\u0645 \u06af\u0631\u062f\u06cc\u062f.
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
Done\ compiling.=\u0627\u0646\u062c\u0627\u0645 \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644 \u06a9\u0631\u062f\u0646.
-#: Editor.java:2517
+#: Editor.java:2564
Done\ printing.=\u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646 \u0628\u0647 \u0627\u0646\u062c\u0627\u0645 \u0631\u0633\u06cc\u062f.
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
Done\ uploading.=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f.
-#: Preferences.java:90
+#: Preferences.java:91
!Dutch=
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
Edit=\u0648\u06cc\u0631\u0627\u06cc\u0634
-#: Preferences.java:354
+#: Preferences.java:370
Editor\ font\ size\:\ =\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0642\u0644\u0645 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631
-#: Preferences.java:337
+#: Preferences.java:353
!Editor\ language\:\ =
-#: Preferences.java:91
+#: Preferences.java:92
!English=
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
Environment=\u0645\u062d\u06cc\u0637
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=\u062e\u0637\u0627
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
Error\ adding\ file=\u062e\u0637\u0627\u06cc \u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
Error\ compiling.=\u062e\u0637\u0627\u06cc \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644
-#: Base.java:1433
+#: Base.java:1674
Error\ getting\ the\ Arduino\ data\ folder.=\u062e\u0637\u0627\u06cc \u06af\u0631\u0641\u062a\u0646 \u067e\u0648\u0634\u0647 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0622\u0631\u062f\u0626\u06cc\u0646\u0648
-#: Serial.java:567
+#: Serial.java:593
#, java-format
Error\ inside\ Serial.{0}()=\u062e\u0637\u0627\u06cc \u062f\u0631\u0648\u0646\u06cc. {0}()
@@ -402,25 +432,25 @@ Error\ inside\ Serial.{0}()=\u062e\u0637\u0627\u06cc \u062f\u0631\u0648\u0646\u0
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
Error\ opening\ serial\ port\ ''{0}''.=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0628\u0627\u0632\u0646\u0645\u0648\u062f\u0646 ''{0}''.
-#: Preferences.java:261
+#: Preferences.java:277
Error\ reading\ preferences=\u062e\u0637\u0627\u06cc \u062e\u0648\u0627\u0646\u062f\u0646 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u062e\u0637\u0627\u06cc \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a. \u0644\u0637\u0641\u0627\u064b {0} \u0631\u0627 \u062d\u0630\u0641 (\u06cc\u0627 \u0627\u0646\u062a\u0641\u0627\u0644)\n\u0648 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u06a9\u0646\u06cc\u062f.
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
Error\ while\ burning\ bootloader.=\u062e\u0637\u0627\u06cc \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631.
#: ../../../processing/app/Editor.java:2555
@@ -430,26 +460,29 @@ Error\ while\ burning\ bootloader.=\u062e\u0637\u0627\u06cc \u0628\u0647 \u0647\
#, java-format
Error\ while\ loading\ code\ {0}=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u06a9\u062f {0}
-#: Editor.java:2520
+#: Editor.java:2567
Error\ while\ printing.=\u062e\u0637\u0627 \u0647\u0646\u06af\u0627\u0645 \u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646.
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
Examples=\u0646\u0645\u0648\u0646\u0647\u200c\u0647\u0627
-#: Editor.java:2435
+#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u062e\u0627\u0631\u062c\u200c\u0633\u0627\u0632\u06cc \u0641\u0633\u062e\u200c\u06af\u0631\u062f\u06cc\u062f\u060c \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0627\u0628\u062a\u062f\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0630\u062e\u06cc\u0631\u0647 \u06af\u0631\u062f\u0646\u062f.
-#: Base.java:1814
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
+#: Editor.java:491
File=\u067e\u0631\u0648\u0646\u062f\u0647
#: Preferences.java:94
@@ -458,158 +491,164 @@ File=\u067e\u0631\u0648\u0646\u062f\u0647
#: FindReplace.java:124 FindReplace.java:127
Find=\u06cc\u0627\u0641\u062a\u0646
-#: Editor.java:1235
+#: Editor.java:1249
Find\ Next=\u06cc\u0627\u0641\u062a\u0646 \u0628\u0639\u062f\u06cc
-#: Editor.java:1245
+#: Editor.java:1259
Find\ Previous=\u06cc\u0627\u0641\u062a\u0646 \u0642\u0628\u0644\u06cc
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
Find\ in\ Reference=\u06cc\u0627\u0641\u062a\u0646 \u062f\u0631 \u0645\u0631\u062c\u0639
-#: Editor.java:1220
+#: Editor.java:1234
Find...=\u06cc\u0627\u0641\u062a\u0646...
#: FindReplace.java:80
Find\:=\u06cc\u0627\u0641\u062a\u0646\:
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
Fix\ Encoding\ &\ Reload=\u062e\u0637\u0627\u0632\u062f\u0627\u06cc\u06cc \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc \u0648 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0645\u062c\u062f\u062f
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
+#: Preferences.java:95
!French=
-#: Editor.java:1083
+#: Editor.java:1097
Frequently\ Asked\ Questions=\u0633\u0648\u0627\u0644\u200c\u0647\u0627\u06cc \u0645\u062a\u062f\u0627\u0648\u0644 \u067e\u0631\u0633\u06cc\u062f\u0647\u200c\u0634\u062f\u0647
-#: Preferences.java:95
+#: Preferences.java:96
!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
+#: Preferences.java:97
!German=
-#: Editor.java:1041
+#: Editor.java:1054
Getting\ Started=\u0634\u0631\u0648\u0639 \u06a9\u0627\u0631
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
!Greek=
-#: Base.java:1799
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
+#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
+#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
+#: Editor.java:1015
Help=\u06a9\u0645\u06a9
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
+#: Sketch.java:295
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u0686\u0637\u0648\u0631 \u0627\u0633\u062a \u0627\u0628\u062a\u062f\u0627 \u0637\u0631\u062d \u0631\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u062a\u0644\u0627\u0634 \u0628\u0631\u0627\u06cc \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc\n\u0645\u062c\u062f\u062f \u0622\u0646 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u0645\u061f
-#: Sketch.java:886
+#: Sketch.java:882
How\ very\ Borges\ of\ you=\u0686\u0647 \u0628\u0648\u0631\u062e\u0633\u06cc \u0647\u0633\u062a\u06cc\u062f \u0634\u0645\u0627
-#: Preferences.java:98
+#: Preferences.java:100
!Hungarian=
#: FindReplace.java:96
Ignore\ Case=\u0646\u0627\u062f\u06cc\u062f\u0647\u200c\u06af\u0631\u0641\u062a\u0646 \u0628\u0632\u0631\u06af\u06cc/\u06a9\u0648\u0686\u06a9\u06cc
-#: Base.java:1207
+#: Base.java:1058
Ignoring\ bad\ library\ name=\u062f\u0631 \u0646\u0638\u0631 \u0646\u06af\u0631\u0641\u062a\u0646 \u0646\u0627\u0645 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647
-#: Base.java:1132
+#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0637\u0631\u062d \u0628\u0627 \u0646\u0627\u0645 \u0628\u062f
-#: Editor.java:629
+#: Editor.java:636
Import\ Library...=\u0648\u0627\u0631\u062f\u0633\u0627\u0632\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647...
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
Increase\ Indent=\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc
-#: Preferences.java:99
+#: Preferences.java:101
!Indonesian=
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
+#: Preferences.java:102
!Italian=
-#: Preferences.java:101
+#: Preferences.java:103
!Japanese=
-#: Preferences.java:102
+#: Preferences.java:104
!Korean=
-#: Preferences.java:103
+#: Preferences.java:105
!Latvian=
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
-#: Preferences.java:104
+#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
+#: Base.java:2112
Message=\u067e\u06cc\u063a\u0627\u0645
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
+#: Sketch.java:1712
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u0641\u0642\u062f\u0627\u0646 */ \u0627\u0632 \u0627\u0646\u062a\u0647\u0627\u06cc \u06cc\u06a9 /* \u062a\u0648\u0636\u06cc\u062d */
-#: Preferences.java:433
+#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u062a\u0631\u062c\u06cc\u062d\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u0646\u062f \u0645\u0633\u062a\u0642\u06cc\u0645\u0627\u064b \u062f\u0631\u0648\u0646 \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06af\u0631\u062f\u0646\u062f
-#: Editor.java:2109
+#: Editor.java:2156
Moving=\u0627\u0646\u062a\u0642\u0627\u0644
-#: Sketch.java:286
+#: Sketch.java:282
Name\ for\ new\ file\:=\u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u062c\u062f\u06cc\u062f\:
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
New=\u062c\u062f\u06cc\u062f
#: EditorToolbar.java:46
@@ -624,16 +663,16 @@ Newline=\u062e\u0637 \u062c\u062f\u06cc\u062f
#: EditorHeader.java:340
Next\ Tab=\u062a\u0628 \u0628\u0639\u062f
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=\u062e\u06cc\u0631
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0628\u0631\u062f\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647\u200c\u0627\u0633\u062a\u061b \u0644\u0637\u0641\u0627\u064b \u06cc\u06a9 \u0628\u0631\u062f \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u0628\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f.
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
No\ changes\ necessary\ for\ Auto\ Format.=\u062a\u063a\u06cc\u06cc\u0631\u06cc \u0628\u0631\u0627\u06cc \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0646\u06cc\u0627\u0632 \u0646\u06cc\u0633\u062a.
-#: Editor.java:366
+#: Editor.java:373
No\ files\ were\ added\ to\ the\ sketch.=\u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0627\u06cc \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0646\u0634\u062f.
#: Platform.java:167
@@ -642,81 +681,88 @@ No\ launcher\ available=\u067e\u0631\u062a\u0627\u0628\u200c\u06a9\u0646\u0646\u
#: SerialMonitor.java:112
No\ line\ ending=\u0628\u062f\u0648\u0646 \u067e\u0627\u06cc\u0627\u0646 \u062e\u0637
-#: Base.java:538
+#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0646\u0647 \u062c\u062f\u0627\u064b\u060c \u0648\u0642\u062a \u0645\u0642\u062f\u0627\u0631\u06cc \u0647\u0648\u0627\u06cc \u062a\u0627\u0632\u0647\u200c\u0627\u0633\u062a.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
No\ reference\ available\ for\ "{0}"=\u0645\u0631\u062c\u0639\u06cc \u0628\u0631\u0627\u06cc "{0}" \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u062e\u0637\u0627\u06cc \u063a\u06cc\u0631 \u0648\u062e\u06cc\u0645\u06cc \u0647\u0646\u06af\u0627\u0645 \u062a\u0646\u0638\u06cc\u0645 \u0638\u0627\u0647\u0631.
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u0646\u0641\u06cc
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
OK=\u0627\u0648\u06a9\u06cc
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
One\ file\ added\ to\ the\ sketch.=\u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647 \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0634\u062f.
#: EditorToolbar.java:41
Open=\u0628\u0627\u0632\u06a9\u0631\u062f\u0646
-#: Editor.java:2641
+#: Editor.java:2688
Open\ URL=\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 URL
-#: Base.java:633
+#: Base.java:636
Open\ an\ Arduino\ sketch...=\u06cc\u06a9 \u0637\u0631\u062d \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0628\u0627\u0632 \u06a9\u0646...
#: EditorToolbar.java:46
Open\ in\ Another\ Window=\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u062f\u0631 \u067e\u0646\u062c\u0631\u0647\u200c\u0627\u06cc \u062f\u06cc\u06af\u0631
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646....
-#: Editor.java:556
+#: Editor.java:563
Page\ Setup=\u062a\u0646\u0638\u06cc\u0645 \u0635\u0641\u062d\u0647
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
Paste=\u0627\u0644\u0633\u0627\u0642
-#: Preferences.java:105
+#: Preferences.java:109
!Persian=
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0644\u0637\u0641\u0627\u064b \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 SPI \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u0637\u0631\u062d > \u062f\u0631\u0648\u0646\u200c\u0633\u0627\u0632\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u062f\u0631\u0648\u0646\u200c\u0633\u0627\u0632\u06cc \u06a9\u0646\u06cc\u062f.
-#: Base.java:232
+#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=\u0644\u0637\u0641\u0627\u064b JDK \u06f1.\u06f5 \u06cc\u0627 \u0628\u0639\u062f\u062a\u0631 \u0627\u0632 \u0622\u0646 \u0631\u0627 \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f
-#: Preferences.java:106
+#: Preferences.java:110
!Polish=
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
Preferences=\u062a\u0631\u062c\u06cc\u062d\u0627\u062a
#: FindReplace.java:123 FindReplace.java:128
@@ -725,22 +771,22 @@ Previous=\u0642\u0628\u0644\u06cc
#: EditorHeader.java:326
Previous\ Tab=\u062a\u0628 \u0642\u0628\u0644
-#: Editor.java:564
+#: Editor.java:571
Print=\u0686\u0627\u067e
-#: Editor.java:2524
+#: Editor.java:2571
Printing\ canceled.=\u0686\u0627\u067e \u0627\u0628\u0637\u0627\u0644 \u06af\u0634\u062a.
-#: Editor.java:2500
+#: Editor.java:2547
Printing...=\u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646...
-#: Base.java:1671
+#: Base.java:1957
Problem\ Opening\ Folder=\u0627\u0634\u06a9\u0627\u0644 \u062f\u0631 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u067e\u0648\u0634\u0647
-#: Base.java:1647
+#: Base.java:1933
Problem\ Opening\ URL=\u0627\u0634\u06a9\u0627\u0644 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 URL
-#: Base.java:220
+#: Base.java:227
Problem\ Setting\ the\ Platform=\u0627\u0634\u06a9\u0627\u0644 \u062a\u0646\u0638\u06cc\u0645 \u0633\u06a9\u0648
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
@@ -749,41 +795,41 @@ Problem\ Setting\ the\ Platform=\u0627\u0634\u06a9\u0627\u0644 \u062a\u0646\u063
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
+#: Base.java:1673
Problem\ getting\ data\ folder=\u0627\u0634\u06a9\u0627\u0644 \u06af\u0631\u0641\u062a\u0646 \u067e\u0648\u0634\u0647\u0654 \u062f\u0627\u062f\u0647\u200c\u0647\u0627
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
Problem\ moving\ {0}\ to\ the\ build\ folder=\u0627\u0634\u06a9\u0627\u0644 \u0628\u0647\u200c\u0647\u0646\u06af\u0627\u0645 \u0627\u0646\u062a\u0642\u0627\u0644 {0} \u0628\u0647 \u067e\u0648\u0634\u0647\u0654 \u0633\u0627\u062e\u062a
#: debug/Uploader.java:209
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u0627\u0634\u06a9\u0627\u0644 \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0628\u0631\u062f. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0631\u0627 \u0628\u0631\u0627\u06cc \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u0627\u062a \u0628\u0628\u06cc\u0646\u06cc\u062f.
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
Problem\ with\ rename=\u0645\u0634\u06a9\u0644 \u0628\u0627 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0645\u062c\u062f\u062f
-#: Editor.java:2090
+#: Editor.java:2137
Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing \u0641\u0642\u0637 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0637\u0631\u062d\u200c\u0647\u0627\u06cc \u062e\u0648\u062f\u0634 \u0631\u0627 \u0628\u0627\u0632 \u06a9\u0646\u062f\n\u0648 \u0633\u0627\u06cc\u0631 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0628\u0627 .ino \u06cc\u0627 .pde \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc\u200c\u067e\u0630\u06cc\u0631\u0646\u062f
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
+#: Editor.java:704
Programmer=\u067e\u0631\u0648\u06af\u0631\u0627\u0645\u0631
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=\u062e\u0631\u0648\u062c
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
Redo=\u0627\u0646\u062c\u0627\u0645 \u062f\u0648\u0628\u0627\u0631\u0647
-#: Editor.java:1065
+#: Editor.java:1078
Reference=\u0645\u0631\u062c\u0639
#: EditorHeader.java:300
Rename=\u062a\u063a\u06cc\u06cc\u0631\u0646\u0627\u0645
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc
#: FindReplace.java:122 FindReplace.java:129
@@ -792,55 +838,55 @@ Replace\ &\ Find=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0648 \u06cc\
#: FindReplace.java:120 FindReplace.java:131
Replace\ All=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0647\u0645\u0647
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
Replace\ the\ existing\ version\ of\ {0}?=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0646\u0633\u062e\u0647\u0654 \u0645\u0648\u062c\u0648\u062f \u0627\u0632 {0}\u061f
#: FindReplace.java:81
Replace\ with\:=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646\:
-#: Preferences.java:109
+#: Preferences.java:113
!Romanian=
-#: Preferences.java:110
+#: Preferences.java:114
!Russian=
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=\u0630\u062e\u06cc\u0631\u0647
-#: Editor.java:530
+#: Editor.java:537
Save\ As...=\u0630\u062e\u06cc\u0631\u0647 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646....
-#: Editor.java:2270
+#: Editor.java:2317
Save\ Canceled.=\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc \u0641\u0633\u062e \u06af\u0634\u062a.
-#: Editor.java:2420
+#: Editor.java:2467
Save\ changes\ before\ export?=\u0630\u062e\u06cc\u0631\u0647\u0654 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u067e\u06cc\u0634 \u0627\u0632 \u062e\u0627\u0631\u062c\u200c\u0633\u0627\u0632\u06cc\u061f
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
Save\ changes\ to\ "{0}"?\ \ =\u0630\u062e\u06cc\u0631\u0647\u0654 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 "{0}"?
-#: Sketch.java:829
+#: Sketch.java:825
Save\ sketch\ folder\ as...=\u0630\u062e\u06cc\u0631\u0647\u0654 \u067e\u0648\u0634\u0647 \u0637\u0631\u062d \u0628\u0647 \u0639\u0646\u0648\u0627\u0646...
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
Saving...=\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc....
-#: Base.java:1623
+#: Base.java:1909
Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0627\u0646\u062a\u062e\u0627\u0628 (\u06cc\u0627 \u062f\u0631\u0633\u062a\u200c\u06a9\u0631\u062f\u0646 \u062c\u062f\u06cc\u062f) \u067e\u0648\u0634\u0647 \u0628\u0631\u0627\u06cc \u0637\u0631\u062d\u200c\u0647\u0627....
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
Select\ All=\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
+#: Sketch.java:975
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u06cc\u0627 \u0633\u0627\u06cc\u0631 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc \u062f\u0627\u062f\u0647\u200c\u0647\u0627 \u0628\u0631\u0627\u06cc \u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0647 \u0637\u0631\u062d\u200c\u062a\u0627\u0646
-#: Preferences.java:314
+#: Preferences.java:330
Select\ new\ sketchbook\ location=\u0645\u0648\u0642\u0639\u06cc\u062a \u062c\u062f\u06cc\u062f \u06a9\u062a\u0627\u0628 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f
#: ../../../processing/app/debug/Compiler.java:146
@@ -849,147 +895,157 @@ Select\ new\ sketchbook\ location=\u0645\u0648\u0642\u0639\u06cc\u062a \u062c\u0
#: SerialMonitor.java:93
Send=\u0627\u0631\u0633\u0627\u0644
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
Serial\ Monitor=\u0646\u0645\u0627\u06cc\u0634\u06af\u0631 \u0633\u0631\u06cc\u0627\u0644
-#: Serial.java:147
+#: Serial.java:174
#, java-format
Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 ''{0}'' \u062f\u0631\u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647\u200c\u0627\u0633\u062a. \u0633\u0639\u06cc\u200c\u06a9\u0646\u06cc\u062f \u0647\u0631 \u0628\u0631\u0646\u0627\u0645\u0647\u200c\u0627\u06cc \u06a9\u0647 \u0627\u0632 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u062f \u062e\u0627\u0631\u062c \u06a9\u0646\u06cc\u062f.
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 ''{0}'' \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u0622\u06cc\u0627 \u0634\u0645\u0627 \u062f\u0631\u0633\u062a \u0622\u0646 \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0648\u062f\u0647\u200c\u0627\u06cc\u062f\u061f
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 {0} \u06cc\u0627\u0641\u062a \u0646\u0634\u062f.\n\u0627\u0646\u062c\u0627\u0645 \u0645\u062c\u062f\u062f \u0628\u0627\u06af\u0630\u0627\u0631\u06cc \u0628\u0627 \u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644\u06cc \u062f\u06cc\u06af\u0631\u061f
-#: Base.java:1440
+#: Base.java:1681
Settings\ issues=\u0645\u0634\u06a9\u0644\u0627\u062a \u062a\u0646\u0638\u06cc\u0645\u0627\u062a
-#: Editor.java:634
+#: Editor.java:641
Show\ Sketch\ Folder=\u0646\u0645\u0627\u06cc\u0634 \u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
+#: Preferences.java:387
Show\ verbose\ output\ during\:\ =\u0646\u0645\u0627\u06cc\u0634 \u062e\u0631\u0648\u062c\u06cc \u067e\u0631\u06af\u0648 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645\:
-#: Editor.java:600
+#: Editor.java:607
Sketch=\u0637\u0631\u062d
-#: Sketch.java:1796
+#: Sketch.java:1754
Sketch\ Disappeared=\u0637\u0631\u062d \u0646\u0627\u067e\u062f\u06cc\u062f \u06af\u0634\u062a
-#: Base.java:1095
+#: Base.java:1411
Sketch\ Does\ Not\ Exist=\u0637\u0631\u062d \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
Sketch\ is\ Read-Only=\u0637\u0631\u062d \u0641\u0642\u0637 \u062e\u0648\u0627\u0646\u062f\u0646\u06cc \u0627\u0633\u062a
-#: Sketch.java:298
+#: Sketch.java:294
Sketch\ is\ Untitled=\u0637\u0631\u062d \u0628\u06cc\u200c\u0646\u0627\u0645 \u0627\u0633\u062a
-#: Sketch.java:724
+#: Sketch.java:720
Sketch\ is\ read-only=\u0637\u0631\u062d \u0641\u0642\u0637 \u062e\u0648\u0627\u0646\u062f\u06cc \u0627\u0633\u062a
-#: Sketch.java:1694
+#: Sketch.java:1653
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0637\u0631\u062d \u0628\u0633\u06cc\u0627\u0631 \u0628\u0632\u0631\u06af \u0627\u0633\u062a\u061b http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0631\u0627 \u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc\u200c\u0647\u0627\u06cc\u06cc \u062f\u0631 \u0631\u0627\u0628\u0637\u0647 \u06a9\u0627\u0647\u0634 \u0622\u0646 \u0628\u0628\u06cc\u0646\u06cc\u062f.
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
Sketchbook=\u06a9\u062a\u0627\u0628 \u0637\u0631\u062d
-#: Base.java:257
+#: Base.java:258
Sketchbook\ folder\ disappeared=\u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u200c\u0647\u0627 \u0646\u0627\u067e\u062f\u06cc\u062f \u0634\u062f
-#: Preferences.java:299
+#: Preferences.java:315
Sketchbook\ location\:=\u0645\u0648\u0642\u0639\u06cc\u062a \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\:
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u0628\u0639\u0636\u06cc \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u00ab\u0641\u0642\u0637 \u062e\u0648\u0627\u0646\u062f\u0646\u06cc\u00bb \u0628\u0631\u0686\u0633\u067e\u200c\u06af\u0630\u0627\u0631\u06cc\n\u0634\u062f\u0647\u200c\u0627\u0646\u062f\u060c \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646 \u0634\u0645\u0627 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0622\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0637\u0631\u062d \u062f\u0648\u0628\u0627\u0631\u0647 \u062f\u0631\n\u0645\u062d\u0644 \u062f\u06cc\u06af\u0631\u06cc \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f \u0648 \u0645\u062c\u062f\u062f\u0627\u064b \u062a\u0644\u0627\u0634 \u0646\u0645\u0627\u06cc\u06cc\u062f.
-#: Sketch.java:725
+#: Sketch.java:721
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u0628\u0639\u0636\u06cc \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627 "read-only" \u0628\u0631\u0686\u0633\u067e\u200c\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647\u200c\u0627\u0646\u062f\u060c \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646 \u0634\u0645\u0627\n\u0645\u062c\u0628\u0648\u0631 \u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u0648\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u062f\u0631 \u0645\u06a9\u0627\u0646\u06cc \u062f\u06cc\u06af\u0631 \u0645\u062c\u062f\u062f\u0627\u064b \u0630\u062e\u06cc\u0631\u0647\u200c\u06a9\u0646\u06cc\u062f.
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0634\u0631\u0645\u0646\u062f\u0647\u060c \u06cc\u06a9 \u0637\u0631\u062d (\u06cc\u0627 \u067e\u0631\u0648\u0646\u062f\u0647) \u0646\u0627\u0645\u200c\u062f\u0647\u06cc \u0634\u062f\u0647 \u0628\u0627 "{0}" \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a.
-#: Preferences.java:111
+#: Preferences.java:115
!Spanish=
-#: Base.java:537
+#: Base.java:540
Sunshine=\u0637\u0644\u0648\u0639
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
!System\ Default=
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
!Tamil=
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647\u0654 'BYTE' \u062f\u06cc\u06af\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06af\u0631\u062f\u062f.
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u06a9\u0644\u0627\u0633 Client \u0628\u0647 EthernetClient \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u06a9\u0644\u0627\u0633 Server \u0628\u0647 EthernetServer \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u06a9\u0644\u0627\u0633 Udp \u0628\u0647 EthernetUdp \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.
-#: Base.java:185
+#: Base.java:192
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u067e\u06cc\u063a\u0627\u0645 \u062e\u0637\u0627 \u062f\u0631 \u0630\u06cc\u0644 \u0622\u0645\u062f\u0647\u060c \u0647\u0631\u0686\u0646\u062f \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0628\u0627\u06cc\u062f \u0628\u0647 \u062f\u0631\u0633\u062a\u06cc \u06a9\u0627\u0631 \u06a9\u0646\u062f.
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u067e\u0631\u0648\u0646\u062f\u0647 "{0}" \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u062f\u0627\u062e\u0644 \u06cc\u06a9\n\u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d \u0628\u0647 \u0646\u0627\u0645 "{1}" \u0630\u062e\u06cc\u0631\u0647 \u06af\u0631\u062f\u0646\u062f.\n\u0633\u0627\u062e\u062a\u0646 \u0627\u06cc\u0646 \u067e\u0648\u0634\u0647\u060c \u0627\u0646\u062a\u0642\u0627\u0644 \u067e\u0631\u0648\u0646\u062f\u0647 \u0648 \u0627\u062f\u0627\u0645\u0647\u061f
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 "{0}" \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06af\u0631\u062f\u062f.\n\u0646\u0627\u0645 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0641\u0642\u0637 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0634\u0627\u0645\u0644 \u062d\u0631\u0648\u0641 \u0633\u0627\u062f\u0647 \u0648 \u0639\u062f\u062f \u0628\u0627\u0634\u062f.\n(\u0641\u0642\u0637 ASCII \u0648 \u0628\u062f\u0648\u0646 \u0641\u0627\u0635\u0644\u0647 \u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0628\u0627 \u06cc\u06a9 \u0639\u062f\u062f \u0634\u0631\u0648\u0639 \u0634\u0648\u062f.)
-#: Sketch.java:378
+#: Sketch.java:374
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u0627\u0635\u0644\u06cc \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u0627\u0641\u0632\u0648\u0646\u0647 \u0628\u0627\u0634\u062f.\n(\u0634\u0627\u06cc\u062f \u0632\u0645\u0627\u0646 \u0622\u0646 \u0628\u0627\u0634\u062f \u06a9\u0647 \u06cc\u06a9 \u0645\u062d\u06cc\u0637 \u00ab\u0648\u0627\u0642\u0639\u06cc\u00bb \u0628\u0631\u0646\u0627\u0645\u0647\u200c\u0646\u0648\u06cc\u0633\u06cc\u0631\u0627 \u0645\u0637\u0627\u0644\u0639\u0647 \u06a9\u0646\u06cc\u062f)
-#: Sketch.java:360
+#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=\u0646\u0627\u0645 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0628\u0627 \u06cc\u06a9 \u0646\u0642\u0637\u0647 \u0622\u063a\u0627\u0631 \u06af\u0631\u062f\u062f.
-#: Base.java:1096
+#: Base.java:1412
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u0637\u0631\u062d \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u062f\u06cc\u06af\u0631 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0645\u0646\u0648\u06cc\n\u06a9\u062a\u0627\u0628 \u0637\u0631\u062d \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u06a9\u0646\u06cc\u062f.
-#: Base.java:1125
+#: Base.java:1430
#, java-format
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\u0637\u0631\u062d "{0}" \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06af\u0631\u062f\u062f.\n\u0646\u0627\u0645 \u0637\u0631\u062d\u200c\u0647\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0641\u0642\u0637 \u0634\u0627\u0645\u0644 \u062d\u0631\u0648\u0641 \u0633\u0627\u062f\u0647 \u0648 \u0639\u062f\u062f\u0647\u0627 \u0628\u0627\u0634\u0646\u062f\n(\u0641\u0642\u0637 ASCII \u0628\u062f\u0648\u0646 \u0641\u0627\u0635\u0644\u0647 \u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0628\u0627 \u0639\u062f\u062f \u0634\u0631\u0648\u0639 \u0634\u0648\u062f).\n\u0628\u0631\u0627\u06cc \u062e\u0644\u0627\u0635\u200c\u0634\u062f\u0646 \u0627\u0632 \u0627\u06cc\u0646 \u067e\u06cc\u063a\u0627\u0645\u060c \u0637\u0631\u062d \u0631\u0627 \u0627\u0632 {1} \u062d\u0630\u0641 \u0646\u0645\u0627\u06cc\u06cc\u062f.
-#: Sketch.java:1797
+#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d \u0646\u0627\u067e\u062f\u06cc\u062f \u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n \u062a\u0644\u0627\u0634 \u062e\u0648\u0627\u0647\u06cc\u062f \u06a9\u0647 \u0622\u0646 \u0631\u0627 \u062f\u0631 \u0645\u062d\u0644 \u0645\u0634\u0627\u0628\u0647 \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f\n\u0648\u0644\u06cc \u0628\u0647\u200c\u0639\u0644\u0627\u0648\u0647\u0654 \u0622\u0646 \u06a9\u062f \u0645\u0641\u0642\u0648\u062f \u062e\u0648\u0627\u0647\u062f \u0634\u062f.
-#: Sketch.java:2060
+#: Sketch.java:2018
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0646\u0627\u0645 \u0637\u0631\u062d \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 \u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0628\u062f. \u0646\u0627\u0645\u200c\u0647\u0627\u06cc \u0637\u0631\u062d \u0641\u0642\u0637 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc\nASCII \u0648 \u0627\u0639\u062f\u0627\u062f \u0628\u0627\u0634\u0646\u062f (\u0648\u0644\u06cc \u0628\u0627 \u0627\u0639\u062f\u0627\u062f \u0622\u063a\u0627\u0632 \u0646\u06af\u0631\u062f\u0646\u062f).\n\u0627\u06cc\u0646\u200c\u0647\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0645\u062a\u0631 \u0627\u0632 \u06f6\u06f4 \u0646\u0648\u06cc\u0633\u0647 \u0637\u0648\u0644 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u0646\u062f.
-#: Base.java:258
+#: Base.java:259
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d \u062f\u06cc\u06af\u0631 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a.\n\u0622\u0631\u062f\u0626\u0646\u0648 \u0645\u062d\u0644 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f\n\u0648 \u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u06cc \u062f\u0631\u0633\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f \u0627\u06af\u0631 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632\n\u0628\u0627\u0634\u062f. \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0635\u062d\u0628\u062a \u06a9\u0631\u062f\u0646 \u062f\u0631 \u0631\u0627\u0628\u0637\u0647 \u0628\u0627 \u062e\u0648\u062f \u0631\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646\n\u0633\u0648\u0645 \u0634\u062e\u0635 \u0631\u0627 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f.
-#: Sketch.java:1079
+#: Sketch.java:1075
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0627\u06cc\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u0645\u0648\u0636\u0639\u06cc\u062a\u06cc \u06a9\u0647\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u06cc\u0627\u0641\u0632\u0627\u06cc\u06cc\u062f \u06a9\u067e\u06cc\u200c\u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n\u0645\u0646 \u06a9\u0627\u0631\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0645.
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
+#: Base.java:535
Time\ for\ a\ Break=\u0648\u0642\u062a \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0631\u0627\u062d\u062a
-#: Editor.java:656
+#: Editor.java:663
Tools=\u0627\u0628\u0632\u0627\u0631\u0647\u0627
-#: Editor.java:1057
+#: Editor.java:1070
Troubleshooting=\u062e\u0637\u0627\u06cc\u0627\u0628\u06cc
#: ../../../processing/app/Preferences.java:117
@@ -1009,7 +1065,7 @@ Troubleshooting=\u062e\u0637\u0627\u06cc\u0627\u0628\u06cc
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1017,11 +1073,11 @@ Troubleshooting=\u062e\u0637\u0627\u06cc\u0627\u0628\u06cc
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
Uncaught\ exception\ type\:\ {0}=\u062e\u0637\u0627\u06cc \u06af\u0631\u0641\u062a\u0647 \u0646\u0634\u062f\u0647 \u0627\u0632 \u0646\u0648\u0639\: {0}
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
Undo=\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u06cc
#: Platform.java:168
@@ -1030,52 +1086,55 @@ Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\
#: UpdateCheck.java:111
Update=\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc
-#: Preferences.java:412
+#: Preferences.java:428
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u067e\u0631\u0648\u0646\u062f\u0647 \u0637\u0631\u062d \u0628\u0647 \u06cc\u06a9 \u067e\u0633\u0648\u0646\u062f \u062c\u062f\u06cc\u062f \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc (.pde -> .ino)
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
Upload\ Using\ Programmer=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u06a9\u0645\u06a9 \u067e\u0631\u0648\u06af\u0631\u0627\u0645\u0631
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0628\u0637\u0627\u0644 \u06af\u0634\u062a.
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
+#: Editor.java:2378
Uploading\ to\ I/O\ Board...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0628\u0631\u062f I/O...
-#: Sketch.java:1661
+#: Sketch.java:1622
Uploading...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc...
-#: Editor.java:1255
+#: Editor.java:1269
Use\ Selection\ For\ Find=\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06af\u0632\u06cc\u0646\u0634 \u0628\u0631\u0627\u06cc \u06cc\u0627\u0641\u062a\u0646
-#: Preferences.java:393
+#: Preferences.java:409
Use\ external\ editor=\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0648\u06cc\u0631\u0627\u06cc\u0634\u200c\u06af\u0631 \u062e\u0627\u0631\u062c\u06cc
#: EditorToolbar.java:41 EditorToolbar.java:46
Verify=\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc
-#: Editor.java:602
+#: Editor.java:609
Verify\ /\ Compile=\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc / \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644
-#: Preferences.java:384
+#: Preferences.java:400
!Verify\ code\ after\ upload=
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
Visit\ Arduino.cc=\u0628\u0627\u0632\u062f\u06cc\u062f Arduino.cc
-#: Base.java:1842
+#: Base.java:2128
Warning=\u0627\u062e\u0637\u0627\u0631
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0628\u0647 Wire.read() \u062a\u063a\u06cc\u06cc\u0631\u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0628\u0647 Wire.write() \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.
#: FindReplace.java:105
@@ -1084,40 +1143,40 @@ Wrap\ Around=\u067e\u0648\u0634\u0627\u0646\u062f\u0646 \u0627\u0637\u0631\u0627
#: debug/Uploader.java:213
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0645\u06cc\u06a9\u0631\u0648\u06a9\u0646\u062a\u0631\u0644\u0631 \u0627\u0634\u062a\u0628\u0627\u0647\u06cc \u06cc\u0627\u0641\u062a \u0634\u062f. \u0622\u06cc\u0627 \u0634\u0645\u0627 \u0628\u0631\u062f \u0645\u0646\u0627\u0633\u0628\u06cc \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u0628\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u0647\u200c\u0627\u06cc\u062f\u061f
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=\u0628\u0644\u0647
-#: Sketch.java:1078
+#: Sketch.java:1074
You\ can't\ fool\ me=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0641\u0631\u06cc\u0628\u0645 \u062f\u0647\u06cc\u062f
-#: Sketch.java:415
+#: Sketch.java:411
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 .cpp \u0628\u0627 \u0646\u0627\u0645 \u0645\u0634\u0627\u0628\u0647 \u0637\u0631\u062d \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f.
-#: Sketch.java:425
+#: Sketch.java:421
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u0628\u0647 "{0}" \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0647\u06cc\u062f\n\u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0637\u0631\u062d \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 .cpp \u0628\u0627 \u0646\u0627\u0645 \u0645\u0634\u0627\u0628\u0647 \u0627\u0633\u062a.
-#: Sketch.java:865
+#: Sketch.java:861
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u0628\u0647\u200c\u0639\u0646\u0648\u0627\u0646 "{0}" \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0637\u0631\u062d \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631\u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 .cpp \u0628\u0627 \u0646\u0627\u0645 \u0645\u0634\u0627\u0628\u0647 \u0627\u0633\u062a.
-#: Sketch.java:887
+#: Sketch.java:883
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u062f\u0631 \u062f\u0631\u0648\u0646 \u067e\u0648\u0634\u0647\u0654 \u062e\u0648\u062f\u0634 \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc\u062f\n\u0627\u06cc\u0646 \u0634\u0627\u06cc\u062f \u0628\u0631\u0627\u06cc \u0647\u0645\u06cc\u0634\u0647 \u0628\u0627\u0634\u062f.
-#: Base.java:1602
+#: Base.java:1888
You\ forgot\ your\ sketchbook=\u0634\u0645\u0627 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u200c\u062a\u0627\u0646 \u0631\u0627 \u0641\u0631\u0627\u0645\u0648\u0634 \u06a9\u0631\u062f\u0647\u200c\u0627\u06cc\u062f
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
+#: Base.java:536
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0634\u0645\u0627 \u0628\u0647 \u0645\u062d\u062f\u0648\u062f\u0647\u0654 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0631\u0627\u06cc \u0637\u0631\u062d\u200c\u0647\u0627\u06cc \u0628\u0631\u0627\u06cc \u0627\u0645\u0631\u0648\u0632\n\u0631\u0633\u06cc\u062f\u0647\u200c\u0627\u06cc\u062f. \u0686\u0637\u0648\u0631 \u0627\u0633\u062a \u0628\u0647 \u062c\u0627\u06cc \u0622\u0646 \u06cc\u06a9 \u067e\u06cc\u0627\u062f\u0647\u200c\u0631\u0648\u06cc \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f\u061f
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
!ZIP\ files\ or\ folders=
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \u067e\u0633\u0648\u0646\u062f \u0646\u0627\u0645\u0639\u062a\u0628\u0631\u06cc \u0627\u0633\u062a.
@@ -1125,47 +1184,46 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day
#, java-format
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647\u200c\u0627\u0633\u062a. \u0627\u06af\u0631 \u0627\u06cc\u0646 \u06a9\u062f \u0628\u0627 \u0646\u0633\u062e\u0647\u200c\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc\u200c\u062a\u0631 Processing \u062f\u0631\u0633\u062a\u200c\u0634\u062f\u0647\u200c\u0627\u0633\u062a\u060c \u0634\u0645\u0627 \u0627\u062d\u062a\u0645\u0627\u0644\u0627\u064b \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0627\u0632 Tools -> Fix Enconding & Reload \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc UTF-8 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f. \u0648\u06af\u0631\u0646\u0647\u060c \u0634\u0645\u0627 \u0645\u0645\u06a9\u0646\u200c\u0627\u0633\u062a \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u062d\u0630\u0641 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0646\u0627\u0645\u0646\u0627\u0633\u0628 \u0648 \u0628\u0631\u0627\u06cc \u0631\u0647\u0627\u06cc\u06cc \u0627\u0632 \u0627\u06cc\u0646 \u0627\u062e\u0637\u0627\u0631 \u0634\u0648\u06cc\u062f.
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f0\u06f0\u06f1\u06f9\u060c \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 Ethernet \u0628\u0647 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 SPI \u0648\u0627\u0628\u0633\u062a\u0647 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n\u0634\u0645\u0627 \u0638\u0627\u0647\u0631\u0627\u064b \u0627\u0632 \u0622\u0646 \u06cc\u0627 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 \u062f\u06cc\u06af\u0631\u06cc \u06a9\u0647 \u0628\u0647 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 SPI \u0648\u0627\u0628\u0633\u062a\u0647\u200c\u0627\u0633\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u062f.\n\n
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647 'BYTE' \u062f\u06cc\u06af\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06af\u0631\u062f\u062f.\n\u0644\u0637\u0641\u0627\u064b \u0627\u0632 Serial.write() \u0628\u0647 \u062c\u0627\u06cc \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.\n\n
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u06a9\u0644\u0627\u0633 Client \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 Ethernet \u0628\u0647 EthernetClient \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u06a9\u0644\u0627\u0633 \u0633\u0631\u0648\u0631 \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 Ethernet \u0628\u0647 EthernetServer \u062a\u063a\u06cc\u06cc\u0631\u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u062a\u0627\u0628\u0639 Wire.receive() \u0628\u0647 Wire.read() \u0628\u0631\u0627\u06cc \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u06cc\u0634\u062a\u0631 \u0628\u0627 \u0633\u0627\u06cc\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u062a\u0627\u0628\u0639 Wire.send() \u0628\u0647 Wire.write() \u0628\u0631\u0627\u06cc \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u0633\u0627\u06cc\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
!baud=
-#: Preferences.java:373
+#: Preferences.java:389
compilation\ =\u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u200c\u0646\u0645\u0648\u062f\u0646
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
+#: Sketch.java:540
createNewFile()\ returned\ false=createNewFile() \u0645\u0642\u062f\u0627\u0631 \u0641\u0627\u0644\u0633 \u0628\u0631\u06af\u0631\u062f\u0627\u0646\u062f
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
+#: Base.java:2090
environment=\u0645\u062d\u06cc\u0637
-#: Editor.java:1094
+#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
@@ -1177,54 +1235,51 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u062f\u0631\u0646\u0638\u0631 \u0646\u06af\u0631\u0641\u062a\u0646 \u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0642\u0644\u0645 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 {0}
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
name\ is\ null=name \u062a\u0647\u06cc \u0627\u0633\u062a
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u0628\u0627\u0641\u0631 \u0628\u0627\u06cc\u062a readBytesUntil() \u0628\u0631\u0627\u06cc \u0628\u06cc\u0634 \u0627\u0632 {0} \u0628\u0627\u06cc\u062a \u0648 \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u0654 {1} \u0628\u0633\u06cc\u0627\u0631 \u06a9\u0648\u0686\u06a9 \u0627\u0633\u062a
-#: Sketch.java:651
+#: Sketch.java:647
removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u062e\u0637\u0627\u06cc \u062f\u0631\u0648\u0646\u06cc.. \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u06a9\u062f \u0631\u0627 \u06cc\u0627\u0641\u062a
-#: Editor.java:923
+#: Editor.java:932
serialMenu\ is\ null=serialMenu \u062a\u0647\u06cc \u0627\u0633\u062a
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 {0} \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a \u06cc\u0627 \u0628\u0631\u062f \u0634\u0645\u0627 \u0645\u062a\u0635\u0644 \u0646\u0634\u062f\u0647\u200c\u0627\u0633\u062a
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
+#: Preferences.java:391
upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc
-#: Editor.java:373
+#: Editor.java:380
#, java-format
{0}\ files\ added\ to\ the\ sketch.={0} \u067e\u0631\u0648\u0646\u062f\u0647 \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0634\u062f.
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
{0}\ returned\ {1}={0}\u060c{1} \u0631\u0627 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
{0}\ |\ Arduino\ {1}={0} | \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 {1}
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_fi.po b/app/src/processing/app/i18n/Resources_fi.po
new file mode 100644
index 000000000..4bd9ccec8
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_fi.po
@@ -0,0 +1,1857 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+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: 2013-09-11 16:40+0000\n"
+"Last-Translator: Jaakko_Fagerlund Closing the last open sketch will quit Arduino."
+msgstr " Viimeisen sketsin sulkeminen sulkee Arduinon."
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr " Mikäli et tallenna, muutokset häviävät."
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr "Tiedosto nimeltä \"{0}\" on jo paikassa \"{1}\""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr "Kansio \"{0}\" on jo olemassa. Ei voi avata sketsiä."
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr "Kirjasto {0} on jo olemassa"
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr "Arduinosta on uusi versio, haluatko käydä\nArduinon lataussivustolla?"
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr "Ongelma havaittu yrittäessä avata konsolin\ntulostetiedostoja."
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr "Arduinosta"
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr "Lisää tiedosto..."
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Lisää kirjasto..."
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr "Virhe korjatessa tiedoston koodausta.\nÄlä tallenna tätä sketsiä, sillä se voi ylikirjoittaa vanhan\nversion. Valitse avaa sketsi uudelleen ja yritä uudelleen.\n"
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr "Tuntematon virhe ladattaessa alustakohtaista\nkoodia koneellesi."
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr "arabia"
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr "aragoni"
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr "Arkistoi sketsi"
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr "Arkistoi sketsi nimellä:"
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr "Sketsin arkistointi peruttu."
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr "Sketsin arkistointi peruttu, koska sketsiä\nei voitu tallentaa kunnolla."
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr "Arduino ARM (32 bittinen) kortit"
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr "Arduino AVR kortit"
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr "Arduino ei voi käynnistyä, koska\nse ei voi luoda kansiota asetuksillesi."
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr "Arduino ei voi käynnistyä, koska se ei voinut\nluoda kansiota sketsikirjallesi."
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr "Arduino vaatii täydellisen JDK:n (ei pelkkää JRE:tä)\ntoimiakseen. Ole hyvä ja asenna JDK 1.5 tai uudempi.\nLisätietoja löytyy oppaasta."
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr "Arduino: "
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr "Oletko varma että haluat poistaa \"{0}\"?"
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr "Oletko varma että haluat poistaa tämän sketsin?"
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr "Armenia"
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr "Asturia"
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr "Jäsennin"
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr "Jäsennys peruttu: liian monta vasenta aaltosulkua."
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr "Jäsennys peruttu: liian monta vasenta kaarisulkua."
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr "Jäsennys peruttu: liian monta oikeaa aaltosulkua."
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr "Jäsennys peruttu: liian monta oikeaa kaarisulkua."
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr "Jäsennys valmis."
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr "Assosioi .ino tiedostot Arduinoon"
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr "Vieritys"
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr "Paha virhe rivillä: {0}"
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr "Väärä tiedosto valittu"
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr "Belarusia"
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr "Kortti"
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr "Kortti {0}:{1}:{2} ei määrittele ''build.board'' asetusta. Automaattisesti asetettu: {3}"
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr "Kortti:"
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr "Bosnia"
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr "NL & CR"
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr "Selaa"
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr "Rakennuskansio hävisi tai sinne ei voitu kirjoittaa"
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr "Bulgaria"
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr "Burma (Myanmar)"
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr "Polta käynnistyslataaja"
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr "Poltetaan käynnistinlataajaa I/O levylle (tässä voi mennä hetki)..."
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr "Lähdesketsiä ei voi avata!"
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr "Kanadan ranska"
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr "Ei voi uudelleennimetä"
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr "CR"
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr "katalania"
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr "Tarkista päivitykset käynnistyessä"
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr "Kiina (Kiina)"
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr "Kiina (Hong Kong)"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr "Kiina (Taiwan)"
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr "Kiina (Taiwan) (Big5)"
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr "kiina (yksinkertaistettu)"
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr "kiina (perinteinen)"
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr "Sulje"
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr "Kommentointi päälle/pois"
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr "Kääntäjävirhe, lähetä koodisi {0}"
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr "Käännetään sketsiä..."
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr "Konsolivirhe"
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr "Kopioi"
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr "Kopioi HTML:nä"
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr "Kopiointivirhe"
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr "Kopioi forumille"
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr "''{0}'' ei voitu lisätä sketsiin."
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr "Ei voitu kopioida oikeaan paikkaan."
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr "Sketsikansiota ei voitu luoda."
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr "Sketsiä ei voitu luoda."
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr "\"{0}\" ei voitu poistaa."
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr "Ei voitu poistaa olemassa olevaa tiedostoa ''{0}''."
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr "{0} ei voitu poistaa"
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr "boards.txt ei löydetty kohteesta {0}. Onko se pre-1.5?"
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr "Työkalua {0} ei löytynyt"
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr "Työkalua {0} ei löytynyt paketista {1}"
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr "Ei voitu avata URL:ia\n{0}"
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr "Ei voitu avata kansiota\n{0}"
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr "Sketsiä ei voitu tallentaa uudelleen kunnolla. Voit olla hankaluuksissa,\njoten on parasta kopioida ja liittää koodi johonkin toiseen editoriin."
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr "Sketsiä ei voitu tallentaa uudelleen"
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr "Väriteeman asetuksia ei voitu lukea.\nAsenna Processing uudelleen."
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr "Oletusasetuksia ei voitu lukea.\nAsenna Arduino uudelleen."
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr "Ei voitu lukea asetuksia paikasta {0}"
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr "Ei voitu poistaa vanhaa versiota {0}"
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr "\"{0}\" ei voitu nimetä \"{1}\""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr "Sketsiä ei voitu uudelleennimetä. (0)"
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr "Sketsiä ei voitu uudelleennimetä. (1)"
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr "Sketsiä ei voitu uudelleennimetä. (2)"
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr "{0} ei voitu korvata"
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr "Sketsin arkistointi ei onnistunut"
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr "Ohjelman kokoa ei voitu määritellä: {0}"
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr "Eipä onnistunut"
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr "Valitusta portista ei löytynyt levyä. Tarkista portin valinta. Jos se on oikein, koita painaa levyn resetointia lähetyksen käynnistämisen jälkeen."
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr "Kroatia"
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr "Leikkaa"
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr "Tsekki"
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr "tanska"
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr "Vähennä sisennystä"
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr "Poista"
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr "Laite ei vastaa, tarkista sarjaportin oikeellisuus tai resetoi levysi juuriennen lähetystä"
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr "Hylkää muutokset ja avaa sketsi uudelleen?"
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr "Älä tallenna"
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr "Tallennettu."
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr "Käynnistinlataaja poltettu."
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr "Kääntäminen valmis."
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr "Tulostettu."
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr "Lähetetty."
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr "hollanti"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr "Hollanti (Alankomaat)"
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr "Muokkaa"
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr "Editon fonttikoko: "
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr "Editorin kieli: "
+
+#: Preferences.java:92
+msgid "English"
+msgstr "englanti"
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr "Englanti (Iso-Britannia)"
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr "Ympäristö"
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr "Virhe"
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr "Virhe lisätessä tiedostoa"
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr "Virhe käännettäessä."
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr "Virhe noudettaessa Arduinon datakansiota"
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr "Virhe Serial.{0}() sisällä"
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr "Virhe kirjastoja ladatessa"
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr "Virhe ladatessa {0}"
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr "Virhe avatessa sarjaporttia ''{0}''."
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr "Virhe luettaessa asetuksia"
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr "Virhe luettaessa asetustiedostoa. Ole hyvä ja poista (tai nimeä\nuudelleen) {0} ja käynnistä Arduino uudelleen."
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr "Virhe käynnistettäessä löytömenetelmää:"
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr "Ongelma kokeillessa sarjaporttia ''{0}''."
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr "Virhe polttaessa käynnistinlataajaa."
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr "Virhe käynnistyslataajaa poltettaessa: puuttuva '{0}' asetusparametri"
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr "Virhe ladatessa koodia {0}"
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr "Virhe tulostaessa."
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr "Virhe lähettäessä: puuttuva '{0}' asetusparametri"
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr "eesti"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr "Estonia (Estonia)"
+
+#: Editor.java:516
+msgid "Examples"
+msgstr "Esimerkit"
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr "Vienti peruttu, muutokset tulee tallentaa ensin."
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr "FAQ.html"
+
+#: Editor.java:491
+msgid "File"
+msgstr "Tiedosto"
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr "filippiini"
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr "Etsi"
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr "Etsi seuraava"
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr "Etsi edellinen"
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr "Etsi oppaasta"
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr "Etsi..."
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr "Etsi:"
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr "Suomi"
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr "Korjaa koodaus ja avaa uudelleen"
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr "Tietoa kirjastojen asentamisesta: http://arduino.cc/en/Guide/Libraries\n"
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr "Pakotettu resetointi käyttäen 1200 bps avausta/sulkua sarjaportissa."
+
+#: Preferences.java:95
+msgid "French"
+msgstr "ranska"
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr "Usein kysytyt kysymykset"
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr "galego"
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr "Georgia"
+
+#: Preferences.java:97
+msgid "German"
+msgstr "saksa"
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr "Aloittaminen"
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr "Globaalit muuttujat käyttävät {0} tavua ({2}%%) dynaamista muistia, jättäen {3} tavua paikallisille muuttujille. Maksimi on {1} tavua."
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr "Globaalit muuttujat käyttävät {0} tavua dynaamista muistia."
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr "kreikka"
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr "Guide_Environment.html"
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr "Guide_MacOSX.html"
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr "Guide_Troubleshooting.html"
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr "Guide_Windows.html"
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr "Heprea"
+
+#: Editor.java:1015
+msgid "Help"
+msgstr "Apua"
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr "hindi"
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr "Mitäpä jos tallentaisit sketsin ennen \nkuin uudelleennimeät?"
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr "Kuinka Borgimaista"
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr "unkari"
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr "Sivuuta koko"
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr "Sivuutetaan väärän niminen kirjasto"
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr "Sivuutetaan väärän niminen sketsi."
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr "Tuo kirjasto..."
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr "Arduino 1.0:ssa, oletustiedostopääte on muuttunut .pde -> .ino. Uudet sketsit (myös \"Tallenna nimellä\" tallennetut) käyttävät uutta päätettä. Olemassaolevien sketsien pääte muutetaan tallennettaessa, mutta voit poistaa tämän toiminnon käytöstä asetuksista.\n\nTallenna sketsi ja päivitä tiedostopääte?"
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr "Lisää sisennystä"
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr "indonesia"
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr "Virheellinen kirjasto paikassa {0}: {1}"
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr "italia"
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr "japani"
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr "korea"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "latvia"
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr "Kirjasto lisätty. Tarkista \"Tuo kirjasto\" valikko"
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr "liettua"
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr "Muisti vähissä, epävakausongelmia voi ilmetä"
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr "marathi"
+
+#: Base.java:2112
+msgid "Message"
+msgstr "Viesti"
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr "*/ puuttuu /*kommentin*/ lopusta"
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr "Lisää asetuksia voi muokata suoraan tiedostosta"
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr "Siirretään"
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr "Uuden tiedoston nimi:"
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr "Nepali"
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr "Verkkolähetys ohjelmoijaa käyttäen ei ole tuettu."
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr "Uusi"
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr "Uusi editointi-ikkuna"
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr "Uusi välilehti"
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr "NL"
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr "Seuraava välilehti"
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr "Ei"
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr "Levyä ei valittu - ole hyvä ja valitse Työkalut -> Levy."
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr "Jäsennin ei vaatinut muutoksia."
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr "Sketsiin ei lisätty tiedostoja."
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr "Käynnistintä ei saatavilla"
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr "Ei rivipäätettä"
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr "Ei kun oikeesti, nyt haukkaan raitista ilmaa."
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr "Opasta ei löydy sanalle \"{0}\""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr "Ei löytynyt määriteltyjä ytimiä! Poistutaan..."
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr "Validia laitteistokonfiguraatiota ei löytynyt kansiosta {0}."
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr "Pikku virhe asetettaessa ulkonäköä."
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr "Ehei"
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr "Norjan bokmäl"
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr "Ei tarpeeksi muistia; katso http://www.arduino.cc/en/Guide/Troubleshooting#size vinkeiksi muistimäärän vapauttamiseksi."
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr "OK"
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr "Yksi tiedosto lisätty sketsiin."
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr "Avaa"
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr "Avaa URL"
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr "Avaa Arduino sketsi..."
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr "Avaa toisessa ikkunassa"
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr "Avaa..."
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr "Sivun asetukset"
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr "Salasana:"
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr "Liitä"
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr "persia"
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr "Ole hyvä ja tuo SPI kirjasto valikosta Sketsi -> Tuo kirjasto."
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr "Ole hyvä ja asenna JDK 1.5 tai uudempi."
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr "puola"
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr "Portti"
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr "Portugali"
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr "Portugali (Brasilia)"
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr "Portugali (Portugali)"
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr "Asetukset"
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr "Edellinen"
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr "Edellinen välilehti"
+
+#: Editor.java:571
+msgid "Print"
+msgstr "Tulosta"
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr "Tulostus peruttu."
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr "Tulostetaan..."
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr "Ongelma avatessa kansiota"
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr "Ongelma avatessa URL:ia"
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr "Ongelma asetettassa kehitysalustaa."
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr "Ongelma avatessa kansiota /www/sd"
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr "Ongelma avatessa tiedostoja kansiosta"
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr "Ongelma noudettaessa datakansiota"
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr "Ongelma siirrettäessä {0} rakennuskansioon"
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr "Ongelma lähetettäessä levylle. Katsohttp://www.arduino.cc/en/Guide/Troubleshooting#upload ratkaisuiksi."
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr "Ongelma nimettäessä uudelleen"
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr "Processing voi avata vain omia sketsejään ja\nmuita tiedostoja, joiden pääte on .ino tai .pde"
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr "Prosessori"
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr "Ohjelmoija"
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr "Lopeta"
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr "Tee uudelleen"
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr "Opas"
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr "Nimeä uudelleen"
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr "Korvaa"
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr "Etsi ja korvaa"
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr "Korvaa kaikki"
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr "Korvaa olemassaoleva versio {0}?"
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr "Korvaa tällä:"
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr "romania"
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr "venäjä"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr "Tallenna"
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr "Tallenna nimellä..."
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr "Tallennus peruttu."
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr "Tallenna muutokset ennen vientiä?"
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr "Tallenna \"{0}\" muutokset?"
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr "Tallenna sketsikansio nimellä..."
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr "Tallennetaan..."
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr "Valitse (tai luo uusi) kansio sketseille..."
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr "Valitse kaikki"
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr "Valitse ZIP tiedosto tai kansio, jossa haluamasi kirjasto sijaitsee"
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr "Valitse kuva- tai datatiedosto sketsiisi kopioitavaksi"
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr "Valitse uusi sijainti sketsikirjalle"
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr "Valittu kortti vaatii '{0}' ytimen (ei asennettu)."
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr "Lähetä"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr "Sarjamonitori"
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr "Sarjaportti ''{0}'' on jo käytössä. Sulje kaikki ohjelmat jotka käyttävät sitä."
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr "Sarjaportti ''{0}'' on jo käytössä. Sulje kaikki ohjelmat jotka käyttävät sitä."
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr "Sarjaporttia ''{0}'' ei löydy. Valitsitko oikean valikosta Työkalut -> Sarjaportti?"
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr "Sarjaporttia {0} ei löydy.\nKokeile lähettämistä toisella sarjaportilla?"
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr "Asetusongelma"
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr "Näytä sketsikansio"
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr "Näytä yksityiskohtaiset tiedot käännettäessä"
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr "Näytä tarkemmat tiedot: "
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr "Sketsi"
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr "Sketsi hävisi"
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr "Sketsiä ei ole olemassa"
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr "Sketsi on vain luku"
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr "Nimeämätön sketsi"
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr "Sketsi on vain luku"
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr "Sketsi liian iso - katso pienennysohjeita http://www.arduino.cc/en/Guide/Troubleshooting#size"
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr "Sketsi käyttää {0} tavua ({2}%%) ohjelmamuistia. Maksimi on {1} tavua."
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr "Sketsikirja"
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr "Sketsikansio hävisi."
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr "Sketsikirjan sijainti:"
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr "Slovenia"
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr "Jotkin tiedostot on merkitty \"vain luku\", joten\nvalitse jokin toinen sijainti ja tallenna uudelleen."
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr "Jotkin tiedostot on merkitty \"vain luku\", joten\nvalitse jokin toinen sijainti ja tallenna uudelleen."
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr "Valitan, sketsi (tai kansio) nimellä \"{0}\" on jo olemassa."
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr "espanja"
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr "Täydellistä"
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr "Ruotsi"
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr "Järjestelmän oletus"
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr "tamili"
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr "BYTE avainsana ei ole enää tuettu."
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr "Client luokka on nimetty EthernetClient:ksi."
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr "Server luokka on nimetty EthernetServer:ksi."
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr "Udp luokka on nimetty EthernetUdp:ksi."
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr "Virheilmoitus seuraa perästä, mutta Arduinon pitäisi toimia hyvin."
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr "Tiedoston \"{0}\" tulee olla\nsketsikansion \"{1}\" sisällä.\nLuo tämä kansio, siirrä tiedosto ja jatka?"
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr "Kirjastoa \"{0}\" ei voida käyttää.\nKirjaston nimessä saa olla vain kirjaimia ja numeroita.\n(vain ASCII, ei välilyöntiä, eikä numeroa ensimmäisenä)"
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr "Päätiedosto ei voi käyttää päätettä.\n(Ehkä olisi aikaa siirtyä \"oikeaan\"\nohjelmointiympäristöön)"
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr "Nimi ei voi alkaa pisteellä."
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr "Valittua sketsiä ei enää ole olemassa.\nSinun täyty käynnistää Arduino uudelleen\npäivittääksesi sketsivalikon."
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr "Sketsiä \"{0}\" ei voida käyttää.\nSketsin nimessä saa olla vain kirjaimia ja numeroita\n(vain ASCII, ei välilyöntiä eikä numeroa ewnsimmäisenä).\nPäästäksesi eroon tästä ilmoituksesta, poista sketsi\npaikasta{1}"
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr "Sketsikansio on hävinnyt.\nYritetään tallentaa uudelleen samaan paikkaan,\nmutta kaikki muu paitsi koodi häviää."
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr "Sketsin nimeä täytyi muuttaa. Sketsin nimessä ei saa olla muita kuin\nASCII merkkejä ja numeroita (ei saa alkaa numerolla).\nMaksimi pituus on 64 merkkiä."
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr "Sketsikansiota ei enää ole olemassa.\nArduino vaihtaa oletussketsikansioon ja luo\ntarvittaessa uuden. Sen jälkeen Arduino lopettaa\nitsestään puhumisen kolmannessa persoonassa."
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr "Tämä tiedosto on jo kopioitu paikkaan josta\nyrität sitä lisätä."
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr "Tässä raportissa olisi enemmän tietoa"
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr "Tauon paikka"
+
+#: Editor.java:663
+msgid "Tools"
+msgstr "Työkalut"
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr "Vianmääritys"
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr "Turkki"
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr "Anna kortin salasana päästäksesi konsoliin"
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr "Anna kortin salasana ladataksesi uuden sketsin"
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr "Ukraina"
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr "Yhdistäminen ei onnistu: käyttääkö sketsi siltaa?"
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr "Yhdistäminen ei onnistu: kokeillaan uudelleen"
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr "Yhdistäminen ei onnistu: väärä salasana?"
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr "Sarjamonitorin avaus ei onnistu"
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr "Käsittelemätön virhe tyyppiä: {0}"
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr "Kumoa"
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr "Määrittelemätön alusta, käynnistintä ei saatavilla.\nAvataksesi URL:ja tai kansioita, lisää rivi \n\"launcher=/polku/käynnistimeen\" tiedostoon preferences.txt."
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr "Päivitä"
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr "Päivitä sketsien pääte (.pde -> .ino) tallennettaessa"
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr "Lähetä"
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr "Lähetä käyttäen ohjelmoijaa"
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr "Lähetys peruttu."
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr "Lähetys peruutettu"
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr "Lähetetään I/O levylle..."
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr "Lähetetään..."
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr "Etsi valintaa"
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr "Käytä ulkoista editoria"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr "Varmista"
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr "Varmenna / Käännä"
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr "Varmista koodi lähetyksen jälkeen"
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr "Vietnami"
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr "Vieraile Arduino.cc"
+
+#: Base.java:2128
+msgid "Warning"
+msgstr "Varoitus"
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr "Wire.receive() on nimetty Wire.read():ksi."
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr "Wire.send() on nimetty Wire.write() funktioksi."
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr "Jatka lopusta"
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr "Väärä mikrokontrolleri havaittu. Valitsiko okean levyn valikosta Työkalut -> Levy?"
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr "Kyllä"
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr "Et voi huijata minua"
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr "Sinulla ei voi olla samannimistä .cpp tiedostoa kuin sketsisi."
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr "Et voi uudelleennimetä sketsiäsi \"{0}\"\nkoska sketsillä on jo samanniminen .cpp tiedosto."
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr "Et voi tallentaa sketsiäsi nimellä \"{0}\"\nkoska sketsillä on jo samanniminen .cpp tiedosto."
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr "Et voi tallentaa sketsia kansioon kansion\nitsensä sisällä. Tämähän jatkuisi loputtomiin."
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr "Unohdit sketsikirjasi"
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr "Olet painanut {0} mutta mitään ei ole lähetetty. Pitäisikö valita rivipääte?"
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr "Olet saavuttanut automaattisen sketsien nimeämisrajan\ntälle päivälle. Mitäpä jos kävisit vaikka kävelyllä välillä?"
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr "ZIP tiedostot tai kansiot"
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr "ZIP ei sisällä kirjastoa"
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr "\".{0}\" ei ole validi pääte."
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr "\"{0}\" sisältää tuntemattomia merkkejä. Mikäli tämä koodi luotiin vanhemmalla Processing versiolla, valitse Työkalut -> Korjaa koodaus ja avaa uudelleen, jotta sketsi käyttäisi UTF-8 koodausta. Mikäli tämä ei toimi, poista virheelliset merkit käsin päästäksesi eroon tästä varoituksesta."
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr "\nArduinon versiosta 0019 lähtien Ethernet kirjasto vaatii SPI kirjaston.\nNäytät käyttävän sitä tai jotain muuta kirjastoa joka vaatii SPI kirjaston.\n\n"
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr "\nArduinon versiosta 1.0 lähtien BYTE avainsana ei ole enää tuettu.\nOle hyvä ja käytä Serial.write() funktiota sen sijaan.\n\n"
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr "\nArduinon 1.0 versiosta lähtien Client luokka Ethernet kirjastossa on nimetty EthernetClient:ksi.\n\n"
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr "\nArduinon 1.0 versiosta lähtien Server luokka on nimetty EthernetServer:ksi.\n\n"
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr "\nArduinon 1.0 versiosta lähtien Udp luokka Ethernet kirjastossa on nimetty EthernetUdp:ksi.\n\n"
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr "\nArduinon 1.0 versiosta lähtien Wire.receive() funktio on nimetty Wire.read():ksi kirjastojen yhtenäistämiseksi.\n\n"
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr "\nArduinon 1.0 versiosta lähtien Wire.send funktio on nimetty Wire.write():ksi kirjastojen yhtenäistämiseksi.\n\n"
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr "baudia"
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr "kääntäessä"
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr "yhdistetty!"
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr "createNewFile() palautti epätoden"
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr "sallittu Tiedosto > Asetuksissa"
+
+#: Base.java:2090
+msgid "environment"
+msgstr "ympäristö"
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr "http://arduino.cc/"
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr "http://github.com/arduino/Arduino/issues"
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr "http://www.arduino.cc/en/Main/Software"
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr "http://www.arduino.cc/latest.txt"
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr "http://www.arduino.cc/playground/Learning/Linux"
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr "sivuutetaan epäkelpo fonttikoko {0}"
+
+#: Base.java:2080
+msgid "index.html"
+msgstr "index.html"
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr "nimi on tyhjä"
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr "platforms.html"
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr "readBytesUntil() tavupuskuri on liian pieni {0} tavulle, sisältäen merkin {1}"
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr "removeCodE: sisäinen virhe.. koodia ei löytynyt"
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr "serialMenu on tyhjä"
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr "valittua sarjaporttia {0} ei ole olemassa tai levysi ei ole kytketty"
+
+#: Preferences.java:391
+msgid "upload"
+msgstr "lähettäessä"
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr "{0} tiedostoa lisätty sketsiin."
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr "{0} palautti {1}"
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr "{0} | Arduino {1}"
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_fi.properties b/app/src/processing/app/i18n/Resources_fi.properties
new file mode 100644
index 000000000..5d7d1caa1
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_fi.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-11 16\:40+0000\nLast-Translator\: Jaakko_Fagerlund Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Viimeisen sketsin sulkeminen sulkee Arduinon.
+
+#: Editor.java:2053
+\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Mik\u00e4li et tallenna, muutokset h\u00e4vi\u00e4v\u00e4t.
+
+#: Sketch.java:398
+#, java-format
+A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Tiedosto nimelt\u00e4 "{0}" on jo paikassa "{1}"
+
+#: Editor.java:2169
+#, java-format
+A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Kansio "{0}" on jo olemassa. Ei voi avata sketsi\u00e4.
+
+#: Base.java:2690
+#, java-format
+A\ library\ named\ {0}\ already\ exists=Kirjasto {0} on jo olemassa
+
+#: UpdateCheck.java:103
+A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Arduinosta on uusi versio, haluatko k\u00e4yd\u00e4\nArduinon lataussivustolla?
+
+#: EditorConsole.java:153
+A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ongelma havaittu yritt\u00e4ess\u00e4 avata konsolin\ntulostetiedostoja.
+
+#: Editor.java:1116
+About\ Arduino=Arduinosta
+
+#: Editor.java:650
+Add\ File...=Lis\u00e4\u00e4 tiedosto...
+
+#: Base.java:963
+Add\ Library...=Lis\u00e4\u00e4 kirjasto...
+
+#: tools/FixEncoding.java:77
+An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Virhe korjatessa tiedoston koodausta.\n\u00c4l\u00e4 tallenna t\u00e4t\u00e4 sketsi\u00e4, sill\u00e4 se voi ylikirjoittaa vanhan\nversion. Valitse avaa sketsi uudelleen ja yrit\u00e4 uudelleen.\n
+
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Tuntematon virhe ladattaessa alustakohtaista\nkoodia koneellesi.
+
+#: Preferences.java:85
+Arabic=arabia
+
+#: Preferences.java:86
+Aragonese=aragoni
+
+#: tools/Archiver.java:48
+Archive\ Sketch=Arkistoi sketsi
+
+#: tools/Archiver.java:109
+Archive\ sketch\ as\:=Arkistoi sketsi nimell\u00e4\:
+
+#: tools/Archiver.java:139
+Archive\ sketch\ canceled.=Sketsin arkistointi peruttu.
+
+#: tools/Archiver.java:75
+Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Sketsin arkistointi peruttu, koska sketsi\u00e4\nei voitu tallentaa kunnolla.
+
+#: ../../../processing/app/I18n.java:83
+Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32 bittinen) kortit
+
+#: ../../../processing/app/I18n.java:82
+Arduino\ AVR\ Boards=Arduino AVR kortit
+
+#: Base.java:1682
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino ei voi k\u00e4ynnisty\u00e4, koska\nse ei voi luoda kansiota asetuksillesi.
+
+#: Base.java:1889
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino ei voi k\u00e4ynnisty\u00e4, koska se ei voinut\nluoda kansiota sketsikirjallesi.
+
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino vaatii t\u00e4ydellisen JDK\:n (ei pelkk\u00e4\u00e4 JRE\:t\u00e4)\ntoimiakseen. Ole hyv\u00e4 ja asenna JDK 1.5 tai uudempi.\nLis\u00e4tietoja l\u00f6ytyy oppaasta.
+
+#: ../../../processing/app/EditorStatus.java:471
+Arduino\:\ =Arduino\:
+
+#: Sketch.java:588
+#, java-format
+Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Oletko varma ett\u00e4 haluat poistaa "{0}"?
+
+#: Sketch.java:587
+Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Oletko varma ett\u00e4 haluat poistaa t\u00e4m\u00e4n sketsin?
+
+#: ../../../processing/app/Preferences.java:137
+Armenian=Armenia
+
+#: ../../../processing/app/Preferences.java:138
+Asturian=Asturia
+
+#: tools/AutoFormat.java:91
+Auto\ Format=J\u00e4sennin
+
+#: tools/AutoFormat.java:934
+Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=J\u00e4sennys peruttu\: liian monta vasenta aaltosulkua.
+
+#: tools/AutoFormat.java:925
+Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=J\u00e4sennys peruttu\: liian monta vasenta kaarisulkua.
+
+#: tools/AutoFormat.java:931
+Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=J\u00e4sennys peruttu\: liian monta oikeaa aaltosulkua.
+
+#: tools/AutoFormat.java:922
+Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=J\u00e4sennys peruttu\: liian monta oikeaa kaarisulkua.
+
+#: tools/AutoFormat.java:944
+Auto\ Format\ finished.=J\u00e4sennys valmis.
+
+#: Preferences.java:439
+Automatically\ associate\ .ino\ files\ with\ Arduino=Assosioi .ino tiedostot Arduinoon
+
+#: SerialMonitor.java:110
+Autoscroll=Vieritys
+
+#: Editor.java:2619
+#, java-format
+Bad\ error\ line\:\ {0}=Paha virhe rivill\u00e4\: {0}
+
+#: Editor.java:2136
+Bad\ file\ selected=V\u00e4\u00e4r\u00e4 tiedosto valittu
+
+#: ../../../processing/app/Preferences.java:139
+Belarusian=Belarusia
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+Board=Kortti
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Kortti {0}\:{1}\:{2} ei m\u00e4\u00e4rittele ''build.board'' asetusta. Automaattisesti asetettu\: {3}
+
+#: ../../../processing/app/EditorStatus.java:472
+Board\:\ =Kortti\:
+
+#: ../../../processing/app/Preferences.java:140
+Bosnian=Bosnia
+
+#: SerialMonitor.java:112
+Both\ NL\ &\ CR=NL & CR
+
+#: Preferences.java:81
+Browse=Selaa
+
+#: Sketch.java:1392 Sketch.java:1423
+Build\ folder\ disappeared\ or\ could\ not\ be\ written=Rakennuskansio h\u00e4visi tai sinne ei voitu kirjoittaa
+
+#: ../../../processing/app/Preferences.java:80
+Bulgarian=Bulgaria
+
+#: ../../../processing/app/Preferences.java:141
+Burmese\ (Myanmar)=Burma (Myanmar)
+
+#: Editor.java:708
+Burn\ Bootloader=Polta k\u00e4ynnistyslataaja
+
+#: Editor.java:2504
+Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Poltetaan k\u00e4ynnistinlataajaa I/O levylle (t\u00e4ss\u00e4 voi menn\u00e4 hetki)...
+
+#: ../../../processing/app/Base.java:368
+Can't\ open\ source\ sketch\!=L\u00e4hdesketsi\u00e4 ei voi avata\!
+
+#: ../../../processing/app/Preferences.java:92
+Canadian\ French=Kanadan ranska
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+Cancel=Peruuta
+
+#: Sketch.java:455
+Cannot\ Rename=Ei voi uudelleennimet\u00e4
+
+#: SerialMonitor.java:112
+Carriage\ return=CR
+
+#: Preferences.java:87
+Catalan=katalania
+
+#: Preferences.java:419
+Check\ for\ updates\ on\ startup=Tarkista p\u00e4ivitykset k\u00e4ynnistyess\u00e4
+
+#: ../../../processing/app/Preferences.java:142
+Chinese\ (China)=Kiina (Kiina)
+
+#: ../../../processing/app/Preferences.java:142
+Chinese\ (Hong\ Kong)=Kiina (Hong Kong)
+
+#: ../../../processing/app/Preferences.java:144
+Chinese\ (Taiwan)=Kiina (Taiwan)
+
+#: ../../../processing/app/Preferences.java:143
+Chinese\ (Taiwan)\ (Big5)=Kiina (Taiwan) (Big5)
+
+#: Preferences.java:88
+Chinese\ Simplified=kiina (yksinkertaistettu)
+
+#: Preferences.java:89
+Chinese\ Traditional=kiina (perinteinen)
+
+#: Editor.java:521 Editor.java:2024
+Close=Sulje
+
+#: Editor.java:1208 Editor.java:2749
+Comment/Uncomment=Kommentointi p\u00e4\u00e4lle/pois
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=K\u00e4\u00e4nt\u00e4j\u00e4virhe, l\u00e4het\u00e4 koodisi {0}
+
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=K\u00e4\u00e4nnet\u00e4\u00e4n sketsi\u00e4...
+
+#: EditorConsole.java:152
+Console\ Error=Konsolivirhe
+
+#: Editor.java:1157 Editor.java:2707
+Copy=Kopioi
+
+#: Editor.java:1177 Editor.java:2723
+Copy\ as\ HTML=Kopioi HTML\:n\u00e4
+
+#: ../../../processing/app/EditorStatus.java:456
+Copy\ error=Kopiointivirhe
+
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=Kopioi forumille
+
+#: Sketch.java:1089
+#, java-format
+Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}'' ei voitu lis\u00e4t\u00e4 sketsiin.
+
+#: Editor.java:2188
+Could\ not\ copy\ to\ a\ proper\ location.=Ei voitu kopioida oikeaan paikkaan.
+
+#: Editor.java:2179
+Could\ not\ create\ the\ sketch\ folder.=Sketsikansiota ei voitu luoda.
+
+#: Editor.java:2206
+Could\ not\ create\ the\ sketch.=Sketsi\u00e4 ei voitu luoda.
+
+#: Sketch.java:617
+#, java-format
+Could\ not\ delete\ "{0}".="{0}" ei voitu poistaa.
+
+#: Sketch.java:1066
+#, java-format
+Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Ei voitu poistaa olemassa olevaa tiedostoa ''{0}''.
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+Could\ not\ delete\ {0}={0} ei voitu poistaa
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=boards.txt ei l\u00f6ydetty kohteesta {0}. Onko se pre-1.5?
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+Could\ not\ find\ tool\ {0}=Ty\u00f6kalua {0} ei l\u00f6ytynyt
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Ty\u00f6kalua {0} ei l\u00f6ytynyt paketista {1}
+
+#: Base.java:1934
+#, java-format
+Could\ not\ open\ the\ URL\n{0}=Ei voitu avata URL\:ia\n{0}
+
+#: Base.java:1958
+#, java-format
+Could\ not\ open\ the\ folder\n{0}=Ei voitu avata kansiota\n{0}
+
+#: Sketch.java:1769
+Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Sketsi\u00e4 ei voitu tallentaa uudelleen kunnolla. Voit olla hankaluuksissa,\njoten on parasta kopioida ja liitt\u00e4\u00e4 koodi johonkin toiseen editoriin.
+
+#: Sketch.java:1768
+Could\ not\ re-save\ sketch=Sketsi\u00e4 ei voitu tallentaa uudelleen
+
+#: Theme.java:52
+Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=V\u00e4riteeman asetuksia ei voitu lukea.\nAsenna Processing uudelleen.
+
+#: Preferences.java:219
+Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Oletusasetuksia ei voitu lukea.\nAsenna Arduino uudelleen.
+
+#: Preferences.java:258
+#, java-format
+Could\ not\ read\ preferences\ from\ {0}=Ei voitu lukea asetuksia paikasta {0}
+
+#: Base.java:2482
+#, java-format
+Could\ not\ remove\ old\ version\ of\ {0}=Ei voitu poistaa vanhaa versiota {0}
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}" ei voitu nimet\u00e4 "{1}"
+
+#: Sketch.java:475
+Could\ not\ rename\ the\ sketch.\ (0)=Sketsi\u00e4 ei voitu uudelleennimet\u00e4. (0)
+
+#: Sketch.java:496
+Could\ not\ rename\ the\ sketch.\ (1)=Sketsi\u00e4 ei voitu uudelleennimet\u00e4. (1)
+
+#: Sketch.java:503
+Could\ not\ rename\ the\ sketch.\ (2)=Sketsi\u00e4 ei voitu uudelleennimet\u00e4. (2)
+
+#: Base.java:2492
+#, java-format
+Could\ not\ replace\ {0}={0} ei voitu korvata
+
+#: tools/Archiver.java:74
+Couldn't\ archive\ sketch=Sketsin arkistointi ei onnistunut
+
+#: Sketch.java:1647
+Couldn't\ determine\ program\ size\:\ {0}=Ohjelman kokoa ei voitu m\u00e4\u00e4ritell\u00e4\: {0}
+
+#: Sketch.java:616
+Couldn't\ do\ it=Eip\u00e4 onnistunut
+
+#: debug/BasicUploader.java:209
+Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Valitusta portista ei l\u00f6ytynyt levy\u00e4. Tarkista portin valinta. Jos se on oikein, koita painaa levyn resetointia l\u00e4hetyksen k\u00e4ynnist\u00e4misen j\u00e4lkeen.
+
+#: ../../../processing/app/Preferences.java:82
+Croatian=Kroatia
+
+#: Editor.java:1149 Editor.java:2699
+Cut=Leikkaa
+
+#: ../../../processing/app/Preferences.java:83
+Czech=Tsekki
+
+#: Preferences.java:90
+Danish=tanska
+
+#: Editor.java:1224 Editor.java:2765
+Decrease\ Indent=V\u00e4henn\u00e4 sisennyst\u00e4
+
+#: EditorHeader.java:314 Sketch.java:591
+Delete=Poista
+
+#: debug/Uploader.java:199
+Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Laite ei vastaa, tarkista sarjaportin oikeellisuus tai resetoi levysi juuriennen l\u00e4hetyst\u00e4
+
+#: tools/FixEncoding.java:57
+Discard\ all\ changes\ and\ reload\ sketch?=Hylk\u00e4\u00e4 muutokset ja avaa sketsi uudelleen?
+
+#: Editor.java:2064
+Don't\ Save=\u00c4l\u00e4 tallenna
+
+#: Editor.java:2275 Editor.java:2311
+Done\ Saving.=Tallennettu.
+
+#: Editor.java:2510
+Done\ burning\ bootloader.=K\u00e4ynnistinlataaja poltettu.
+
+#: Editor.java:1911 Editor.java:1928
+Done\ compiling.=K\u00e4\u00e4nt\u00e4minen valmis.
+
+#: Editor.java:2564
+Done\ printing.=Tulostettu.
+
+#: Editor.java:2395 Editor.java:2431
+Done\ uploading.=L\u00e4hetetty.
+
+#: Preferences.java:91
+Dutch=hollanti
+
+#: ../../../processing/app/Preferences.java:144
+Dutch\ (Netherlands)=Hollanti (Alankomaat)
+
+#: Editor.java:1130
+Edit=Muokkaa
+
+#: Preferences.java:370
+Editor\ font\ size\:\ =Editon fonttikoko\:
+
+#: Preferences.java:353
+Editor\ language\:\ =Editorin kieli\:
+
+#: Preferences.java:92
+English=englanti
+
+#: ../../../processing/app/Preferences.java:145
+English\ (United\ Kingdom)=Englanti (Iso-Britannia)
+
+#: Editor.java:1062
+Environment=Ymp\u00e4rist\u00f6
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=Virhe
+
+#: Sketch.java:1065 Sketch.java:1088
+Error\ adding\ file=Virhe lis\u00e4tess\u00e4 tiedostoa
+
+#: debug/Compiler.java:369
+Error\ compiling.=Virhe k\u00e4\u00e4nnett\u00e4ess\u00e4.
+
+#: Base.java:1674
+Error\ getting\ the\ Arduino\ data\ folder.=Virhe noudettaessa Arduinon datakansiota
+
+#: Serial.java:593
+#, java-format
+Error\ inside\ Serial.{0}()=Virhe Serial.{0}() sis\u00e4ll\u00e4
+
+#: ../../../processing/app/Base.java:1232
+Error\ loading\ libraries=Virhe kirjastoja ladatessa
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+Error\ loading\ {0}=Virhe ladatessa {0}
+
+#: Serial.java:181
+#, java-format
+Error\ opening\ serial\ port\ ''{0}''.=Virhe avatessa sarjaporttia ''{0}''.
+
+#: Preferences.java:277
+Error\ reading\ preferences=Virhe luettaessa asetuksia
+
+#: Preferences.java:279
+#, java-format
+Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Virhe luettaessa asetustiedostoa. Ole hyv\u00e4 ja poista (tai nime\u00e4\nuudelleen) {0} ja k\u00e4ynnist\u00e4 Arduino uudelleen.
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+Error\ starting\ discovery\ method\:\ =Virhe k\u00e4ynnistett\u00e4ess\u00e4 l\u00f6yt\u00f6menetelm\u00e4\u00e4\:
+
+#: Serial.java:125
+#, java-format
+Error\ touching\ serial\ port\ ''{0}''.=Ongelma kokeillessa sarjaporttia ''{0}''.
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+Error\ while\ burning\ bootloader.=Virhe polttaessa k\u00e4ynnistinlataajaa.
+
+#: ../../../processing/app/Editor.java:2555
+Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Virhe k\u00e4ynnistyslataajaa poltettaessa\: puuttuva '{0}' asetusparametri
+
+#: SketchCode.java:83
+#, java-format
+Error\ while\ loading\ code\ {0}=Virhe ladatessa koodia {0}
+
+#: Editor.java:2567
+Error\ while\ printing.=Virhe tulostaessa.
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Virhe l\u00e4hett\u00e4ess\u00e4\: puuttuva '{0}' asetusparametri
+
+#: Preferences.java:93
+Estonian=eesti
+
+#: ../../../processing/app/Preferences.java:146
+Estonian\ (Estonia)=Estonia (Estonia)
+
+#: Editor.java:516
+Examples=Esimerkit
+
+#: Editor.java:2482
+Export\ canceled,\ changes\ must\ first\ be\ saved.=Vienti peruttu, muutokset tulee tallentaa ensin.
+
+#: Base.java:2100
+FAQ.html=FAQ.html
+
+#: Editor.java:491
+File=Tiedosto
+
+#: Preferences.java:94
+Filipino=filippiini
+
+#: FindReplace.java:124 FindReplace.java:127
+Find=Etsi
+
+#: Editor.java:1249
+Find\ Next=Etsi seuraava
+
+#: Editor.java:1259
+Find\ Previous=Etsi edellinen
+
+#: Editor.java:1086 Editor.java:2775
+Find\ in\ Reference=Etsi oppaasta
+
+#: Editor.java:1234
+Find...=Etsi...
+
+#: FindReplace.java:80
+Find\:=Etsi\:
+
+#: ../../../processing/app/Preferences.java:147
+Finnish=Suomi
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+Fix\ Encoding\ &\ Reload=Korjaa koodaus ja avaa uudelleen
+
+#: Base.java:1851
+For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Tietoa kirjastojen asentamisesta\: http\://arduino.cc/en/Guide/Libraries\n
+
+#: debug/BasicUploader.java:80
+Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Pakotettu resetointi k\u00e4ytt\u00e4en 1200 bps avausta/sulkua sarjaportissa.
+
+#: Preferences.java:95
+French=ranska
+
+#: Editor.java:1097
+Frequently\ Asked\ Questions=Usein kysytyt kysymykset
+
+#: Preferences.java:96
+Galician=galego
+
+#: ../../../processing/app/Preferences.java:94
+Georgian=Georgia
+
+#: Preferences.java:97
+German=saksa
+
+#: Editor.java:1054
+Getting\ Started=Aloittaminen
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=Globaalit muuttujat k\u00e4ytt\u00e4v\u00e4t {0} tavua ({2}%%) dynaamista muistia, j\u00e4tt\u00e4en {3} tavua paikallisille muuttujille. Maksimi on {1} tavua.
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globaalit muuttujat k\u00e4ytt\u00e4v\u00e4t {0} tavua dynaamista muistia.
+
+#: Preferences.java:98
+Greek=kreikka
+
+#: Base.java:2085
+Guide_Environment.html=Guide_Environment.html
+
+#: Base.java:2071
+Guide_MacOSX.html=Guide_MacOSX.html
+
+#: Base.java:2095
+Guide_Troubleshooting.html=Guide_Troubleshooting.html
+
+#: Base.java:2073
+Guide_Windows.html=Guide_Windows.html
+
+#: ../../../processing/app/Preferences.java:95
+Hebrew=Heprea
+
+#: Editor.java:1015
+Help=Apua
+
+#: Preferences.java:99
+Hindi=hindi
+
+#: Sketch.java:295
+How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Mit\u00e4p\u00e4 jos tallentaisit sketsin ennen \nkuin uudelleennime\u00e4t?
+
+#: Sketch.java:882
+How\ very\ Borges\ of\ you=Kuinka Borgimaista
+
+#: Preferences.java:100
+Hungarian=unkari
+
+#: FindReplace.java:96
+Ignore\ Case=Sivuuta koko
+
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Sivuutetaan v\u00e4\u00e4r\u00e4n niminen kirjasto
+
+#: Base.java:1436
+Ignoring\ sketch\ with\ bad\ name=Sivuutetaan v\u00e4\u00e4r\u00e4n niminen sketsi.
+
+#: Editor.java:636
+Import\ Library...=Tuo kirjasto...
+
+#: ../../../processing/app/Sketch.java:736
+In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=Arduino 1.0\:ssa, oletustiedostop\u00e4\u00e4te on muuttunut .pde -> .ino. Uudet sketsit (my\u00f6s "Tallenna nimell\u00e4" tallennetut) k\u00e4ytt\u00e4v\u00e4t uutta p\u00e4\u00e4tett\u00e4. Olemassaolevien sketsien p\u00e4\u00e4te muutetaan tallennettaessa, mutta voit poistaa t\u00e4m\u00e4n toiminnon k\u00e4yt\u00f6st\u00e4 asetuksista.\n\nTallenna sketsi ja p\u00e4ivit\u00e4 tiedostop\u00e4\u00e4te?
+
+#: Editor.java:1216 Editor.java:2757
+Increase\ Indent=Lis\u00e4\u00e4 sisennyst\u00e4
+
+#: Preferences.java:101
+Indonesian=indonesia
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+Invalid\ library\ found\ in\ {0}\:\ {1}=Virheellinen kirjasto paikassa {0}\: {1}
+
+#: Preferences.java:102
+Italian=italia
+
+#: Preferences.java:103
+Japanese=japani
+
+#: Preferences.java:104
+Korean=korea
+
+#: Preferences.java:105
+Latvian=latvia
+
+#: Base.java:2699
+Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Kirjasto lis\u00e4tty. Tarkista "Tuo kirjasto" valikko
+
+#: Preferences.java:106
+Lithuaninan=liettua
+
+#: ../../../processing/app/Sketch.java:1660
+Low\ memory\ available,\ stability\ problems\ may\ occur=Muisti v\u00e4hiss\u00e4, ep\u00e4vakausongelmia voi ilmet\u00e4
+
+#: Preferences.java:107
+Marathi=marathi
+
+#: Base.java:2112
+Message=Viesti
+
+#: Sketch.java:1712
+Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=*/ puuttuu /*kommentin*/ lopusta
+
+#: Preferences.java:449
+More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Lis\u00e4\u00e4 asetuksia voi muokata suoraan tiedostosta
+
+#: Editor.java:2156
+Moving=Siirret\u00e4\u00e4n
+
+#: Sketch.java:282
+Name\ for\ new\ file\:=Uuden tiedoston nimi\:
+
+#: ../../../processing/app/Preferences.java:149
+Nepali=Nepali
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+Network\ upload\ using\ programmer\ not\ supported=Verkkol\u00e4hetys ohjelmoijaa k\u00e4ytt\u00e4en ei ole tuettu.
+
+#: EditorToolbar.java:41 Editor.java:493
+New=Uusi
+
+#: EditorToolbar.java:46
+New\ Editor\ Window=Uusi editointi-ikkuna
+
+#: EditorHeader.java:292
+New\ Tab=Uusi v\u00e4lilehti
+
+#: SerialMonitor.java:112
+Newline=NL
+
+#: EditorHeader.java:340
+Next\ Tab=Seuraava v\u00e4lilehti
+
+#: Preferences.java:78 UpdateCheck.java:108
+No=Ei
+
+#: debug/Compiler.java:126
+No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Levy\u00e4 ei valittu - ole hyv\u00e4 ja valitse Ty\u00f6kalut -> Levy.
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+No\ changes\ necessary\ for\ Auto\ Format.=J\u00e4sennin ei vaatinut muutoksia.
+
+#: Editor.java:373
+No\ files\ were\ added\ to\ the\ sketch.=Sketsiin ei lis\u00e4tty tiedostoja.
+
+#: Platform.java:167
+No\ launcher\ available=K\u00e4ynnistint\u00e4 ei saatavilla
+
+#: SerialMonitor.java:112
+No\ line\ ending=Ei rivip\u00e4\u00e4tett\u00e4
+
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Ei kun oikeesti, nyt haukkaan raitista ilmaa.
+
+#: Editor.java:1872
+#, java-format
+No\ reference\ available\ for\ "{0}"=Opasta ei l\u00f6ydy sanalle "{0}"
+
+#: ../../../processing/app/Base.java:309
+No\ valid\ configured\ cores\ found\!\ Exiting...=Ei l\u00f6ytynyt m\u00e4\u00e4riteltyj\u00e4 ytimi\u00e4\! Poistutaan...
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Validia laitteistokonfiguraatiota ei l\u00f6ytynyt kansiosta {0}.
+
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Pikku virhe asetettaessa ulkon\u00e4k\u00f6\u00e4.
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+Nope=Ehei
+
+#: ../../../processing/app/Preferences.java:108
+Norwegian\ Bokm\u00e5l=Norjan bokm\u00e4l
+
+#: ../../../processing/app/Sketch.java:1656
+Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Ei tarpeeksi muistia; katso http\://www.arduino.cc/en/Guide/Troubleshooting\#size vinkeiksi muistim\u00e4\u00e4r\u00e4n vapauttamiseksi.
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=OK
+
+#: Sketch.java:992 Editor.java:376
+One\ file\ added\ to\ the\ sketch.=Yksi tiedosto lis\u00e4tty sketsiin.
+
+#: EditorToolbar.java:41
+Open=Avaa
+
+#: Editor.java:2688
+Open\ URL=Avaa URL
+
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=Avaa Arduino sketsi...
+
+#: EditorToolbar.java:46
+Open\ in\ Another\ Window=Avaa toisessa ikkunassa
+
+#: Base.java:903 Editor.java:501
+Open...=Avaa...
+
+#: Editor.java:563
+Page\ Setup=Sivun asetukset
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+Password\:=Salasana\:
+
+#: Editor.java:1189 Editor.java:2731
+Paste=Liit\u00e4
+
+#: Preferences.java:109
+Persian=persia
+
+#: debug/Compiler.java:408
+Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Ole hyv\u00e4 ja tuo SPI kirjasto valikosta Sketsi -> Tuo kirjasto.
+
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=Ole hyv\u00e4 ja asenna JDK 1.5 tai uudempi.
+
+#: Preferences.java:110
+Polish=puola
+
+#: ../../../processing/app/Editor.java:718
+Port=Portti
+
+#: ../../../processing/app/Preferences.java:151
+Portugese=Portugali
+
+#: ../../../processing/app/Preferences.java:127
+Portuguese\ (Brazil)=Portugali (Brasilia)
+
+#: ../../../processing/app/Preferences.java:128
+Portuguese\ (Portugal)=Portugali (Portugali)
+
+#: Preferences.java:295 Editor.java:583
+Preferences=Asetukset
+
+#: FindReplace.java:123 FindReplace.java:128
+Previous=Edellinen
+
+#: EditorHeader.java:326
+Previous\ Tab=Edellinen v\u00e4lilehti
+
+#: Editor.java:571
+Print=Tulosta
+
+#: Editor.java:2571
+Printing\ canceled.=Tulostus peruttu.
+
+#: Editor.java:2547
+Printing...=Tulostetaan...
+
+#: Base.java:1957
+Problem\ Opening\ Folder=Ongelma avatessa kansiota
+
+#: Base.java:1933
+Problem\ Opening\ URL=Ongelma avatessa URL\:ia
+
+#: Base.java:227
+Problem\ Setting\ the\ Platform=Ongelma asetettassa kehitysalustaa.
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+Problem\ accessing\ board\ folder\ /www/sd=Ongelma avatessa kansiota /www/sd
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+Problem\ accessing\ files\ in\ folder\ =Ongelma avatessa tiedostoja kansiosta
+
+#: Base.java:1673
+Problem\ getting\ data\ folder=Ongelma noudettaessa datakansiota
+
+#: Sketch.java:1467
+#, java-format
+Problem\ moving\ {0}\ to\ the\ build\ folder=Ongelma siirrett\u00e4ess\u00e4 {0} rakennuskansioon
+
+#: debug/Uploader.java:209
+Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Ongelma l\u00e4hetett\u00e4ess\u00e4 levylle. Katsohttp\://www.arduino.cc/en/Guide/Troubleshooting\#upload ratkaisuiksi.
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+Problem\ with\ rename=Ongelma nimett\u00e4ess\u00e4 uudelleen
+
+#: Editor.java:2137
+Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing voi avata vain omia sketsej\u00e4\u00e4n ja\nmuita tiedostoja, joiden p\u00e4\u00e4te on .ino tai .pde
+
+#: ../../../processing/app/I18n.java:86
+Processor=Prosessori
+
+#: Editor.java:704
+Programmer=Ohjelmoija
+
+#: Base.java:783 Editor.java:593
+Quit=Lopeta
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+Redo=Tee uudelleen
+
+#: Editor.java:1078
+Reference=Opas
+
+#: EditorHeader.java:300
+Rename=Nime\u00e4 uudelleen
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+Replace=Korvaa
+
+#: FindReplace.java:122 FindReplace.java:129
+Replace\ &\ Find=Etsi ja korvaa
+
+#: FindReplace.java:120 FindReplace.java:131
+Replace\ All=Korvaa kaikki
+
+#: Sketch.java:1043
+#, java-format
+Replace\ the\ existing\ version\ of\ {0}?=Korvaa olemassaoleva versio {0}?
+
+#: FindReplace.java:81
+Replace\ with\:=Korvaa t\u00e4ll\u00e4\:
+
+#: Preferences.java:113
+Romanian=romania
+
+#: Preferences.java:114
+Russian=ven\u00e4j\u00e4
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+Save=Tallenna
+
+#: Editor.java:537
+Save\ As...=Tallenna nimell\u00e4...
+
+#: Editor.java:2317
+Save\ Canceled.=Tallennus peruttu.
+
+#: Editor.java:2467
+Save\ changes\ before\ export?=Tallenna muutokset ennen vienti\u00e4?
+
+#: Editor.java:2020
+#, java-format
+Save\ changes\ to\ "{0}"?\ \ =Tallenna "{0}" muutokset?
+
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=Tallenna sketsikansio nimell\u00e4...
+
+#: Editor.java:2270 Editor.java:2308
+Saving...=Tallennetaan...
+
+#: Base.java:1909
+Select\ (or\ create\ new)\ folder\ for\ sketches...=Valitse (tai luo uusi) kansio sketseille...
+
+#: Editor.java:1198 Editor.java:2739
+Select\ All=Valitse kaikki
+
+#: Base.java:2636
+Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Valitse ZIP tiedosto tai kansio, jossa haluamasi kirjasto sijaitsee
+
+#: Sketch.java:975
+Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Valitse kuva- tai datatiedosto sketsiisi kopioitavaksi
+
+#: Preferences.java:330
+Select\ new\ sketchbook\ location=Valitse uusi sijainti sketsikirjalle
+
+#: ../../../processing/app/debug/Compiler.java:146
+Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Valittu kortti vaatii '{0}' ytimen (ei asennettu).
+
+#: SerialMonitor.java:93
+Send=L\u00e4het\u00e4
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+Serial\ Monitor=Sarjamonitori
+
+#: Serial.java:174
+#, java-format
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Sarjaportti ''{0}'' on jo k\u00e4yt\u00f6ss\u00e4. Sulje kaikki ohjelmat jotka k\u00e4ytt\u00e4v\u00e4t sit\u00e4.
+
+#: Serial.java:121
+#, java-format
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Sarjaportti ''{0}'' on jo k\u00e4yt\u00f6ss\u00e4. Sulje kaikki ohjelmat jotka k\u00e4ytt\u00e4v\u00e4t sit\u00e4.
+
+#: Serial.java:194
+#, java-format
+Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Sarjaporttia ''{0}'' ei l\u00f6ydy. Valitsitko oikean valikosta Ty\u00f6kalut -> Sarjaportti?
+
+#: Editor.java:2343
+#, java-format
+Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Sarjaporttia {0} ei l\u00f6ydy.\nKokeile l\u00e4hett\u00e4mist\u00e4 toisella sarjaportilla?
+
+#: Base.java:1681
+Settings\ issues=Asetusongelma
+
+#: Editor.java:641
+Show\ Sketch\ Folder=N\u00e4yt\u00e4 sketsikansio
+
+#: ../../../processing/app/EditorStatus.java:468
+Show\ verbose\ output\ during\ compilation=N\u00e4yt\u00e4 yksityiskohtaiset tiedot k\u00e4\u00e4nnett\u00e4ess\u00e4
+
+#: Preferences.java:387
+Show\ verbose\ output\ during\:\ =N\u00e4yt\u00e4 tarkemmat tiedot\:
+
+#: Editor.java:607
+Sketch=Sketsi
+
+#: Sketch.java:1754
+Sketch\ Disappeared=Sketsi h\u00e4visi
+
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=Sketsi\u00e4 ei ole olemassa
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+Sketch\ is\ Read-Only=Sketsi on vain luku
+
+#: Sketch.java:294
+Sketch\ is\ Untitled=Nime\u00e4m\u00e4t\u00f6n sketsi
+
+#: Sketch.java:720
+Sketch\ is\ read-only=Sketsi on vain luku
+
+#: Sketch.java:1653
+Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketsi liian iso - katso pienennysohjeita http\://www.arduino.cc/en/Guide/Troubleshooting\#size
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=Sketsi k\u00e4ytt\u00e4\u00e4 {0} tavua ({2}%%) ohjelmamuistia. Maksimi on {1} tavua.
+
+#: Editor.java:510
+Sketchbook=Sketsikirja
+
+#: Base.java:258
+Sketchbook\ folder\ disappeared=Sketsikansio h\u00e4visi.
+
+#: Preferences.java:315
+Sketchbook\ location\:=Sketsikirjan sijainti\:
+
+#: ../../../processing/app/Preferences.java:152
+Slovenian=Slovenia
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Jotkin tiedostot on merkitty "vain luku", joten\nvalitse jokin toinen sijainti ja tallenna uudelleen.
+
+#: Sketch.java:721
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Jotkin tiedostot on merkitty "vain luku", joten\nvalitse jokin toinen sijainti ja tallenna uudelleen.
+
+#: Sketch.java:457
+#, java-format
+Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Valitan, sketsi (tai kansio) nimell\u00e4 "{0}" on jo olemassa.
+
+#: Preferences.java:115
+Spanish=espanja
+
+#: Base.java:540
+Sunshine=T\u00e4ydellist\u00e4
+
+#: ../../../processing/app/Preferences.java:153
+Swedish=Ruotsi
+
+#: Preferences.java:84
+System\ Default=J\u00e4rjestelm\u00e4n oletus
+
+#: Preferences.java:116
+Tamil=tamili
+
+#: debug/Compiler.java:414
+The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=BYTE avainsana ei ole en\u00e4\u00e4 tuettu.
+
+#: debug/Compiler.java:426
+The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client luokka on nimetty EthernetClient\:ksi.
+
+#: debug/Compiler.java:420
+The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server luokka on nimetty EthernetServer\:ksi.
+
+#: debug/Compiler.java:432
+The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp luokka on nimetty EthernetUdp\:ksi.
+
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Virheilmoitus seuraa per\u00e4st\u00e4, mutta Arduinon pit\u00e4isi toimia hyvin.
+
+#: Editor.java:2147
+#, java-format
+The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Tiedoston "{0}" tulee olla\nsketsikansion "{1}" sis\u00e4ll\u00e4.\nLuo t\u00e4m\u00e4 kansio, siirr\u00e4 tiedosto ja jatka?
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Kirjastoa "{0}" ei voida k\u00e4ytt\u00e4\u00e4.\nKirjaston nimess\u00e4 saa olla vain kirjaimia ja numeroita.\n(vain ASCII, ei v\u00e4lily\u00f6nti\u00e4, eik\u00e4 numeroa ensimm\u00e4isen\u00e4)
+
+#: Sketch.java:374
+The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=P\u00e4\u00e4tiedosto ei voi k\u00e4ytt\u00e4\u00e4 p\u00e4\u00e4tett\u00e4.\n(Ehk\u00e4 olisi aikaa siirty\u00e4 "oikeaan"\nohjelmointiymp\u00e4rist\u00f6\u00f6n)
+
+#: Sketch.java:356
+The\ name\ cannot\ start\ with\ a\ period.=Nimi ei voi alkaa pisteell\u00e4.
+
+#: Base.java:1412
+The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Valittua sketsi\u00e4 ei en\u00e4\u00e4 ole olemassa.\nSinun t\u00e4yty k\u00e4ynnist\u00e4\u00e4 Arduino uudelleen\np\u00e4ivitt\u00e4\u00e4ksesi sketsivalikon.
+
+#: Base.java:1430
+#, java-format
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Sketsi\u00e4 "{0}" ei voida k\u00e4ytt\u00e4\u00e4.\nSketsin nimess\u00e4 saa olla vain kirjaimia ja numeroita\n(vain ASCII, ei v\u00e4lily\u00f6nti\u00e4 eik\u00e4 numeroa ewnsimm\u00e4isen\u00e4).\nP\u00e4\u00e4st\u00e4ksesi eroon t\u00e4st\u00e4 ilmoituksesta, poista sketsi\npaikasta{1}
+
+#: Sketch.java:1755
+The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Sketsikansio on h\u00e4vinnyt.\nYritet\u00e4\u00e4n tallentaa uudelleen samaan paikkaan,\nmutta kaikki muu paitsi koodi h\u00e4vi\u00e4\u00e4.
+
+#: Sketch.java:2018
+The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Sketsin nime\u00e4 t\u00e4ytyi muuttaa. Sketsin nimess\u00e4 ei saa olla muita kuin\nASCII merkkej\u00e4 ja numeroita (ei saa alkaa numerolla).\nMaksimi pituus on 64 merkki\u00e4.
+
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Sketsikansiota ei en\u00e4\u00e4 ole olemassa.\nArduino vaihtaa oletussketsikansioon ja luo\ntarvittaessa uuden. Sen j\u00e4lkeen Arduino lopettaa\nitsest\u00e4\u00e4n puhumisen kolmannessa persoonassa.
+
+#: Sketch.java:1075
+This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=T\u00e4m\u00e4 tiedosto on jo kopioitu paikkaan josta\nyrit\u00e4t sit\u00e4 lis\u00e4t\u00e4.
+
+#: ../../../processing/app/EditorStatus.java:467
+This\ report\ would\ have\ more\ information\ with=T\u00e4ss\u00e4 raportissa olisi enemm\u00e4n tietoa
+
+#: Base.java:535
+Time\ for\ a\ Break=Tauon paikka
+
+#: Editor.java:663
+Tools=Ty\u00f6kalut
+
+#: Editor.java:1070
+Troubleshooting=Vianm\u00e4\u00e4ritys
+
+#: ../../../processing/app/Preferences.java:117
+Turkish=Turkki
+
+#: ../../../processing/app/Editor.java:2507
+Type\ board\ password\ to\ access\ its\ console=Anna kortin salasana p\u00e4\u00e4st\u00e4ksesi konsoliin
+
+#: ../../../processing/app/Sketch.java:1673
+Type\ board\ password\ to\ upload\ a\ new\ sketch=Anna kortin salasana ladataksesi uuden sketsin
+
+#: ../../../processing/app/Preferences.java:118
+Ukrainian=Ukraina
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Yhdist\u00e4minen ei onnistu\: k\u00e4ytt\u00e4\u00e4k\u00f6 sketsi siltaa?
+
+#: ../../../processing/app/NetworkMonitor.java:130
+Unable\ to\ connect\:\ retrying=Yhdist\u00e4minen ei onnistu\: kokeillaan uudelleen
+
+#: ../../../processing/app/Editor.java:2526
+Unable\ to\ connect\:\ wrong\ password?=Yhdist\u00e4minen ei onnistu\: v\u00e4\u00e4r\u00e4 salasana?
+
+#: ../../../processing/app/Editor.java:2512
+Unable\ to\ open\ serial\ monitor=Sarjamonitorin avaus ei onnistu
+
+#: Sketch.java:1432
+#, java-format
+Uncaught\ exception\ type\:\ {0}=K\u00e4sittelem\u00e4t\u00f6n virhe tyyppi\u00e4\: {0}
+
+#: Editor.java:1133 Editor.java:1355
+Undo=Kumoa
+
+#: Platform.java:168
+Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=M\u00e4\u00e4rittelem\u00e4t\u00f6n alusta, k\u00e4ynnistint\u00e4 ei saatavilla.\nAvataksesi URL\:ja tai kansioita, lis\u00e4\u00e4 rivi \n"launcher\=/polku/k\u00e4ynnistimeen" tiedostoon preferences.txt.
+
+#: UpdateCheck.java:111
+Update=P\u00e4ivit\u00e4
+
+#: Preferences.java:428
+Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=P\u00e4ivit\u00e4 sketsien p\u00e4\u00e4te (.pde -> .ino) tallennettaessa
+
+#: EditorToolbar.java:41 Editor.java:545
+Upload=L\u00e4het\u00e4
+
+#: EditorToolbar.java:46 Editor.java:553
+Upload\ Using\ Programmer=L\u00e4het\u00e4 k\u00e4ytt\u00e4en ohjelmoijaa
+
+#: Editor.java:2403 Editor.java:2439
+Upload\ canceled.=L\u00e4hetys peruttu.
+
+#: ../../../processing/app/Sketch.java:1678
+Upload\ cancelled=L\u00e4hetys peruutettu
+
+#: Editor.java:2378
+Uploading\ to\ I/O\ Board...=L\u00e4hetet\u00e4\u00e4n I/O levylle...
+
+#: Sketch.java:1622
+Uploading...=L\u00e4hetet\u00e4\u00e4n...
+
+#: Editor.java:1269
+Use\ Selection\ For\ Find=Etsi valintaa
+
+#: Preferences.java:409
+Use\ external\ editor=K\u00e4yt\u00e4 ulkoista editoria
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+Verify=Varmista
+
+#: Editor.java:609
+Verify\ /\ Compile=Varmenna / K\u00e4\u00e4nn\u00e4
+
+#: Preferences.java:400
+Verify\ code\ after\ upload=Varmista koodi l\u00e4hetyksen j\u00e4lkeen
+
+#: ../../../processing/app/Preferences.java:154
+Vietnamese=Vietnami
+
+#: Editor.java:1105
+Visit\ Arduino.cc=Vieraile Arduino.cc
+
+#: Base.java:2128
+Warning=Varoitus
+
+#: debug/Compiler.java:444
+Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() on nimetty Wire.read()\:ksi.
+
+#: debug/Compiler.java:438
+Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() on nimetty Wire.write() funktioksi.
+
+#: FindReplace.java:105
+Wrap\ Around=Jatka lopusta
+
+#: debug/Uploader.java:213
+Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=V\u00e4\u00e4r\u00e4 mikrokontrolleri havaittu. Valitsiko okean levyn valikosta Ty\u00f6kalut -> Levy?
+
+#: Preferences.java:77 UpdateCheck.java:108
+Yes=Kyll\u00e4
+
+#: Sketch.java:1074
+You\ can't\ fool\ me=Et voi huijata minua
+
+#: Sketch.java:411
+You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sinulla ei voi olla samannimist\u00e4 .cpp tiedostoa kuin sketsisi.
+
+#: Sketch.java:421
+You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Et voi uudelleennimet\u00e4 sketsi\u00e4si "{0}"\nkoska sketsill\u00e4 on jo samanniminen .cpp tiedosto.
+
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Et voi tallentaa sketsi\u00e4si nimell\u00e4 "{0}"\nkoska sketsill\u00e4 on jo samanniminen .cpp tiedosto.
+
+#: Sketch.java:883
+You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Et voi tallentaa sketsia kansioon kansion\nitsens\u00e4 sis\u00e4ll\u00e4. T\u00e4m\u00e4h\u00e4n jatkuisi loputtomiin.
+
+#: Base.java:1888
+You\ forgot\ your\ sketchbook=Unohdit sketsikirjasi
+
+#: ../../../processing/app/AbstractMonitor.java:92
+You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=Olet painanut {0} mutta mit\u00e4\u00e4n ei ole l\u00e4hetetty. Pit\u00e4isik\u00f6 valita rivip\u00e4\u00e4te?
+
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Olet saavuttanut automaattisen sketsien nime\u00e4misrajan\nt\u00e4lle p\u00e4iv\u00e4lle. Mit\u00e4p\u00e4 jos k\u00e4visit vaikka k\u00e4velyll\u00e4 v\u00e4lill\u00e4?
+
+#: Base.java:2638
+ZIP\ files\ or\ folders=ZIP tiedostot tai kansiot
+
+#: Base.java:2661
+Zip\ doesn't\ contain\ a\ library=ZIP ei sis\u00e4ll\u00e4 kirjastoa
+
+#: Sketch.java:364
+#, java-format
+".{0}"\ is\ not\ a\ valid\ extension.=".{0}" ei ole validi p\u00e4\u00e4te.
+
+#: SketchCode.java:258
+#, java-format
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sis\u00e4lt\u00e4\u00e4 tuntemattomia merkkej\u00e4. Mik\u00e4li t\u00e4m\u00e4 koodi luotiin vanhemmalla Processing versiolla, valitse Ty\u00f6kalut -> Korjaa koodaus ja avaa uudelleen, jotta sketsi k\u00e4ytt\u00e4isi UTF-8 koodausta. Mik\u00e4li t\u00e4m\u00e4 ei toimi, poista virheelliset merkit k\u00e4sin p\u00e4\u00e4st\u00e4ksesi eroon t\u00e4st\u00e4 varoituksesta.
+
+#: debug/Compiler.java:409
+\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nArduinon versiosta 0019 l\u00e4htien Ethernet kirjasto vaatii SPI kirjaston.\nN\u00e4yt\u00e4t k\u00e4ytt\u00e4v\u00e4n sit\u00e4 tai jotain muuta kirjastoa joka vaatii SPI kirjaston.\n\n
+
+#: debug/Compiler.java:415
+\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nArduinon versiosta 1.0 l\u00e4htien BYTE avainsana ei ole en\u00e4\u00e4 tuettu.\nOle hyv\u00e4 ja k\u00e4yt\u00e4 Serial.write() funktiota sen sijaan.\n\n
+
+#: debug/Compiler.java:427
+\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nArduinon 1.0 versiosta l\u00e4htien Client luokka Ethernet kirjastossa on nimetty EthernetClient\:ksi.\n\n
+
+#: debug/Compiler.java:421
+\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nArduinon 1.0 versiosta l\u00e4htien Server luokka on nimetty EthernetServer\:ksi.\n\n
+
+#: debug/Compiler.java:433
+\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nArduinon 1.0 versiosta l\u00e4htien Udp luokka Ethernet kirjastossa on nimetty EthernetUdp\:ksi.\n\n
+
+#: debug/Compiler.java:445
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nArduinon 1.0 versiosta l\u00e4htien Wire.receive() funktio on nimetty Wire.read()\:ksi kirjastojen yhten\u00e4ist\u00e4miseksi.\n\n
+
+#: debug/Compiler.java:439
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nArduinon 1.0 versiosta l\u00e4htien Wire.send funktio on nimetty Wire.write()\:ksi kirjastojen yhten\u00e4ist\u00e4miseksi.\n\n
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+baud=baudia
+
+#: Preferences.java:389
+compilation\ =k\u00e4\u00e4nt\u00e4ess\u00e4
+
+#: ../../../processing/app/NetworkMonitor.java:111
+connected\!=yhdistetty\!
+
+#: Sketch.java:540
+createNewFile()\ returned\ false=createNewFile() palautti ep\u00e4toden
+
+#: ../../../processing/app/EditorStatus.java:469
+enabled\ in\ File\ >\ Preferences.=sallittu Tiedosto > Asetuksissa
+
+#: Base.java:2090
+environment=ymp\u00e4rist\u00f6
+
+#: Editor.java:1108
+http\://arduino.cc/=http\://arduino.cc/
+
+#: ../../../processing/app/debug/Compiler.java:49
+http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues
+
+#: UpdateCheck.java:118
+http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
+
+#: UpdateCheck.java:53
+http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
+
+#: Base.java:2075
+http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
+
+#: Preferences.java:625
+#, java-format
+ignoring\ invalid\ font\ size\ {0}=sivuutetaan ep\u00e4kelpo fonttikoko {0}
+
+#: Base.java:2080
+index.html=index.html
+
+#: Editor.java:936 Editor.java:943
+name\ is\ null=nimi on tyhj\u00e4
+
+#: Base.java:2090
+platforms.html=platforms.html
+
+#: Serial.java:451
+#, java-format
+readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() tavupuskuri on liian pieni {0} tavulle, sis\u00e4lt\u00e4en merkin {1}
+
+#: Sketch.java:647
+removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCodE\: sis\u00e4inen virhe.. koodia ei l\u00f6ytynyt
+
+#: Editor.java:932
+serialMenu\ is\ null=serialMenu on tyhj\u00e4
+
+#: debug/Uploader.java:195
+#, java-format
+the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=valittua sarjaporttia {0} ei ole olemassa tai levysi ei ole kytketty
+
+#: Preferences.java:391
+upload=l\u00e4hett\u00e4ess\u00e4
+
+#: Editor.java:380
+#, java-format
+{0}\ files\ added\ to\ the\ sketch.={0} tiedostoa lis\u00e4tty sketsiin.
+
+#: debug/Compiler.java:365
+#, java-format
+{0}\ returned\ {1}={0} palautti {1}
+
+#: Editor.java:2213
+#, java-format
+{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+
+#: Editor.java:1874
+#, java-format
+{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_tl.po b/app/src/processing/app/i18n/Resources_fil.po
similarity index 67%
rename from app/src/processing/app/i18n/Resources_tl.po
rename to app/src/processing/app/i18n/Resources_fil.po
index 0c259638e..bdb765750 100644
--- a/app/src/processing/app/i18n/Resources_tl.po
+++ b/app/src/processing/app/i18n/Resources_fil.po
@@ -6,67 +6,64 @@
msgid ""
msgstr ""
-"Project-Id-Version: Bersyon 1.0\n"
+"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: 2012-03-29 10:24-0400\n"
-"Last-Translator: Marc Lester Tan Closing the last open sketch will quit Arduino."
-msgstr ""
-" Ang pagsara ng huling nakabukas na sketch ay magki-quit ng Arduino."
+msgstr " Ang pagsara ng huling nakabukas na sketch ay magki-quit ng Arduino."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
msgstr " Mawawala ang lahat ng ginawa kapag hindi mo I-sesave."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "Mayroon ng file na nagngangalang \"{0}\""
+msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
msgstr "Mayroon nang folder na \"{0}\". Hindi mabuksan ang sketch."
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -75,27 +72,23 @@ msgstr ""
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr ""
-"May bagong bersyon ng Arduino,\n"
-"nais mo bang magpunta sa Arduino download page?"
+msgstr "May bagong bersyon ng Arduino,\nnais mo bang magpunta sa Arduino download page?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr ""
-"May nangyaring problema habang inoopen ang files\n"
-"na gagamitin para mastore ang console output."
+msgstr "May nangyaring problema habang inoopen ang files\nna gagamitin para mastore ang console output."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
msgstr "Tungkol sa Arduino"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
msgstr "Magdagdag ng File..."
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
msgstr ""
@@ -104,24 +97,19 @@ msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"May pagkakamali habang sinusubukang ayusin ang file encoding.\n"
-"Huwag subukang i-save ang sketch na ito dahil maaaring mapatungan\n"
-"ang lumang bersion. Gamitin ang Buksan para buksan muli ang sketch.\n"
+msgstr "May pagkakamali habang sinusubukang ayusin ang file encoding.\nHuwag subukang i-save ang sketch na ito dahil maaaring mapatungan\nang lumang bersion. Gamitin ang Buksan para buksan muli ang sketch.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr ""
-"May hindi alam na error ang nangyari habang niloload ang \n"
-"platform-specific code para sa iyong machine."
+msgstr "May hindi alam na error ang nangyari habang niloload ang \nplatform-specific code para sa iyong machine."
-#: Preferences.java:84
+#: Preferences.java:85
msgid "Arabic"
msgstr ""
-#: Preferences.java:85
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
@@ -141,9 +129,7 @@ msgstr "Nakansela ang pag-archive ng sketch"
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"Nakansela ang pag archive ng sketch sapagkat\n"
-"hindi ito mai-save ng tama."
+msgstr "Nakansela ang pag archive ng sketch sapagkat\nhindi ito mai-save ng tama."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -153,70 +139,71 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"Ayaw gumana ng Arduino sapagkat hindi ito\n"
-"makagawa ng folder kung saan ilalagay ang iyong settings."
+msgstr "Ayaw gumana ng Arduino sapagkat hindi ito\nmakagawa ng folder kung saan ilalagay ang iyong settings."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
-"Ayaw gumana ng Arduino sapagkat hindi ito\n"
-"makagawa ng folder kung saan ilalagay ang iyong sketchbook."
+msgstr "Ayaw gumana ng Arduino sapagkat hindi ito\nmakagawa ng folder kung saan ilalagay ang iyong sketchbook."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr ""
-"Ang Arduino ay nangangailangan ng full JDK (hindi lamang JRE)\n"
-"para gumana. Maaari lamang na maginstall ng JDK 1.5 pataas.\n"
-"Maaaring makakuha ng karagdagang kaalaman sa sanggunian."
+msgstr "Ang Arduino ay nangangailangan ng full JDK (hindi lamang JRE)\npara gumana. Maaari lamang na maginstall ng JDK 1.5 pataas.\nMaaaring makakuha ng karagdagang kaalaman sa sanggunian."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
msgstr "Nais mo bang burahin ang \"{0}\"?"
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
msgstr "Nais mo bang burahin ang sketch na ito?"
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
#: tools/AutoFormat.java:91
msgid "Auto Format"
msgstr "Auto Format"
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
msgid "Auto Format Canceled: Too many left curly braces."
msgstr ""
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
msgid "Auto Format Canceled: Too many left parentheses."
msgstr "Nakansela ang Auto Format: Napakaraming kaliwang panaklong."
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
msgid "Auto Format Canceled: Too many right curly braces."
msgstr "Nakansela ang Auto Format: Napakaraming kanang panaklaw."
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
msgid "Auto Format Canceled: Too many right parentheses."
msgstr "Nakansela ang Auto Format: Napakaraming kanang panaklong."
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
msgstr "Tapos na ang pag Auto Format"
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
msgstr "Kusang iassociate ang .ino files sa Arduino"
@@ -224,44 +211,48 @@ msgstr "Kusang iassociate ang .ino files sa Arduino"
msgid "Autoscroll"
msgstr "Autoscroll"
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
msgstr "May mali sa linya: {0}"
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
msgstr "Mali ang File na napili"
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
msgstr ""
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
msgstr "Board"
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
msgstr "Parehong NL at CR"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
msgstr "Browse"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
msgstr "Nawawala ang build folder o hindi sya masulatan"
@@ -269,11 +260,15 @@ msgstr "Nawawala ang build folder o hindi sya masulatan"
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
msgid "Burn Bootloader"
msgstr "Ilagay ang Bootloader"
-#: Editor.java:2457
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
msgstr "Inilalagay ang bootloader sa I/O Board (Maaring abutin ng isang minuto)..."
@@ -285,12 +280,12 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "Kanselahin"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
msgstr "Hindi maaaring palitan ang pangalan"
@@ -298,36 +293,52 @@ msgstr "Hindi maaaring palitan ang pangalan"
msgid "Carriage return"
msgstr "Carriage return"
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr "Catalan"
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
msgstr "Suriin ang updates tuwing magsisimula"
-#: Preferences.java:87
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
msgid "Chinese Simplified"
msgstr "Chinese Simplified"
-#: Preferences.java:88
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "Isara"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
msgstr "I-Comment/I-Uncomment"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
msgstr "May error sa compiler, Pakisubmit ang code na ito sa {0}"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
msgstr "Kinokompile ang Sketch..."
@@ -335,11 +346,11 @@ msgstr "Kinokompile ang Sketch..."
msgid "Console Error"
msgstr "May error sa console"
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "Kopyahin"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
msgstr "Kopyahin bilang HTML"
@@ -347,38 +358,38 @@ msgstr "Kopyahin bilang HTML"
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
msgstr "Kopyahin para sa Forum"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
msgstr "Hindi maidagdag ang ''{0}'' sa sketch"
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
msgstr "Hindi makopya sa tamang lokasyon"
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
msgstr "Hindi makalikha ng sketch folder."
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
msgstr "Hindi makalikha ng sketch."
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
msgstr "Hindi ko madelete \"{0}\"."
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
msgstr "Hindi mabura ang file na ''{0}''."
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
msgstr "Hindi maalis ang {0}"
@@ -398,33 +409,27 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
-"Hindi mabuksan ang URL\n"
-"{0}"
+msgstr "Hindi mabuksan ang URL\n{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"Hindi mabuksan ang folder\n"
-"{0}"
+msgstr "Hindi mabuksan ang folder\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
-"Hindi mai-resave ng maayos ang sketch. Maaaring malaki na ang iyong problema sa oras na ito,\n"
-"kaya mas mabuti pang icopy-paste mo na ang code mo sa ibang text editor."
+msgstr "Hindi mai-resave ng maayos ang sketch. Maaaring malaki na ang iyong problema sa oras na ito,\nkaya mas mabuti pang icopy-paste mo na ang code mo sa ibang text editor."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
msgstr "Hindi mai-resave ang sketch"
@@ -432,46 +437,42 @@ msgstr "Hindi mai-resave ang sketch"
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr ""
-"Hindi mabasa ang color theme settings.\n"
-"Kinakailangan mong i-reinstall ang Processing."
+msgstr "Hindi mabasa ang color theme settings.\nKinakailangan mong i-reinstall ang Processing."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
-"Hindi mabasa ang default settings.\n"
-"Kinakailangan mong i-reinstall ang Arduino."
+msgstr "Hindi mabasa ang default settings.\nKinakailangan mong i-reinstall ang Arduino."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
msgstr "Hindi mabasa ang mga kagustuhan mula sa {0}"
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
msgstr "Hindi maaalis ang lumang bersyon na {0}"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
msgstr "Hindi mapalitan ang pangalan mula \"{0}\" para maging \"{1}\""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
msgstr "Ayaw mapalitan ang pangalan ng sketch. (0)"
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
msgstr "Hindi mapalitan ang pangalan ng sketch. (1)"
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
msgstr "Hindi mapalitan ang pangalan ng sketch. (2)"
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
msgstr "Hindi mapalitan ang {0}"
@@ -480,15 +481,15 @@ msgstr "Hindi mapalitan ang {0}"
msgid "Couldn't archive sketch"
msgstr "Hindi mai-archive and sketch"
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
msgstr "Hindi malaman ang sukat ng programa: {0}"
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
msgstr "Hindi ko magawa yan"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -499,7 +500,7 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "I-Cut"
@@ -507,97 +508,103 @@ msgstr "I-Cut"
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
msgstr "Danish"
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Bawasan ang Indent"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
msgstr "Alisin"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr ""
-"Hindi tumutugon ang device, siguraduhing tama ang napiling serial port o kaya ay pindutin ang RESET "
-"bago mag export"
+msgstr "Hindi tumutugon ang device, siguraduhing tama ang napiling serial port o kaya ay pindutin ang RESET bago mag export"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
msgstr "Alisin ang lahat ng nagawa at i-reload ang sketch?"
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
msgstr "Huwag I-Save"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
msgstr "Tapos na sa pag save."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
msgstr "Tapos na ang paglagay ng bootloader."
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
msgstr "Tapos na ang pagkokompile."
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
msgstr "Tapos na ang pag print."
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
msgstr "Tapos na ang pagupload."
-#: Preferences.java:90
+#: Preferences.java:91
msgid "Dutch"
msgstr "Dutch"
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
msgid "Edit"
msgstr "Baguhin"
-#: Preferences.java:354
+#: Preferences.java:370
msgid "Editor font size: "
msgstr "Sukat ng font para sa Editor:"
-#: Preferences.java:337
+#: Preferences.java:353
msgid "Editor language: "
msgstr ""
-#: Preferences.java:91
+#: Preferences.java:92
msgid "English"
msgstr "Ingles"
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
msgstr "Environment"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "Mali"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
msgstr "May mali sa pagdagdag ng file"
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
msgstr "May mali sa pagcompile"
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
msgstr "May problema sa pagkuha ng Arduino data folder"
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
msgstr "May mali sa loob ng Serial.{0}()"
@@ -613,34 +620,32 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
msgstr "May mali sa pagbukas ng serial port ''{0}''."
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr "May problema sa pagread ng preferences"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"May problema sa pagbasa ng preferences file. Maaari lamang na i-delete (o ilipat) ang \n"
-"{0} at irestart ang Arduino."
+msgstr "May problema sa pagbasa ng preferences file. Maaari lamang na i-delete (o ilipat) ang \n{0} at irestart ang Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
msgstr "May mali habang naglalagay ng bootloader."
@@ -653,7 +658,7 @@ msgstr ""
msgid "Error while loading code {0}"
msgstr "May mali habang niloload ang code {0}"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
msgstr "May mali habang nagpi-print."
@@ -662,23 +667,27 @@ msgstr "May mali habang nagpi-print."
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
msgstr "Mga Halimbawa"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
msgstr "Nakansela ang pag export, kailangan muna i-save ang mga nagawa."
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
msgstr "File"
@@ -690,19 +699,19 @@ msgstr "Filipino"
msgid "Find"
msgstr "Hanapin"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
msgstr "Hanapin ang Susunod"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
msgstr "Hanapin ang Nauna"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
msgstr "Hanapin sa Sanggunian"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
msgstr "Hanapin..."
@@ -710,30 +719,34 @@ msgstr "Hanapin..."
msgid "Find:"
msgstr "Hanapin:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
msgstr "Itama ang Encoding at I-reload"
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
msgstr "French"
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
msgstr "Mga Karaniwang Tanong"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
msgstr "Galician"
@@ -741,31 +754,43 @@ msgstr "Galician"
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
msgstr "German"
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
msgstr "Mga Patnubay sa Pagsisimula"
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
msgstr "Greek"
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
@@ -773,27 +798,25 @@ msgstr "Guide_Windows.html"
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "Tulong"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"I-save muna ang sketch bago \n"
-"palitan ng pangalan?"
+msgstr "I-save muna ang sketch bago \npalitan ng pangalan?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
msgstr "Napaka Borges mo"
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr "Hungarian"
@@ -801,15 +824,15 @@ msgstr "Hungarian"
msgid "Ignore Case"
msgstr "Ignore Case"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
msgstr "Hindi papansinin ang library na may maling pangalan"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "Hindi papansin ang sketch na may maling pangalan"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
msgstr "Humango ng Library..."
@@ -824,11 +847,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
msgstr "Dagdagan ang Indent"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -837,27 +860,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
+#: Preferences.java:102
msgid "Italian"
msgstr "Italian"
-#: Preferences.java:101
+#: Preferences.java:103
msgid "Japanese"
msgstr "Japanese"
-#: Preferences.java:102
+#: Preferences.java:104
msgid "Korean"
msgstr ""
-#: Preferences.java:103
+#: Preferences.java:105
msgid "Latvian"
msgstr "Latvian"
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
msgstr ""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -865,45 +888,39 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "Mensahe"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
msgstr "Nawawala ang */ sa dulo ng /* comment */"
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
msgstr "Madami pang preferences ang maaaring baguhin mula sa file"
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
msgstr "Inililipat"
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
msgstr "Pangalan para sa bagong file:"
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "Bago"
@@ -923,19 +940,19 @@ msgstr "Bagong linya"
msgid "Next Tab"
msgstr "Susunod na Tab"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "Hindi"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
msgstr "Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasangkapan > Board menu."
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
msgstr "Walang naidagdag na file sa sketch."
@@ -947,11 +964,11 @@ msgstr "Walang launcher na maaaring magamit"
msgid "No line ending"
msgstr "Walang pagtatapos sa linya"
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
msgstr "Hindi nga walang biro, oras na para makalanghap ka ng sariwang hangin."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
msgstr "Walang sanggunian para sa \"{0}\""
@@ -960,18 +977,19 @@ msgstr "Walang sanggunian para sa \"{0}\""
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
msgstr "Non-fatal error habang nagseset ng Look & Feel"
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
msgstr "Hindi"
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
-
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
@@ -982,12 +1000,12 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
msgstr "OK"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
msgstr "Isang file ang naidagdag sa sketch."
@@ -995,11 +1013,11 @@ msgstr "Isang file ang naidagdag sa sketch."
msgid "Open"
msgstr "Buksan"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "Buksan ang URL"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
msgstr "Magbukas ng Arduino sketch..."
@@ -1007,11 +1025,11 @@ msgstr "Magbukas ng Arduino sketch..."
msgid "Open in Another Window"
msgstr "Buksan sa ibang Window"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "Buksan..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
msgstr "Kompigurasyon ng Pahina"
@@ -1019,23 +1037,23 @@ msgstr "Kompigurasyon ng Pahina"
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
msgstr "Ilagay"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
msgstr "Persian"
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
msgstr ""
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
msgstr "Maaari lamang na maginstall ng JDK 1.5 pataas"
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1043,11 +1061,19 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
msgstr "Mga Kagustuhan"
@@ -1059,27 +1085,27 @@ msgstr "Nakaraan"
msgid "Previous Tab"
msgstr "Nakaraang Tab"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
msgstr "I-print"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
msgstr "Nakansela ang pagpi-print."
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
msgstr "Nagpi-print..."
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
msgstr "May problema sa pagbukas ng Folder"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
msgstr "May problema sa pagbukas ng URL"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
msgstr "May problema sa pagset ng Platform"
@@ -1091,52 +1117,48 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
msgstr "May problema sa pagkuha ng data folder"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
msgstr "May problema sa paglipat ng {0} sa build folder"
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
-msgstr ""
-"May problema sa pagupload sa board. Tignan ang http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload para sa mga karagdagang kaalaman."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr "May problema sa pagupload sa board. Tignan ang http://www.arduino.cc/en/Guide/Troubleshooting#upload para sa mga karagdagang kaalaman."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
msgstr "May mali sa pag palit ng pangalan"
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
-"Maari lamang buksan ng Processing ang sariling sketches\n"
-"at iba pang file na may extension na .ino o .pde"
+msgstr "Maari lamang buksan ng Processing ang sariling sketches\nat iba pang file na may extension na .ino o .pde"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
msgstr "Programmer"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "Quit"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
msgstr "Ulitin Muli"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
msgstr "Sanggunian"
@@ -1144,7 +1166,7 @@ msgstr "Sanggunian"
msgid "Rename"
msgstr "Palitan ng Pangalan"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "Palitan"
@@ -1156,7 +1178,7 @@ msgstr "Palitan at Hanapin"
msgid "Replace All"
msgstr "Palitan Lahat"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
msgstr "Palitan ang version {0}?"
@@ -1165,61 +1187,61 @@ msgstr "Palitan ang version {0}?"
msgid "Replace with:"
msgstr "Palitan ng:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
msgstr "Romanian"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "I-save"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
msgstr "I-save bilang"
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
msgstr "Nakansela ang pag save."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
msgstr "I-save ang mga nagawa bago i-export?"
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
msgstr "I-Save ang mga pagbabago sa \"{0}\"? "
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
msgstr "I-save ang sketch folder bilang..."
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
msgstr "Sine-save..."
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
msgstr "Pumili (o gumawa ng bago) ng folder para sa sketches..."
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
msgstr "Piliin Lahat"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
msgstr "Pumili ng image o kahit anong data file na kokopyahin sa iyong sketch"
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
msgstr "Pumili ng bagong lokasyon ng sketchbook"
@@ -1231,47 +1253,43 @@ msgstr ""
msgid "Send"
msgstr "Ipadala"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
msgstr "Serial Monitor"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
msgstr "Ang serial port ''{0}'' ay kasalukuyang ginagamit. Subukang ihinto ang ibang programa na maaring gumagamit nito."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr ""
-"Hindi makita ang serial port na ''{0}''. Tama ba ang iyong napili sa Mga Kasangkapan > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr "Hindi makita ang serial port na ''{0}''. Tama ba ang iyong napili sa Mga Kasangkapan > Serial Port menu?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"Hindi makita ang serial port na {0}.\n"
-"Subukan muli ang pagupload gamit ang ibang serial port?"
+msgstr "Hindi makita ang serial port na {0}.\nSubukan muli ang pagupload gamit ang ibang serial port?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
msgstr "May problema sa Settings"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
msgstr "Ipakita ang Sketch Folder"
@@ -1279,160 +1297,156 @@ msgstr "Ipakita ang Sketch Folder"
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
msgstr "Ipakita ang verbose na output: "
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
msgstr "Sketch"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
msgstr "Nawala ang sketch"
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
msgstr "Hindi makita ang sketch"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
msgstr "Ang sketch ay Read-Only"
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
msgstr "Walang pangalan ang Sketch"
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
msgstr "Ang sketch ay read-only"
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr ""
-"Masyadong malaki ang sketch; Tignan ang http://www.arduino.cc/en/Guide/Troubleshooting#size para "
-"sa mga patnubay para mapaliit ito."
+msgstr "Masyadong malaki ang sketch; Tignan ang http://www.arduino.cc/en/Guide/Troubleshooting#size para sa mga patnubay para mapaliit ito."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
msgstr "Sketchbook"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
msgstr "Nawala ang folder ng sketchbook"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
msgstr "Lokasyon ng Sketchbook:"
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"Ang ilang files ay \"read-only\", kaya kinakailangan\n"
-"mong i-save ang sketch sa ibang lokasyon,\n"
-"at subukan muli."
+msgstr "Ang ilang files ay \"read-only\", kaya kinakailangan\nmong i-save ang sketch sa ibang lokasyon,\nat subukan muli."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
-"Ang ilang files ay \"read-only\", kaya kinakailangan\n"
-"mong i-resave ang sketch sa ibang lokasyon."
+msgstr "Ang ilang files ay \"read-only\", kaya kinakailangan\nmong i-resave ang sketch sa ibang lokasyon."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
msgstr "Paumanhin, mayroon ng sketch o folder na may pangalang \"{0}\"."
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
msgstr "Spanish"
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
msgstr "Sinag ng araw"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
msgstr "Ang 'BYTE' keyword ay hindi na sinusuportahan."
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
msgstr "Ang Client class ay pinangalanan ng EthernetClient."
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
msgstr "Ang Server class ay pinalitan ng pangalan at naging EthernetServer."
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
msgstr "Ang Udp class ay pinangalanang EthernetUdp."
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
msgstr "Narito ang error message, subalit ang Arduino ay gagana pa rin ng maayos"
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
-"Ang file \"{0}\" ay nararapat na nasa loob\n"
-"ng sketch folder na \"{1}\".\n"
-"I-create ang folder, ilipat ang file at magpatuloy?"
+msgstr "Ang file \"{0}\" ay nararapat na nasa loob\nng sketch folder na \"{1}\".\nI-create ang folder, ilipat ang file at magpatuloy?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
-"Ang library \"{0}\" ay maaaring gamitin.\n"
-"Ang pangalan ng library ay maaari lamang magkaron ng titik at numero.\n"
-"(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero)"
+msgstr "Ang library \"{0}\" ay maaaring gamitin.\nAng pangalan ng library ay maaari lamang magkaron ng titik at numero.\n(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero)"
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr ""
-"Hindi maaaring gumamit ng extension ang main file.\n"
-"(Sa tingin ko ay oras na para ikaw ay gumamit\n"
-"ng totoong programming environment)"
+msgstr "Hindi maaaring gumamit ng extension ang main file.\n(Sa tingin ko ay oras na para ikaw ay gumamit\nng totoong programming environment)"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
msgstr "Hindi maaaring magsimula ang pangalan sa tuldok."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"Ang napiling sketch nay hindi na makita.\n"
-"kinakailangan mong i-restart ang Arduino para maupdate\n"
-"ang sketchbook menu."
+msgstr "Ang napiling sketch nay hindi na makita.\nkinakailangan mong i-restart ang Arduino para maupdate\nang sketchbook menu."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1440,70 +1454,51 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-"Ang sketch \"{0}\" ay hindi maaaring gamitin.\n"
-"Ang pangalan ng sketch ay maaarin lamang magkaroon ng titik at numero\n"
-"(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero).\n"
-"Para maaalis ang message na ito, alisin ang sketch mula sa \n"
-"{1}"
+msgstr "Ang sketch \"{0}\" ay hindi maaaring gamitin.\nAng pangalan ng sketch ay maaarin lamang magkaroon ng titik at numero\n(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero).\nPara maaalis ang message na ito, alisin ang sketch mula sa \n{1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
-"Nawala ng folder ng sketch.\n"
-" Susubukang ire-save sa parehong lokasyon,\n"
-"subalit lahat maliban sa code ay mawawala."
+msgstr "Nawala ng folder ng sketch.\n Susubukang ire-save sa parehong lokasyon,\nsubalit lahat maliban sa code ay mawawala."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
-"Kinakailangang palitan ang sketch name. Ang pangalan ng sketch ay maaari lamang magkaroon ng\n"
-"ASCII characters at mga numero (ngunit hindi maaaring magsimula sa numero).\n"
-"Hindi rin maaaring lumagpas ng 64 na titik ang pangalan."
+msgstr "Kinakailangang palitan ang sketch name. Ang pangalan ng sketch ay maaari lamang magkaroon ng\nASCII characters at mga numero (ngunit hindi maaaring magsimula sa numero).\nHindi rin maaaring lumagpas ng 64 na titik ang pangalan."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr ""
-"Ang sketchbook folder ay hindi ko na makita.\n"
-"Gagamitin ko na ang default lokasyon ng sketchbook \n"
-"at gagawa ng bagong sketchbook folder kung\n"
-"kinakailangan. At hindi ko na kakausapin\n"
-"ang sarili ko."
+msgstr "Ang sketchbook folder ay hindi ko na makita.\nGagamitin ko na ang default lokasyon ng sketchbook \nat gagawa ng bagong sketchbook folder kung\nkinakailangan. At hindi ko na kakausapin\nang sarili ko."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
-"Ang file na ito ay nakopya na sa "
-"lokasyon kung saan mo sya gustong ikopya.\n"
-"Wala na akong gagawin."
+msgstr "Ang file na ito ay nakopya na sa lokasyon kung saan mo sya gustong ikopya.\nWala na akong gagawin."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
msgstr "Oras na para magpahinga"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
msgstr "Mga Kasangkapan"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
msgstr "Mga Sagot sa Problema"
@@ -1529,7 +1524,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1540,12 +1535,12 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
msgstr "Hindi nahuling exception type: {0}"
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
msgstr "Ipawalang Bisa"
@@ -1554,28 +1549,25 @@ msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"Hindi malamang platform, walang launcher na maaaring magamit.\n"
-"Para mabuksan ang URLs o folders, magdagdag ng\n"
-"\"launcher=/path/to/app\" sa preferences.txt"
+msgstr "Hindi malamang platform, walang launcher na maaaring magamit.\nPara mabuksan ang URLs o folders, magdagdag ng\n\"launcher=/path/to/app\" sa preferences.txt"
#: UpdateCheck.java:111
msgid "Update"
msgstr "I-update"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
msgstr "Baguhin ang sketch files na gumamit ng bagong extension kapag nagsave (.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "I-upload"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
msgstr "I-upload gamit ang Programmer"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
msgstr "Nakansela ang pag upload."
@@ -1583,19 +1575,19 @@ msgstr "Nakansela ang pag upload."
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
msgstr "Ina-upload sa I/O Board..."
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
msgstr "Inaupload..."
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Gamitin ang Napili sa Paghahanap"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
msgstr "Gumamit ng ibang editor"
@@ -1603,27 +1595,31 @@ msgstr "Gumamit ng ibang editor"
msgid "Verify"
msgstr "Beripikahin"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
msgstr "Beripikahin / I-compile"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
msgstr "I-verify ang code pagkatapos mai-upload"
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
msgstr "Bisitahin ang Arduino.cc"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
msgstr "Warning"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() ay pinangalanang Wire.read()."
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
msgstr "Wire.send() ay pinangalanan ng Wire.write()."
@@ -1635,47 +1631,39 @@ msgstr "Wrap Around"
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
-msgstr ""
-"Mali ang nakitang microcontroller. Napili mo ba ang tamang board mula sa Mga Kasangkapan "
-"> Board menu?"
+msgstr "Mali ang nakitang microcontroller. Napili mo ba ang tamang board mula sa Mga Kasangkapan > Board menu?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "Oo"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
msgstr "Hindi mo ako maloloko"
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
msgstr "Hindi maaaring magkaroon ng .cpp file na kaparehong pangalan ng sketch."
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Hindi maaaring palitan ang pangalan sa \"{0}\"\n"
-"sapagkat mayroon ng .cpp file na may ganyang pangalan sa sketch."
+msgstr "Hindi maaaring palitan ang pangalan sa \"{0}\"\nsapagkat mayroon ng .cpp file na may ganyang pangalan sa sketch."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Hindi maaaring ma-save ang sketch bilang \"{0}\"\n"
-"dahil ang mayroon na itong .cpp na may parehong pangalan."
+msgstr "Hindi maaaring ma-save ang sketch bilang \"{0}\"\ndahil ang mayroon na itong .cpp na may parehong pangalan."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"Hindi mo maaaring i-save ang sketch sa loob ng folder\n"
-"kung saaan nakalagay sketch. Magpapatuloy lamang ito ng walang katapusan."
+msgstr "Hindi mo maaaring i-save ang sketch sa loob ng folder\nkung saaan nakalagay sketch. Magpapatuloy lamang ito ng walang katapusan."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
msgstr "Nakalimutan mo ang iyong sketchbook"
@@ -1684,23 +1672,21 @@ msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
-"Naabot mo na ang limit para sa pagauto-name ng bagong sketches\n"
-"para sa araw na ito. Bakit hindi ka maglakad lakad sa paligid-ligid?"
+msgstr "Naabot mo na ang limit para sa pagauto-name ng bagong sketches\npara sa araw na ito. Bakit hindi ka maglakad lakad sa paligid-ligid?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
msgstr "\".{0}\" ay hindi tamang extension."
@@ -1712,99 +1698,64 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr ""
-"Ang \"{0}\" ay naglalaman ng hindi maintidihang titik. Kung ang code na ito ay ginawa mula sa "
-"lumang bersyon ng Processing, Kinakailangan mong gamitin ang Mga Kasangkapan -> Itama ang Encoding at "
-"I-reload para magamit ang UTF-8 encoding sa sketch. Kung hindi naman ay kinakailangan mong "
-"alisin ang mga hindi maintidihang titik para maalis ang babalang ito."
+msgstr "Ang \"{0}\" ay naglalaman ng hindi maintidihang titik. Kung ang code na ito ay ginawa mula sa lumang bersyon ng Processing, Kinakailangan mong gamitin ang Mga Kasangkapan -> Itama ang Encoding at I-reload para magamit ang UTF-8 encoding sa sketch. Kung hindi naman ay kinakailangan mong alisin ang mga hindi maintidihang titik para maalis ang babalang ito."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
-"\n"
-msgstr ""
-"\n"
-"Mula sa Arduino 0019, ang Ethernet library ay nakasalalay sa SPI library.\n"
-"Maaaring ginagamit mo ito o kaya ibang library na nakasalalay sa SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
+msgstr "\nMula sa Arduino 0019, ang Ethernet library ay nakasalalay sa SPI library.\nMaaaring ginagamit mo ito o kaya ibang library na nakasalalay sa SPI library.\n\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr ""
-"\n"
-"Mula sa Arduino 1.0, ang 'BYTE' keyword ay hindi na susuportahan.\n"
-"Maaari lamang na gumamit na lang ng Serial.write().\n"
-"\n"
+msgstr "\nMula sa Arduino 1.0, ang 'BYTE' keyword ay hindi na susuportahan.\nMaaari lamang na gumamit na lang ng Serial.write().\n\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Mula sa Arduino 1.0, ang Client class mula sa Ethernet library ay pinangalanan ng "
-"EthernetClient.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
+msgstr "\nMula sa Arduino 1.0, ang Client class mula sa Ethernet library ay pinangalanan ng EthernetClient.\n\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"Mula sa Arduino 1.0, ang Server class mula sa Ethernet library ay papalitan na para maging "
-"EthernetServer.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
+msgstr "\nMula sa Arduino 1.0, ang Server class mula sa Ethernet library ay papalitan na para maging EthernetServer.\n\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"Mula sa Arduino 1.0, ang Wire.receive() function ay pinangalanan ng Wire.read() "
-"para sa pagkakapareho sa ibang libraries.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
+msgstr "\nMula sa Arduino 1.0, ang Wire.receive() function ay pinangalanan ng Wire.read() para sa pagkakapareho sa ibang libraries.\n\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"Mula sa Arduino 1.0, ang Wire.send() function ay pinangalanan ng Wire.write() para sa "
-"pagkakakapareho sa ibang libraries.\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
+msgstr "\nMula sa Arduino 1.0, ang Wire.send() function ay pinangalanan ng Wire.write() para sa pagkakakapareho sa ibang libraries.\n\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
msgstr "compilation"
@@ -1812,7 +1763,7 @@ msgstr "compilation"
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
msgstr "createNewFile() ay nagbalik ng false"
@@ -1820,11 +1771,11 @@ msgstr "createNewFile() ay nagbalik ng false"
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
msgstr "environment"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@@ -1840,75 +1791,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "hindi papansinin ang maling sukat ng font {0}"
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "ang pangalan ay null"
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr ""
-"readBytesUntil() byte buffer ay masyadong maliit para sa {0} bytes hanggang sa "
-"char {1}"
+msgstr "readBytesUntil() byte buffer ay masyadong maliit para sa {0} bytes hanggang sa char {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
msgstr "removeCode: internal error...hindi makita ang code"
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu ay null"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
-msgstr ""
-"hindi makita ang napiling serial port {0} o kaya naman ay hindi kunektado ang iyong board"
+msgstr "hindi makita ang napiling serial port {0} o kaya naman ay hindi kunektado ang iyong board"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
msgstr "upload"
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
msgstr "{0} files and naidagdag sa sketch."
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
msgstr "{0} ay nagbalik ng {1}"
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_fil.properties b/app/src/processing/app/i18n/Resources_fil.properties
new file mode 100644
index 000000000..dd29e2955
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_fil.properties
@@ -0,0 +1,1285 @@
+# Filipino translations for Arduino IDE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# David A. Mellis <>, 2012.
+# Translation to Filipino by Marc Lester Tan Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Ang pagsara ng huling nakabukas na sketch ay magki-quit ng Arduino.
+
+#: Editor.java:2053
+\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Mawawala ang lahat ng ginawa kapag hindi mo I-sesave.
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Mayroon nang folder na "{0}". Hindi mabuksan ang sketch.
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=May bagong bersyon ng Arduino,\nnais mo bang magpunta sa Arduino download page?
+
+#: EditorConsole.java:153
+A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=May nangyaring problema habang inoopen ang files\nna gagamitin para mastore ang console output.
+
+#: Editor.java:1116
+About\ Arduino=Tungkol sa Arduino
+
+#: Editor.java:650
+Add\ File...=Magdagdag ng File...
+
+#: Base.java:963
+!Add\ Library...=
+
+#: tools/FixEncoding.java:77
+An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=May pagkakamali habang sinusubukang ayusin ang file encoding.\nHuwag subukang i-save ang sketch na ito dahil maaaring mapatungan\nang lumang bersion. Gamitin ang Buksan para buksan muli ang sketch.\n
+
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=May hindi alam na error ang nangyari habang niloload ang \nplatform-specific code para sa iyong machine.
+
+#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
+!Aragonese=
+
+#: tools/Archiver.java:48
+Archive\ Sketch=Archive Sketch
+
+#: tools/Archiver.java:109
+Archive\ sketch\ as\:=I-archive ang sketch bilang\:
+
+#: tools/Archiver.java:139
+Archive\ sketch\ canceled.=Nakansela ang pag-archive ng sketch
+
+#: tools/Archiver.java:75
+Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Nakansela ang pag archive ng sketch sapagkat\nhindi ito mai-save ng tama.
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ayaw gumana ng Arduino sapagkat hindi ito\nmakagawa ng folder kung saan ilalagay ang iyong settings.
+
+#: Base.java:1889
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Ayaw gumana ng Arduino sapagkat hindi ito\nmakagawa ng folder kung saan ilalagay ang iyong sketchbook.
+
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Ang Arduino ay nangangailangan ng full JDK (hindi lamang JRE)\npara gumana. Maaari lamang na maginstall ng JDK 1.5 pataas.\nMaaaring makakuha ng karagdagang kaalaman sa sanggunian.
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Nais mo bang burahin ang "{0}"?
+
+#: Sketch.java:587
+Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Nais mo bang burahin ang sketch na ito?
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+Auto\ Format=Auto Format
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Nakansela ang Auto Format\: Napakaraming kaliwang panaklong.
+
+#: tools/AutoFormat.java:931
+Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Nakansela ang Auto Format\: Napakaraming kanang panaklaw.
+
+#: tools/AutoFormat.java:922
+Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Nakansela ang Auto Format\: Napakaraming kanang panaklong.
+
+#: tools/AutoFormat.java:944
+Auto\ Format\ finished.=Tapos na ang pag Auto Format
+
+#: Preferences.java:439
+Automatically\ associate\ .ino\ files\ with\ Arduino=Kusang iassociate ang .ino files sa Arduino
+
+#: SerialMonitor.java:110
+Autoscroll=Autoscroll
+
+#: Editor.java:2619
+#, java-format
+Bad\ error\ line\:\ {0}=May mali sa linya\: {0}
+
+#: Editor.java:2136
+Bad\ file\ selected=Mali ang File na napili
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+Board=Board
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+Both\ NL\ &\ CR=Parehong NL at CR
+
+#: Preferences.java:81
+Browse=Browse
+
+#: Sketch.java:1392 Sketch.java:1423
+Build\ folder\ disappeared\ or\ could\ not\ be\ written=Nawawala ang build folder o hindi sya masulatan
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+Burn\ Bootloader=Ilagay ang Bootloader
+
+#: Editor.java:2504
+Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Inilalagay ang bootloader sa I/O Board (Maaring abutin ng isang minuto)...
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+Cancel=Kanselahin
+
+#: Sketch.java:455
+Cannot\ Rename=Hindi maaaring palitan ang pangalan
+
+#: SerialMonitor.java:112
+Carriage\ return=Carriage return
+
+#: Preferences.java:87
+Catalan=Catalan
+
+#: Preferences.java:419
+Check\ for\ updates\ on\ startup=Suriin ang updates tuwing magsisimula
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+Chinese\ Simplified=Chinese Simplified
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+Close=Isara
+
+#: Editor.java:1208 Editor.java:2749
+Comment/Uncomment=I-Comment/I-Uncomment
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=May error sa compiler, Pakisubmit ang code na ito sa {0}
+
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=Kinokompile ang Sketch...
+
+#: EditorConsole.java:152
+Console\ Error=May error sa console
+
+#: Editor.java:1157 Editor.java:2707
+Copy=Kopyahin
+
+#: Editor.java:1177 Editor.java:2723
+Copy\ as\ HTML=Kopyahin bilang HTML
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=Kopyahin para sa Forum
+
+#: Sketch.java:1089
+#, java-format
+Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Hindi maidagdag ang ''{0}'' sa sketch
+
+#: Editor.java:2188
+Could\ not\ copy\ to\ a\ proper\ location.=Hindi makopya sa tamang lokasyon
+
+#: Editor.java:2179
+Could\ not\ create\ the\ sketch\ folder.=Hindi makalikha ng sketch folder.
+
+#: Editor.java:2206
+Could\ not\ create\ the\ sketch.=Hindi makalikha ng sketch.
+
+#: Sketch.java:617
+#, java-format
+Could\ not\ delete\ "{0}".=Hindi ko madelete "{0}".
+
+#: Sketch.java:1066
+#, java-format
+Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Hindi mabura ang file na ''{0}''.
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+Could\ not\ delete\ {0}=Hindi maalis ang {0}
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+Could\ not\ open\ the\ URL\n{0}=Hindi mabuksan ang URL\n{0}
+
+#: Base.java:1958
+#, java-format
+Could\ not\ open\ the\ folder\n{0}=Hindi mabuksan ang folder\n{0}
+
+#: Sketch.java:1769
+Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Hindi mai-resave ng maayos ang sketch. Maaaring malaki na ang iyong problema sa oras na ito,\nkaya mas mabuti pang icopy-paste mo na ang code mo sa ibang text editor.
+
+#: Sketch.java:1768
+Could\ not\ re-save\ sketch=Hindi mai-resave ang sketch
+
+#: Theme.java:52
+Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Hindi mabasa ang color theme settings.\nKinakailangan mong i-reinstall ang Processing.
+
+#: Preferences.java:219
+Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Hindi mabasa ang default settings.\nKinakailangan mong i-reinstall ang Arduino.
+
+#: Preferences.java:258
+#, java-format
+Could\ not\ read\ preferences\ from\ {0}=Hindi mabasa ang mga kagustuhan mula sa {0}
+
+#: Base.java:2482
+#, java-format
+Could\ not\ remove\ old\ version\ of\ {0}=Hindi maaalis ang lumang bersyon na {0}
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+Could\ not\ rename\ "{0}"\ to\ "{1}"=Hindi mapalitan ang pangalan mula "{0}" para maging "{1}"
+
+#: Sketch.java:475
+Could\ not\ rename\ the\ sketch.\ (0)=Ayaw mapalitan ang pangalan ng sketch. (0)
+
+#: Sketch.java:496
+Could\ not\ rename\ the\ sketch.\ (1)=Hindi mapalitan ang pangalan ng sketch. (1)
+
+#: Sketch.java:503
+Could\ not\ rename\ the\ sketch.\ (2)=Hindi mapalitan ang pangalan ng sketch. (2)
+
+#: Base.java:2492
+#, java-format
+Could\ not\ replace\ {0}=Hindi mapalitan ang {0}
+
+#: tools/Archiver.java:74
+Couldn't\ archive\ sketch=Hindi mai-archive and sketch
+
+#: Sketch.java:1647
+Couldn't\ determine\ program\ size\:\ {0}=Hindi malaman ang sukat ng programa\: {0}
+
+#: Sketch.java:616
+Couldn't\ do\ it=Hindi ko magawa yan
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+Cut=I-Cut
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+Danish=Danish
+
+#: Editor.java:1224 Editor.java:2765
+Decrease\ Indent=Bawasan ang Indent
+
+#: EditorHeader.java:314 Sketch.java:591
+Delete=Alisin
+
+#: debug/Uploader.java:199
+Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Hindi tumutugon ang device, siguraduhing tama ang napiling serial port o kaya ay pindutin ang RESET bago mag export
+
+#: tools/FixEncoding.java:57
+Discard\ all\ changes\ and\ reload\ sketch?=Alisin ang lahat ng nagawa at i-reload ang sketch?
+
+#: Editor.java:2064
+Don't\ Save=Huwag I-Save
+
+#: Editor.java:2275 Editor.java:2311
+Done\ Saving.=Tapos na sa pag save.
+
+#: Editor.java:2510
+Done\ burning\ bootloader.=Tapos na ang paglagay ng bootloader.
+
+#: Editor.java:1911 Editor.java:1928
+Done\ compiling.=Tapos na ang pagkokompile.
+
+#: Editor.java:2564
+Done\ printing.=Tapos na ang pag print.
+
+#: Editor.java:2395 Editor.java:2431
+Done\ uploading.=Tapos na ang pagupload.
+
+#: Preferences.java:91
+Dutch=Dutch
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+Edit=Baguhin
+
+#: Preferences.java:370
+Editor\ font\ size\:\ =Sukat ng font para sa Editor\:
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+English=Ingles
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+Environment=Environment
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=Mali
+
+#: Sketch.java:1065 Sketch.java:1088
+Error\ adding\ file=May mali sa pagdagdag ng file
+
+#: debug/Compiler.java:369
+Error\ compiling.=May mali sa pagcompile
+
+#: Base.java:1674
+Error\ getting\ the\ Arduino\ data\ folder.=May problema sa pagkuha ng Arduino data folder
+
+#: Serial.java:593
+#, java-format
+Error\ inside\ Serial.{0}()=May mali sa loob ng Serial.{0}()
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+Error\ opening\ serial\ port\ ''{0}''.=May mali sa pagbukas ng serial port ''{0}''.
+
+#: Preferences.java:277
+Error\ reading\ preferences=May problema sa pagread ng preferences
+
+#: Preferences.java:279
+#, java-format
+Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=May problema sa pagbasa ng preferences file. Maaari lamang na i-delete (o ilipat) ang \n{0} at irestart ang Arduino.
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+Error\ while\ burning\ bootloader.=May mali habang naglalagay ng bootloader.
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+Error\ while\ loading\ code\ {0}=May mali habang niloload ang code {0}
+
+#: Editor.java:2567
+Error\ while\ printing.=May mali habang nagpi-print.
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+!Estonian=
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+Examples=Mga Halimbawa
+
+#: Editor.java:2482
+Export\ canceled,\ changes\ must\ first\ be\ saved.=Nakansela ang pag export, kailangan muna i-save ang mga nagawa.
+
+#: Base.java:2100
+FAQ.html=FAQ.html
+
+#: Editor.java:491
+File=File
+
+#: Preferences.java:94
+Filipino=Filipino
+
+#: FindReplace.java:124 FindReplace.java:127
+Find=Hanapin
+
+#: Editor.java:1249
+Find\ Next=Hanapin ang Susunod
+
+#: Editor.java:1259
+Find\ Previous=Hanapin ang Nauna
+
+#: Editor.java:1086 Editor.java:2775
+Find\ in\ Reference=Hanapin sa Sanggunian
+
+#: Editor.java:1234
+Find...=Hanapin...
+
+#: FindReplace.java:80
+Find\:=Hanapin\:
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+Fix\ Encoding\ &\ Reload=Itama ang Encoding at I-reload
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+French=French
+
+#: Editor.java:1097
+Frequently\ Asked\ Questions=Mga Karaniwang Tanong
+
+#: Preferences.java:96
+Galician=Galician
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+German=German
+
+#: Editor.java:1054
+Getting\ Started=Mga Patnubay sa Pagsisimula
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+Greek=Greek
+
+#: Base.java:2085
+Guide_Environment.html=Guide_Environment.html
+
+#: Base.java:2071
+Guide_MacOSX.html=Guide_MacOSX.html
+
+#: Base.java:2095
+Guide_Troubleshooting.html=Guide_Troubleshooting.html
+
+#: Base.java:2073
+Guide_Windows.html=Guide_Windows.html
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+Help=Tulong
+
+#: Preferences.java:99
+!Hindi=
+
+#: Sketch.java:295
+How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=I-save muna ang sketch bago \npalitan ng pangalan?
+
+#: Sketch.java:882
+How\ very\ Borges\ of\ you=Napaka Borges mo
+
+#: Preferences.java:100
+Hungarian=Hungarian
+
+#: FindReplace.java:96
+Ignore\ Case=Ignore Case
+
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Hindi papansinin ang library na may maling pangalan
+
+#: Base.java:1436
+Ignoring\ sketch\ with\ bad\ name=Hindi papansin ang sketch na may maling pangalan
+
+#: Editor.java:636
+Import\ Library...=Humango ng Library...
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+Increase\ Indent=Dagdagan ang Indent
+
+#: Preferences.java:101
+!Indonesian=
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+Italian=Italian
+
+#: Preferences.java:103
+Japanese=Japanese
+
+#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+Latvian=Latvian
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+!Lithuaninan=
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+Message=Mensahe
+
+#: Sketch.java:1712
+Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Nawawala ang */ sa dulo ng /* comment */
+
+#: Preferences.java:449
+More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Madami pang preferences ang maaaring baguhin mula sa file
+
+#: Editor.java:2156
+Moving=Inililipat
+
+#: Sketch.java:282
+Name\ for\ new\ file\:=Pangalan para sa bagong file\:
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+New=Bago
+
+#: EditorToolbar.java:46
+New\ Editor\ Window=Bagong Editor Window
+
+#: EditorHeader.java:292
+New\ Tab=Bagong Tab
+
+#: SerialMonitor.java:112
+Newline=Bagong linya
+
+#: EditorHeader.java:340
+Next\ Tab=Susunod na Tab
+
+#: Preferences.java:78 UpdateCheck.java:108
+No=Hindi
+
+#: debug/Compiler.java:126
+No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasangkapan > Board menu.
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+No\ files\ were\ added\ to\ the\ sketch.=Walang naidagdag na file sa sketch.
+
+#: Platform.java:167
+No\ launcher\ available=Walang launcher na maaaring magamit
+
+#: SerialMonitor.java:112
+No\ line\ ending=Walang pagtatapos sa linya
+
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hindi nga walang biro, oras na para makalanghap ka ng sariwang hangin.
+
+#: Editor.java:1872
+#, java-format
+No\ reference\ available\ for\ "{0}"=Walang sanggunian para sa "{0}"
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Non-fatal error habang nagseset ng Look & Feel
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+Nope=Hindi
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=OK
+
+#: Sketch.java:992 Editor.java:376
+One\ file\ added\ to\ the\ sketch.=Isang file ang naidagdag sa sketch.
+
+#: EditorToolbar.java:41
+Open=Buksan
+
+#: Editor.java:2688
+Open\ URL=Buksan ang URL
+
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=Magbukas ng Arduino sketch...
+
+#: EditorToolbar.java:46
+Open\ in\ Another\ Window=Buksan sa ibang Window
+
+#: Base.java:903 Editor.java:501
+Open...=Buksan...
+
+#: Editor.java:563
+Page\ Setup=Kompigurasyon ng Pahina
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+Paste=Ilagay
+
+#: Preferences.java:109
+Persian=Persian
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=Maaari lamang na maginstall ng JDK 1.5 pataas
+
+#: Preferences.java:110
+!Polish=
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+Preferences=Mga Kagustuhan
+
+#: FindReplace.java:123 FindReplace.java:128
+Previous=Nakaraan
+
+#: EditorHeader.java:326
+Previous\ Tab=Nakaraang Tab
+
+#: Editor.java:571
+Print=I-print
+
+#: Editor.java:2571
+Printing\ canceled.=Nakansela ang pagpi-print.
+
+#: Editor.java:2547
+Printing...=Nagpi-print...
+
+#: Base.java:1957
+Problem\ Opening\ Folder=May problema sa pagbukas ng Folder
+
+#: Base.java:1933
+Problem\ Opening\ URL=May problema sa pagbukas ng URL
+
+#: Base.java:227
+Problem\ Setting\ the\ Platform=May problema sa pagset ng Platform
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+Problem\ getting\ data\ folder=May problema sa pagkuha ng data folder
+
+#: Sketch.java:1467
+#, java-format
+Problem\ moving\ {0}\ to\ the\ build\ folder=May problema sa paglipat ng {0} sa build folder
+
+#: debug/Uploader.java:209
+Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=May problema sa pagupload sa board. Tignan ang http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sa mga karagdagang kaalaman.
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+Problem\ with\ rename=May mali sa pag palit ng pangalan
+
+#: Editor.java:2137
+Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Maari lamang buksan ng Processing ang sariling sketches\nat iba pang file na may extension na .ino o .pde
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+Programmer=Programmer
+
+#: Base.java:783 Editor.java:593
+Quit=Quit
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+Redo=Ulitin Muli
+
+#: Editor.java:1078
+Reference=Sanggunian
+
+#: EditorHeader.java:300
+Rename=Palitan ng Pangalan
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+Replace=Palitan
+
+#: FindReplace.java:122 FindReplace.java:129
+Replace\ &\ Find=Palitan at Hanapin
+
+#: FindReplace.java:120 FindReplace.java:131
+Replace\ All=Palitan Lahat
+
+#: Sketch.java:1043
+#, java-format
+Replace\ the\ existing\ version\ of\ {0}?=Palitan ang version {0}?
+
+#: FindReplace.java:81
+Replace\ with\:=Palitan ng\:
+
+#: Preferences.java:113
+Romanian=Romanian
+
+#: Preferences.java:114
+!Russian=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+Save=I-save
+
+#: Editor.java:537
+Save\ As...=I-save bilang
+
+#: Editor.java:2317
+Save\ Canceled.=Nakansela ang pag save.
+
+#: Editor.java:2467
+Save\ changes\ before\ export?=I-save ang mga nagawa bago i-export?
+
+#: Editor.java:2020
+#, java-format
+Save\ changes\ to\ "{0}"?\ \ =I-Save ang mga pagbabago sa "{0}"?
+
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=I-save ang sketch folder bilang...
+
+#: Editor.java:2270 Editor.java:2308
+Saving...=Sine-save...
+
+#: Base.java:1909
+Select\ (or\ create\ new)\ folder\ for\ sketches...=Pumili (o gumawa ng bago) ng folder para sa sketches...
+
+#: Editor.java:1198 Editor.java:2739
+Select\ All=Piliin Lahat
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Pumili ng image o kahit anong data file na kokopyahin sa iyong sketch
+
+#: Preferences.java:330
+Select\ new\ sketchbook\ location=Pumili ng bagong lokasyon ng sketchbook
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+Send=Ipadala
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+Serial\ Monitor=Serial Monitor
+
+#: Serial.java:174
+#, java-format
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Ang serial port ''{0}'' ay kasalukuyang ginagamit. Subukang ihinto ang ibang programa na maaring gumagamit nito.
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Hindi makita ang serial port na ''{0}''. Tama ba ang iyong napili sa Mga Kasangkapan > Serial Port menu?
+
+#: Editor.java:2343
+#, java-format
+Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Hindi makita ang serial port na {0}.\nSubukan muli ang pagupload gamit ang ibang serial port?
+
+#: Base.java:1681
+Settings\ issues=May problema sa Settings
+
+#: Editor.java:641
+Show\ Sketch\ Folder=Ipakita ang Sketch Folder
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+Show\ verbose\ output\ during\:\ =Ipakita ang verbose na output\:
+
+#: Editor.java:607
+Sketch=Sketch
+
+#: Sketch.java:1754
+Sketch\ Disappeared=Nawala ang sketch
+
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=Hindi makita ang sketch
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+Sketch\ is\ Read-Only=Ang sketch ay Read-Only
+
+#: Sketch.java:294
+Sketch\ is\ Untitled=Walang pangalan ang Sketch
+
+#: Sketch.java:720
+Sketch\ is\ read-only=Ang sketch ay read-only
+
+#: Sketch.java:1653
+Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Masyadong malaki ang sketch; Tignan ang http\://www.arduino.cc/en/Guide/Troubleshooting\#size para sa mga patnubay para mapaliit ito.
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+Sketchbook=Sketchbook
+
+#: Base.java:258
+Sketchbook\ folder\ disappeared=Nawala ang folder ng sketchbook
+
+#: Preferences.java:315
+Sketchbook\ location\:=Lokasyon ng Sketchbook\:
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Ang ilang files ay "read-only", kaya kinakailangan\nmong i-save ang sketch sa ibang lokasyon,\nat subukan muli.
+
+#: Sketch.java:721
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Ang ilang files ay "read-only", kaya kinakailangan\nmong i-resave ang sketch sa ibang lokasyon.
+
+#: Sketch.java:457
+#, java-format
+Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Paumanhin, mayroon ng sketch o folder na may pangalang "{0}".
+
+#: Preferences.java:115
+Spanish=Spanish
+
+#: Base.java:540
+Sunshine=Sinag ng araw
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Ang 'BYTE' keyword ay hindi na sinusuportahan.
+
+#: debug/Compiler.java:426
+The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Ang Client class ay pinangalanan ng EthernetClient.
+
+#: debug/Compiler.java:420
+The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Ang Server class ay pinalitan ng pangalan at naging EthernetServer.
+
+#: debug/Compiler.java:432
+The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Ang Udp class ay pinangalanang EthernetUdp.
+
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Narito ang error message, subalit ang Arduino ay gagana pa rin ng maayos
+
+#: Editor.java:2147
+#, java-format
+The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Ang file "{0}" ay nararapat na nasa loob\nng sketch folder na "{1}".\nI-create ang folder, ilipat ang file at magpatuloy?
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Ang library "{0}" ay maaaring gamitin.\nAng pangalan ng library ay maaari lamang magkaron ng titik at numero.\n(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero)
+
+#: Sketch.java:374
+The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Hindi maaaring gumamit ng extension ang main file.\n(Sa tingin ko ay oras na para ikaw ay gumamit\nng totoong programming environment)
+
+#: Sketch.java:356
+The\ name\ cannot\ start\ with\ a\ period.=Hindi maaaring magsimula ang pangalan sa tuldok.
+
+#: Base.java:1412
+The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Ang napiling sketch nay hindi na makita.\nkinakailangan mong i-restart ang Arduino para maupdate\nang sketchbook menu.
+
+#: Base.java:1430
+#, java-format
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Ang sketch "{0}" ay hindi maaaring gamitin.\nAng pangalan ng sketch ay maaarin lamang magkaroon ng titik at numero\n(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero).\nPara maaalis ang message na ito, alisin ang sketch mula sa \n{1}
+
+#: Sketch.java:1755
+The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Nawala ng folder ng sketch.\n Susubukang ire-save sa parehong lokasyon,\nsubalit lahat maliban sa code ay mawawala.
+
+#: Sketch.java:2018
+The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Kinakailangang palitan ang sketch name. Ang pangalan ng sketch ay maaari lamang magkaroon ng\nASCII characters at mga numero (ngunit hindi maaaring magsimula sa numero).\nHindi rin maaaring lumagpas ng 64 na titik ang pangalan.
+
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Ang sketchbook folder ay hindi ko na makita.\nGagamitin ko na ang default lokasyon ng sketchbook \nat gagawa ng bagong sketchbook folder kung\nkinakailangan. At hindi ko na kakausapin\nang sarili ko.
+
+#: Sketch.java:1075
+This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ang file na ito ay nakopya na sa lokasyon kung saan mo sya gustong ikopya.\nWala na akong gagawin.
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+Time\ for\ a\ Break=Oras na para magpahinga
+
+#: Editor.java:663
+Tools=Mga Kasangkapan
+
+#: Editor.java:1070
+Troubleshooting=Mga Sagot sa Problema
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+Uncaught\ exception\ type\:\ {0}=Hindi nahuling exception type\: {0}
+
+#: Editor.java:1133 Editor.java:1355
+Undo=Ipawalang Bisa
+
+#: Platform.java:168
+Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Hindi malamang platform, walang launcher na maaaring magamit.\nPara mabuksan ang URLs o folders, magdagdag ng\n"launcher\=/path/to/app" sa preferences.txt
+
+#: UpdateCheck.java:111
+Update=I-update
+
+#: Preferences.java:428
+Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Baguhin ang sketch files na gumamit ng bagong extension kapag nagsave (.pde -> .ino)
+
+#: EditorToolbar.java:41 Editor.java:545
+Upload=I-upload
+
+#: EditorToolbar.java:46 Editor.java:553
+Upload\ Using\ Programmer=I-upload gamit ang Programmer
+
+#: Editor.java:2403 Editor.java:2439
+Upload\ canceled.=Nakansela ang pag upload.
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+Uploading\ to\ I/O\ Board...=Ina-upload sa I/O Board...
+
+#: Sketch.java:1622
+Uploading...=Inaupload...
+
+#: Editor.java:1269
+Use\ Selection\ For\ Find=Gamitin ang Napili sa Paghahanap
+
+#: Preferences.java:409
+Use\ external\ editor=Gumamit ng ibang editor
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+Verify=Beripikahin
+
+#: Editor.java:609
+Verify\ /\ Compile=Beripikahin / I-compile
+
+#: Preferences.java:400
+Verify\ code\ after\ upload=I-verify ang code pagkatapos mai-upload
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+Visit\ Arduino.cc=Bisitahin ang Arduino.cc
+
+#: Base.java:2128
+Warning=Warning
+
+#: debug/Compiler.java:444
+Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ay pinangalanang Wire.read().
+
+#: debug/Compiler.java:438
+Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() ay pinangalanan ng Wire.write().
+
+#: FindReplace.java:105
+Wrap\ Around=Wrap Around
+
+#: debug/Uploader.java:213
+Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mali ang nakitang microcontroller. Napili mo ba ang tamang board mula sa Mga Kasangkapan > Board menu?
+
+#: Preferences.java:77 UpdateCheck.java:108
+Yes=Oo
+
+#: Sketch.java:1074
+You\ can't\ fool\ me=Hindi mo ako maloloko
+
+#: Sketch.java:411
+You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Hindi maaaring magkaroon ng .cpp file na kaparehong pangalan ng sketch.
+
+#: Sketch.java:421
+You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Hindi maaaring palitan ang pangalan sa "{0}"\nsapagkat mayroon ng .cpp file na may ganyang pangalan sa sketch.
+
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Hindi maaaring ma-save ang sketch bilang "{0}"\ndahil ang mayroon na itong .cpp na may parehong pangalan.
+
+#: Sketch.java:883
+You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Hindi mo maaaring i-save ang sketch sa loob ng folder\nkung saaan nakalagay sketch. Magpapatuloy lamang ito ng walang katapusan.
+
+#: Base.java:1888
+You\ forgot\ your\ sketchbook=Nakalimutan mo ang iyong sketchbook
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Naabot mo na ang limit para sa pagauto-name ng bagong sketches\npara sa araw na ito. Bakit hindi ka maglakad lakad sa paligid-ligid?
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+".{0}"\ is\ not\ a\ valid\ extension.=".{0}" ay hindi tamang extension.
+
+#: SketchCode.java:258
+#, java-format
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=Ang "{0}" ay naglalaman ng hindi maintidihang titik. Kung ang code na ito ay ginawa mula sa lumang bersyon ng Processing, Kinakailangan mong gamitin ang Mga Kasangkapan -> Itama ang Encoding at I-reload para magamit ang UTF-8 encoding sa sketch. Kung hindi naman ay kinakailangan mong alisin ang mga hindi maintidihang titik para maalis ang babalang ito.
+
+#: debug/Compiler.java:409
+\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nMula sa Arduino 0019, ang Ethernet library ay nakasalalay sa SPI library.\nMaaaring ginagamit mo ito o kaya ibang library na nakasalalay sa SPI library.\n\n
+
+#: debug/Compiler.java:415
+\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nMula sa Arduino 1.0, ang 'BYTE' keyword ay hindi na susuportahan.\nMaaari lamang na gumamit na lang ng Serial.write().\n\n
+
+#: debug/Compiler.java:427
+\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nMula sa Arduino 1.0, ang Client class mula sa Ethernet library ay pinangalanan ng EthernetClient.\n\n
+
+#: debug/Compiler.java:421
+\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nMula sa Arduino 1.0, ang Server class mula sa Ethernet library ay papalitan na para maging EthernetServer.\n\n
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nMula sa Arduino 1.0, ang Wire.receive() function ay pinangalanan ng Wire.read() para sa pagkakapareho sa ibang libraries.\n\n
+
+#: debug/Compiler.java:439
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nMula sa Arduino 1.0, ang Wire.send() function ay pinangalanan ng Wire.write() para sa pagkakakapareho sa ibang libraries.\n\n
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+compilation\ =compilation
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+createNewFile()\ returned\ false=createNewFile() ay nagbalik ng false
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+environment=environment
+
+#: Editor.java:1108
+http\://arduino.cc/=http\://arduino.cc/
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
+
+#: UpdateCheck.java:53
+http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
+
+#: Base.java:2075
+http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
+
+#: Preferences.java:625
+#, java-format
+ignoring\ invalid\ font\ size\ {0}=hindi papansinin ang maling sukat ng font {0}
+
+#: Base.java:2080
+index.html=index.html
+
+#: Editor.java:936 Editor.java:943
+name\ is\ null=ang pangalan ay null
+
+#: Base.java:2090
+platforms.html=platforms.html
+
+#: Serial.java:451
+#, java-format
+readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer ay masyadong maliit para sa {0} bytes hanggang sa char {1}
+
+#: Sketch.java:647
+removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error...hindi makita ang code
+
+#: Editor.java:932
+serialMenu\ is\ null=serialMenu ay null
+
+#: debug/Uploader.java:195
+#, java-format
+the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=hindi makita ang napiling serial port {0} o kaya naman ay hindi kunektado ang iyong board
+
+#: Preferences.java:391
+upload=upload
+
+#: Editor.java:380
+#, java-format
+{0}\ files\ added\ to\ the\ sketch.={0} files and naidagdag sa sketch.
+
+#: debug/Compiler.java:365
+#, java-format
+{0}\ returned\ {1}={0} ay nagbalik ng {1}
+
+#: Editor.java:2213
+#, java-format
+{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+
+#: Editor.java:1874
+#, java-format
+{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_fr.po b/app/src/processing/app/i18n/Resources_fr.po
index 3fd724101..bf781712b 100644
--- a/app/src/processing/app/i18n/Resources_fr.po
+++ b/app/src/processing/app/i18n/Resources_fr.po
@@ -15,9 +15,9 @@ 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: 2012-12-20 22:55+0000\n"
-"Last-Translator: dbarbier Closing the last open sketch will quit Arduino."
-msgstr ""
-" Cerrar o último sketch aberto fará que \n"
-"Arduino se peche."
+msgstr " Cerrar o último sketch aberto fará que \nArduino se peche."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr ""
-" Se non os "
-"gardas, perderanse os cambios."
+msgstr " Se non os gardas, hanse perder os cambios."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "Un arquivo chamado \"{0}\" xa existe en \"{1}\""
+msgstr "Xa hai un ficheiro chamado «{0}» en «{1}»"
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
msgstr "Xa existe unha carpeta chamada \"{0}\". Non se puido abri-lo sketch."
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
-msgstr ""
+msgstr "Xa hai unha biblioteca chamada «{0}»"
#: UpdateCheck.java:103
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr ""
-"Está dispoñible unha nova versión de Arduino,\n"
-"desexa visitar a páxina de descargas de Arduino?"
+msgstr "Está dispoñible unha nova versión de Arduino,\ndesexa visitar a páxina de descargas de Arduino?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr ""
-"Ocorreu un problema mentres se tentaba abri-los\n"
-"arquivos utilizados para gardar a saída da consola."
+msgstr "Ocorreu un problema mentres se tentaba abri-los\narquivos utilizados para gardar a saída da consola."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
msgstr "Acerca de Arduino"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "Agregar Arquivo..."
+msgstr "Engadir un ficheiro..."
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
-msgstr ""
+msgstr "Engadir unha biblioteca..."
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"Ocorreu un erro mentres se intentaba amaña-la codificación do\n"
-"arquivo. Non intentes gardar este sketch porque pode sobreescribir a\n"
-"versión anterior. Utiliza Abrir para volver a abrir o sketch e intentalo de novo.\n"
+msgstr "Ocorreu un erro mentres se intentaba amaña-la codificación do\narquivo. Non intentes gardar este sketch porque pode sobreescribir a\nversión anterior. Utiliza Abrir para volver a abrir o sketch e intentalo de novo.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "Ocorreu un erro descoñecido mentres\n"
-"se cargaba o código especifico para a súa plataforma."
-
-#: Preferences.java:84
-msgid "Arabic"
-msgstr ""
+msgstr "Produciuse un erro descoñecido mentres\nse cargaba o código especifico para a súa plataforma."
#: Preferences.java:85
+msgid "Arabic"
+msgstr "Árabe"
+
+#: Preferences.java:86
msgid "Aragonese"
-msgstr ""
+msgstr "Aragonés"
#: tools/Archiver.java:48
msgid "Archive Sketch"
@@ -134,92 +118,91 @@ msgstr "Arquivar Sketch"
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Arquivar sketch como:"
+msgstr "Arquivar o sketch como:"
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Archivado de sketch cancelado"
+msgstr "Cancelouse o archivado do sketch."
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"O arquivado do sketch foi cancelado porque\n"
-"non foi posible garda-lo sketch correctamente."
+msgstr "Cancelouse o arquivado do sketch porque\nnon foi posíbel gardalo correctamente."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
-msgstr ""
+msgstr "Placas Arduino ARM (32-bits)"
#: ../../../processing/app/I18n.java:82
msgid "Arduino AVR Boards"
-msgstr ""
+msgstr "Placas Arduino AVR"
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"Arduino non se pode executar porque non puido\n"
-"crear unha carpeta para gardar a túa configuración."
+msgstr "Arduino non se pode executar porque non puido\ncrear unha carpeta para gardar a túa configuración."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
-"Arduino non se pode executar porque no puido\n"
-"crear unha carpeta para gardar o teu Sketchbook."
+msgstr "Arduino non se pode executar porque no puido\ncrear unha carpeta para gardar o teu Sketchbook."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr ""
-"Arduino require o JDK completo (non só o JRE)\n"
-"para funcionar. Por favor instale o JDK 1.5 ou superior.\n"
-"Poderá atopar máis información na documentación."
+msgstr "Arduino require o JDK completo (non só o JRE)\npara funcionar. Por favor instale o JDK 1.5 ou superior.\nPoderá atopar máis información na documentación."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Estás seguro de que desexas borrar \"{0}\"?"
+msgstr "Desexa realmente borrar «{0}»?"
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Estás seguro de que desexas borrar este sketch?"
+msgstr "Desexa realmente borrar este sketch?"
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
msgstr "Formateado Automático"
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
msgid "Auto Format Canceled: Too many left curly braces."
msgstr "Formateado Automático Cancelado: demasiadas chaves esquerdas"
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
msgid "Auto Format Canceled: Too many left parentheses."
msgstr "Formateado Automático Cancelado: demasiados paréntesis esquerdos"
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
msgid "Auto Format Canceled: Too many right curly braces."
msgstr "Formateado Automático Cancelado: demasiadas chaves dereitas"
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
msgid "Auto Format Canceled: Too many right parentheses."
msgstr "Formateado Automático Cancelado: demasiados paréntesis dereitos"
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
msgstr "Formateado Automático rematado"
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
msgstr "Asociar automáticamente arquivos .ino con Arduino"
@@ -227,123 +210,146 @@ msgstr "Asociar automáticamente arquivos .ino con Arduino"
msgid "Autoscroll"
msgstr "Desprazamento automático"
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
msgstr "Liña de erro incorrecta: {0}"
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
-msgstr "Seleccionado arquivo incorrecto"
+msgstr "Escolleuse un ficheiro danado"
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
msgstr ""
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Tarxeta"
+msgstr "Placa"
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
msgstr "Ambos NL & CR"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
msgstr "Navegar"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "A carpeta de desplegue desapareceu ou non se pode escribir nela"
+msgstr "O cartafol de construción desapareceu ou non foi posíbel escribir nel"
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
+msgstr "Búlgaro"
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
msgstr ""
-#: Editor.java:699
+#: Editor.java:708
msgid "Burn Bootloader"
-msgstr "Grabar Cargador de Inicio"
+msgstr "Gravar o cargador de inicio"
-#: Editor.java:2457
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Grabando o cargador de inicio á Tarxeta E/S (Esto pode tardar "
-"uns minutos)..."
+msgstr "Grabando o cargador de inicio á Tarxeta E/S (Esto pode tardar uns minutos)..."
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
-msgstr ""
+msgstr "Non foi posíbel abrir a fonte do sketch!"
#: ../../../processing/app/Preferences.java:92
msgid "Canadian French"
-msgstr ""
+msgstr "Francés do Canadá"
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "Cancelar"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr "Non se pode renomear"
+msgstr "Non se pode cambiar o nome"
#: SerialMonitor.java:112
msgid "Carriage return"
msgstr "Retorno de carro"
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
-msgstr ""
+msgstr "Catalán"
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
msgstr "Buscar actualizacións ao iniciar"
-#: Preferences.java:87
-msgid "Chinese Simplified"
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
msgstr ""
#: Preferences.java:88
-msgid "Chinese Traditional"
-msgstr ""
+msgid "Chinese Simplified"
+msgstr "Chinés simplificado"
-#: Editor.java:514 Editor.java:1977
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr "Chinés tradicional"
+
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "Pechar"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
msgstr "Comentar/Descomentar"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
msgstr "Erro de compilación, por favor envía este código a {0}"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Compilando Sketch..."
+msgstr "Estase a compilar o sketch..."
#: EditorConsole.java:152
msgid "Console Error"
msgstr "Erro de Consola"
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "Copiar"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
msgstr "Copiar como HTML"
@@ -351,38 +357,38 @@ msgstr "Copiar como HTML"
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Copiar para o Foro"
+msgstr "Copiar para o foro"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "Non se pode engadir ''{0}'' ao sketch."
+msgstr "Non foi posíbel engadir ''{0}'' ao sketch."
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
msgstr "Non se puido copiar a unha ubicación axeitada."
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
msgstr "Non se puido crea-la carpeta do sketch."
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
msgstr "Non se puido crea-lo sketch."
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Non se pode borrar \"{0}\"."
+msgstr "Non foi posíbel borrar «{0}»."
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Non se pode borrar o arquivo existente ''{0}''."
+msgstr "Non se pode borrar o ficheiro existente ''{0}''."
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
msgstr "Non se pode borrar {0}"
@@ -402,206 +408,202 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
-"Non se pode abrir a URL\n"
-"{0}"
+msgstr "Non se pode abrir a URL\n{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"Non se pode abrir a carpeta\n"
-"{0}"
+msgstr "Non se pode abrir a carpeta\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
-"Non se pode gardar correctamente o sketch. Pode haber problemas neste punto,\n"
-"e é aconsellable que copies e pegues o teu código noutro editor de textos."
+msgstr "Non foi posíbel gardar de novo o sketch. Pode estar nun apuro,\ne pode ser hora de copiar e apegar o código noutro editor de textos."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "Non se pode gardar de novo o sketch"
+msgstr "Non foi posíbel gardar de novo o sketch"
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr ""
-"Non se pode ler a configuración do esquema de cor.\n"
-"Necesitarás volver a instalar Processing."
+msgstr "Non se pode ler a configuración do esquema de cor.\nNecesitarás volver a instalar Processing."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
-"Non se poden ler as configuracións predeterminadas.\n"
-"Necesitarás reinstalar Arduino."
+msgstr "Non se poden ler as configuracións predeterminadas.\nNecesitarás reinstalar Arduino."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
msgstr "No se poden ler as preferencias de {0}"
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
msgstr "Non se pode eliminar a versión anterior de {0}"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "Non se pode renomear \"{0}\" a \"{1}\""
+msgstr "Non se pode cambiar o nome de «{0}» a «{1}»"
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "Non se pode renomea-lo sketch. (0)"
+msgstr "Non foi posíbel cambiar o nome do sketch. (0)"
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Non se pode renomea-lo sketch. (1)"
+msgstr "Non foi posíbel cambiar o nome do sketch. (1)"
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Non se pode renomea-lo sketch. (2)"
+msgstr "Non foi posíbel cambiar o nome do sketch. (2)"
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
msgstr "Non se pode reemplazar {0}"
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Non se pode arquivar o sketch"
+msgstr "Non foi posíbel arquivar o sketch"
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Non se pode determinar o tamaño do programa: {0}"
+msgstr "Non foi posíbel determinar o tamaño do programa: {0}"
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "Non foi posible facelo"
+msgstr "Non foi posíbel facelo"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
"after initiating the upload."
-msgstr ""
+msgstr "Non foi posíbel atopar unha placa no porto escollido. Comprobe que escollese o porto correcto. Se o é, probe a premer o botón de\nreinicio da placa despois de iniciar a transferencia."
#: ../../../processing/app/Preferences.java:82
msgid "Croatian"
-msgstr ""
+msgstr "Croata"
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "Cortar"
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
-msgstr ""
+msgstr "Checo"
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
-msgstr ""
+msgstr "Danés"
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Reducir Indentación"
+msgstr "Diminuír o sangrado"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
msgstr "Borrar"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr ""
-"O dispositivo non responde, revisa que esté seleccionado o porto serie "
-"correcto ou REINICIA a tarxeta xusto antes de exportar"
+msgstr "O dispositivo non responde, revisa que esté seleccionado o porto serie correcto ou REINICIA a tarxeta xusto antes de exportar"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
msgstr "Descartar tódolos cambios e recargar sketch?"
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "Non Gardar"
+msgstr "Non gardar"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
msgstr "Gardado rematado."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
msgstr "Rematado o grabado do cargador de inicio."
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
-msgstr "Compilación rematada"
+msgstr "Rematouse a compilación."
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
msgstr "Impresión rematada."
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
msgstr "Carga rematada."
-#: Preferences.java:90
+#: Preferences.java:91
msgid "Dutch"
+msgstr "Holandés"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
msgstr ""
-#: Editor.java:1116
+#: Editor.java:1130
msgid "Edit"
msgstr "Editar"
-#: Preferences.java:354
+#: Preferences.java:370
msgid "Editor font size: "
msgstr "Tamaño do tipo de letra para o editor: "
-#: Preferences.java:337
+#: Preferences.java:353
msgid "Editor language: "
-msgstr ""
+msgstr "Idioma do editor: "
-#: Preferences.java:91
+#: Preferences.java:92
msgid "English"
+msgstr "Inglés"
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
msgstr ""
-#: Editor.java:1049
+#: Editor.java:1062
msgid "Environment"
-msgstr "Entorno"
+msgstr "Ambiente"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "Erro"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr "Erro engadindo o arquivo"
+msgstr "Erro engadindo o ficheiro"
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
msgstr "Erro compilando"
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
msgstr "Error obtendo a carpeta de datos de Arduino"
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
msgstr "Erro dentro de Serial.{0}()"
@@ -617,34 +619,32 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
msgstr "Erro abrindo o porto serie ''{0}''."
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr "Erro lendo as preferencias"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"Erro lendo o arquivo de preferencias. Por favor borra (ou move)\n"
-"{0} e reinicie Arduino."
+msgstr "Erro lendo o arquivo de preferencias. Por favor borra (ou move)\n{0} e reinicie Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
-msgstr ""
+msgstr "Produciuse un erro ao tocar o porto serie «{0}»."
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
msgstr "Erro ao grabar o cargador de inicio."
@@ -655,9 +655,9 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Erro mentres se cargaba o código {0}"
+msgstr "Produciuse un erro mentres se cargaba o código {0}"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
msgstr "Erro na impresión."
@@ -666,47 +666,51 @@ msgstr "Erro na impresión."
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
+msgstr "Estoniano"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
msgstr ""
-#: Editor.java:509
+#: Editor.java:516
msgid "Examples"
msgstr "Exemplos"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
msgstr "Exportación cancelada, primeiro débense garda-los cambios."
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
-msgstr ""
+msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
-msgstr "Arquivo"
+msgstr "Ficheiro"
#: Preferences.java:94
msgid "Filipino"
-msgstr ""
+msgstr "Filipino"
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
msgstr "Buscar"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Buscar Seguinte"
+msgstr "Buscar o seguinte"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Buscar Anterior"
+msgstr "Buscar o anterior"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Buscar na Documentación"
+msgstr "Buscar na documentación"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
msgstr "Buscar..."
@@ -714,108 +718,122 @@ msgstr "Buscar..."
msgid "Find:"
msgstr "Buscar:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
msgstr "Amañar Codificación e Recargar"
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
-msgstr ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr "Para obter máis información acerca de como instalar bibliotecas consulte: http://arduino.cc/en/Guide/Libraries.\n"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
-msgstr ""
+msgstr "Fórzase o reinicio usando 1200 bps para abrir/pechar no porto"
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
-msgstr ""
+msgstr "Francés"
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
msgstr "Preguntas frecuentes"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
-msgstr ""
+msgstr "Galego"
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
-msgstr ""
+msgstr "Xeorxiano"
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
-msgstr ""
+msgstr "Alemán"
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
msgstr "Comezando"
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
-msgstr ""
+msgstr "Grego"
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
-msgstr ""
+msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
-msgstr ""
+msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
-msgstr ""
+msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
-msgstr ""
+msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
-msgstr ""
+msgstr "Hebreo"
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "Axuda"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
-msgstr ""
+msgstr "Hindi"
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"Qué tal se gardas o sketch primeiro \n"
-"antes de tentar renomealo?"
+msgstr "Que tal se gardas o sketch \nantes de tentar cambiarlle o nome?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "Parece que esto o fixo Borges"
+msgstr "Parece que isto o fixo Borges"
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
-msgstr ""
+msgstr "Húngaro"
#: FindReplace.java:96
msgid "Ignore Case"
msgstr "Ignorar maiúsculas e minúsculas"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
msgstr "Ignorando nome incorrecto de libraría"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "Ignorando sketch con nome incorrecto"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Importar Libraría..."
+msgstr "Importar unha libraría..."
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -828,86 +846,80 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Incrementar Indentación"
+msgstr "Aumentar o sangrado"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
-msgstr ""
+msgstr "Indonesio"
#: ../../../processing/app/Base.java:1204
#, java-format
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
-msgid "Italian"
-msgstr ""
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr ""
-
#: Preferences.java:102
-msgid "Korean"
-msgstr ""
+msgid "Italian"
+msgstr "Italiano"
#: Preferences.java:103
-msgid "Latvian"
-msgstr ""
-
-#: ../../../processing/app/Base.java:2903
-msgid "Library added to your libraries. Check \"Import library\" menu"
-msgstr ""
+msgid "Japanese"
+msgstr "Xaponés"
#: Preferences.java:104
+msgid "Korean"
+msgstr "Coreano"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "Letón"
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr "Engadiuse ás súas bibliotecas. Vote unha ollada no menú «Importar a biblioteca...»"
+
+#: Preferences.java:106
msgid "Lithuaninan"
-msgstr ""
+msgstr "Lituano"
#: ../../../processing/app/Sketch.java:1660
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
-msgstr ""
+msgstr "Maratí"
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "Mensaxe"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
msgstr "Falta o */ ao final dun comentario de tipo /* */"
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
msgstr "Pódense editar directamente máis preferencias no arquivo"
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
msgstr "Movendo"
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Nome para o novo arquivo:"
+msgstr "Nome do novo ficheiro:"
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "Novo"
@@ -927,22 +939,21 @@ msgstr "Nova liña"
msgid "Next Tab"
msgstr "Pestana seguinte"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "Non"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Non hai tarxeta seleccionada; por favor escolle unha tarxeta do menú\n"
-"Ferramentas > Tarxeta"
+msgstr "Non hai tarxeta seleccionada; por favor escolle unha tarxeta do menú\nFerramentas > Tarxeta"
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr "Non se necesitan cambios para o Formateado Automático"
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "Non se agregou ningún arquivo ao sketch."
+msgstr "Non se engadiu ningún ficheiro ao sketch."
#: Platform.java:167
msgid "No launcher available"
@@ -952,34 +963,35 @@ msgstr "No hai un lanzador dispoñible"
msgid "No line ending"
msgstr "Non hai fin de liña"
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
msgstr "En serio, é hora de que tomes un pouco de aire fresco."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "Non hai referencias dispoñibles para \"{0}\""
+msgstr "Non hai referencias dispoñíbeis para \"{0}\""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
-msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Erro non grave mentres se configuraba a aparencia."
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr "Produciuse un erro non grave mentres se configuraba a aparencia."
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
msgstr "Negativo"
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
-
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
-msgstr ""
+msgstr "Noruegués Bokmål"
#: ../../../processing/app/Sketch.java:1656
msgid ""
@@ -987,24 +999,24 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
msgstr "Aceptar"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "Un arquivo agregado ao sketch."
+msgstr "Engadiuse un ficheiro ao sketch."
#: EditorToolbar.java:41
msgid "Open"
msgstr "Abrir"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "Abrir URL"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
msgstr "Abrir un sketch de Arduino..."
@@ -1012,48 +1024,55 @@ msgstr "Abrir un sketch de Arduino..."
msgid "Open in Another Window"
msgstr "Abrir noutra Ventá"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "Abrir..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Configuración de Páxina"
+msgstr "Configuración de páxina"
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "Pegar"
+msgstr "Apegar"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
-msgstr ""
+msgstr "Persa"
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Por favor importa a libraría SPI utilizando o menú\n"
-"Sketch > Importar Libraría."
+msgstr "Por favor importa a libraría SPI utilizando o menú\nSketch > Importar Libraría."
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
msgstr "Por favor instale o JDK 1.5 ou posterior"
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
-msgstr ""
+msgstr "Polaco"
#: ../../../processing/app/Editor.java:718
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
msgstr "Preferencias"
@@ -1065,27 +1084,27 @@ msgstr "Anterior"
msgid "Previous Tab"
msgstr "Pestana anterior"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
msgstr "Imprimir"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
msgstr "Impresión cancelada."
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
msgstr "Imprimindo..."
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
msgstr "Problema abrindo a carpeta"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
msgstr "Problema abrindo a URL"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
msgstr "Problema Configurando a Plataforma"
@@ -1097,52 +1116,48 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
msgstr "Problema obtendo carpeta de datos"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Problema movendo {0} á carpeta de desplegue"
+msgstr "Problema movendo {0} ao cartafol de construción"
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
-msgstr ""
-"Problema cargando á tarjeta. Vea http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload para suxerencias."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr "Problema cargando á tarjeta. Vea http://www.arduino.cc/en/Guide/Troubleshooting#upload para suxerencias."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Problema ao renomear"
+msgstr "Problema ao cambiar o nome"
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
-"Processing só pode abrir os seus propios sketches\n"
-"e outros arquivos rematados en .ino ou .pde"
+msgstr "Processing só pode abrir os seus propios sketches\ne outros ficheiros rematados en .ino ou .pde"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
-msgstr ""
+msgstr "Procesador"
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
msgstr "Programador"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "Saír"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
msgstr "Refacer"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
msgstr "Documentación"
@@ -1150,7 +1165,7 @@ msgstr "Documentación"
msgid "Rename"
msgstr "Renomear"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "Reemplazar"
@@ -1162,71 +1177,70 @@ msgstr "Reemplazar e Buscar"
msgid "Replace All"
msgstr "Reemplazar Todo"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Reemplazar a versión existente de {0}?"
+msgstr "Desexa substituír a versión existente de {0}?"
#: FindReplace.java:81
msgid "Replace with:"
msgstr "Reemplazar con:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr ""
+msgstr "Romanés"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
-msgstr ""
+msgstr "Ruso"
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "Gardar"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
msgstr "Gardar como..."
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
msgstr "Gardado cancelado."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
msgstr "Gardar cambios antes de exportar?"
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Gardar cambios a \"{0}\"? "
+msgstr "Desexa gardar os cambios a \"{0}\"? "
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Gardar a carpeta do sketch como..."
+msgstr "Gardar o cartafol do sketch como..."
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
msgstr "Gardando..."
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
msgstr "Selecciona (ou crea unha nova) carpeta para os sketches..."
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Seleccionar Todo"
+msgstr "Escoller todo"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
-msgstr ""
+msgstr "Escolla un arquivo zip ou un cartafol que conteña a biblioteca que desexe engadir"
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Selecciona unha imaxe ou outro arquivo de datos para copiar "
-"ao teu sketch"
+msgstr "Escolla unha imaxe ou outro ficheiro de datos para copiar no sketch"
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
msgstr "Selecciona a nova ubicación do Sketchbook"
@@ -1238,211 +1252,200 @@ msgstr ""
msgid "Send"
msgstr "Enviar"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "Monitor Serie"
+msgstr "Monitor o porto serie"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr ""
-"El porto serie ''{0}'' xa está en uso. Intenta pechar calquer outro programa "
-"que o poida estar usando."
+msgstr "El porto serie ''{0}'' xa está en uso. Intenta pechar calquer outro programa que o poida estar usando."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
-msgstr ""
+msgstr "O porto serie «{0}» xa está a ser usado. Probe a pechar calquera programa que o poida estar a usar."
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr ""
-"Porto serie ''{0}'' non atopado. Estás seguro de que seleccionaches o porto correcto "
-"do menú Ferramentas > Porto Serie?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr "Porto serie ''{0}'' non atopado. Estás seguro de que seleccionaches o porto correcto do menú Ferramentas > Porto Serie?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"O porto serie {0} non foi atopado\n"
-"Volver a tenta-la carga con outro porto serie?"
+msgstr "O porto serie {0} non foi atopado\nVolver a tenta-la carga con outro porto serie?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
msgstr "Problemas de configuración"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Mostrar Carpeta de Sketch"
+msgstr "Mostrar a carpeta do Sketch"
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
msgstr "Mostrar resultado detallado durante: "
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr ""
+msgstr "Sketch"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
msgstr "O sketch desapareceu"
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
msgstr "O sketch non existe"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
msgstr "O sketch é de só lectura"
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
msgstr "O sketch non ten nome"
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
msgstr "O sketch é de só lectura"
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr ""
-"Sketch demasiado grande; ver http://www.arduino.cc/en/Guide/"
-"Troubleshooting#size para obter consellos de cómo reducilo."
+msgstr "Sketch demasiado grande; consulte http://www.arduino.cc/en/Guide/Troubleshooting#size para obter consellos de como reducilo."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
-msgstr ""
+msgstr "Caderno de sketches"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
msgstr "A carpeta Sketchbook desapareceu"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
msgstr "Ubicación do Sketchbook:"
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"Algúns arquivos están marcados como de \"só lectura\",\n"
-"así que necesitarás gardar de novo este sketch noutra ubicación,\n"
-"e tentalo de novo."
+msgstr "Algúns ficheiros están marcados como de «só lectura»,\nasí que deberás gardar de novo este sketch noutro lugar,\ne tentalo de novo."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
-"Algúns arquivos están marcados como de \"só lectura\",\n"
-"así que necesitarás gardar de novo este sketch noutra ubicación."
+msgstr "Algúns ficheiros están marcados como de «só lectura»,\nasí que necesitarás gardar de novo este sketch noutro lugar."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Síntoo, xa existe un sketch (ou carpeta) chamado \"{0}\"."
+msgstr "Síntoo, xa existe un sketch (ou cartafol) chamado «{0}»."
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
-msgstr ""
+msgstr "Español"
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
msgstr "O sol brilla"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
-msgstr ""
+msgstr "Predeterminado do sistema"
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
-msgstr ""
+msgstr "Tamil"
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
msgstr "A palabra chave 'BYTE' xa non está soportada."
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
msgstr "A clase Client foi renomeada a EthernetClient."
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
msgstr "A clase Server foi renomeada a EthernetServer."
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
msgstr "A clase Udp foi renomeada a EthernetUdp."
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "A continuación móstrase a mensaxe de erro, pero Arduino debe continuar\n"
-"funcionando ben."
+msgstr "A continuación móstrase a mensaxe de erro, pero Arduino debe continuar\nfuncionando ben."
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
-"O arquivo \"{0}\" necesita estar dentro\n"
-"dunha carpeta de sketch chamada \"{1}\".\n"
-"Crear esta carpeta, mover este arquivo e continuar?"
+msgstr "O ficheiro \"{0}\" debe estar dentro\ndun cartafol de sketchs chamado «{1} x.\nCrear esta cartafol mover este ficheiro e continuar?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
-"A libraría \"{0}\" non se pode usar.\n"
-"Os nomes de libraría deben conter soamente letras básicas e números\n"
-"(Só ASCII sen espazos, e non pode comezar con un número).\n"
+msgstr "A libraría \"{0}\" non se pode usar.\nOs nomes de libraría deben conter soamente letras básicas e números\n(Só ASCII sen espazos, e non pode comezar con un número)."
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr ""
-"O arquivo principal non pode usar unha extensión.\n"
-"(Pode que sexa hora de que cambies pouco a pouco a un\n"
-"entorno de desenrolo \"real\")"
+msgstr "O ficheiro principal non pode usar unha extensión.\n(Poida que sexa hora de que cambies pouco a pouco a un\nentorno de desenvolvemento «real»)"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
msgstr "O nome non pode comezar con un punto."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"O sketch seleccionado non existe.\n"
-"É posible que necesites reiniciar Arduino\n"
-"para actualizar o menú Sketchbook."
+msgstr "O sketch seleccionado non existe.\nÉ posible que necesites reiniciar Arduino\npara actualizar o menú Sketchbook."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1450,76 +1453,57 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-"O sketch \"{0}\" non se pode usar.\n"
-"Os nomes de sketch deben conter soamente letras básicas e números\n"
-"(Só ASCII sen espazos, e non pode comezar con un número).\n"
-"Para desfacerte de esta mensaxe, elimina o sketch de\n"
-"{1}"
+msgstr "O sketch \"{0}\" non se pode usar.\nOs nomes de sketch deben conter soamente letras básicas e números\n(Só ASCII sen espazos, e non pode comezar con un número).\nPara desfacerte de esta mensaxe, elimina o sketch de\n{1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
-"A carpeta do sketch desapareceu.\n"
-"Tentarase gardar de novo na mesma ubicación,\n"
-"pero calquera cousa aparte do código vaise perder."
+msgstr "O cartafol do sketch desapareceu.\nHase tentar gardar de novo no mesmo lugar,\npero calquera cousa aparte do código vaise perder."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
-"Débese cambiar o nome do sketch. Os nomes de sketch só poden conter\n"
-"caracteres ASCII e números (pero non pode comezar con un número).\n"
-"Tamén deben conter menos de 64 caracteres."
+msgstr "Débese cambiar o nome do sketch. Os nomes de sketch só poden conter\ncaracteres ASCII e números (pero non pode comezar con un número).\nTamén deben conter menos de 64 caracteres."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr ""
-"A carpeta Sketchbook xa non existe.\n"
-"Arduino cambiará á ubicación predeterminada\n"
-"do Sketchbook, e creará unha nova carpeta Sketchbook\n"
-"se fose necesario. Arduino despois deixará de falar de si mesmo\n"
-"en terceira persoa."
+msgstr "A carpeta Sketchbook xa non existe.\nArduino cambiará á ubicación predeterminada\ndo Sketchbook, e creará unha nova carpeta Sketchbook\nse fose necesario. Arduino despois deixará de falar de si mesmo\nen terceira persoa."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
-"Este arquivo xa foi copiado na ubicación\n"
-"dende a cal estás tentando engadilo.\n"
-"Non vou faser nada."
+msgstr "Este ficheiro xa foi copiado no lugar\ndende a cal estás a tentar engadilo.\nNon vou facer nada."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
msgstr "Hora de descansar"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "Ferramentas"
+msgstr "Utilidades"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
msgstr "Solución de problemas"
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
-msgstr ""
+msgstr "Turco"
#: ../../../processing/app/Editor.java:2507
msgid "Type board password to access its console"
@@ -1531,7 +1515,7 @@ msgstr ""
#: ../../../processing/app/Preferences.java:118
msgid "Ukrainian"
-msgstr ""
+msgstr "Ucraniano"
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
@@ -1539,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1550,12 +1534,12 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Excepción non atrapada de tipo: {0}"
+msgstr "Excepción non recollida de tipo: {0}"
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
msgstr "Desfacer"
@@ -1564,29 +1548,25 @@ msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"Plataforma non especificada, non hai un lanzador dispoñible.\n"
-"Para habilita-la apertura de URLs ou carpetas, engada unha liña como \n"
-"\"launcher=/ruta/de/app\" ao arquivo preferences.txt"
+msgstr "Plataforma non especificada, non hai un lanzador dispoñible.\nPara habilita-la apertura de URLs ou carpetas, engada unha liña como \n\"launcher=/ruta/de/app\" ao arquivo preferences.txt"
#: UpdateCheck.java:111
msgid "Update"
msgstr "Actualizar"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr "Actualiza-los arquivos do sketch con unha nova extensión ao gardar "
-"(.pde -> .ino)"
+msgstr "Actualiza-los arquivos do sketch con unha nova extensión ao gardar (.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "Cargar"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Cargar usando Programador"
+msgstr "Cargar usando o programador"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
msgstr "Carga cancelada."
@@ -1594,19 +1574,19 @@ msgstr "Carga cancelada."
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
msgstr "Cargando á Tarxeta de E/S..."
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Cargando..."
+msgstr "Estase a cargar..."
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Utilizar Selección para buscar"
+msgstr "Usar a escolla para buscar"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
msgstr "Usar editor externo"
@@ -1614,27 +1594,31 @@ msgstr "Usar editor externo"
msgid "Verify"
msgstr "Verificar"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
msgstr "Verificar / Compilar"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
msgstr "Verificar o código despois de cargar"
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
msgstr "Visitar Arduino.cc"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
msgstr "Alerta"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() foi renomeada a Wire.read()."
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
msgstr "Wire.send() foi renomeado a Wire.write()."
@@ -1646,47 +1630,39 @@ msgstr "Búsqueda cíclica"
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
-msgstr ""
-"Atopouse un microcontrolador equivocado. Seleccionaches a tarxeta correcta do "
-"menú Ferramentas > Tarxeta?"
+msgstr "Atopouse un microcontrolador equivocado. Seleccionaches a tarxeta correcta do menú Ferramentas > Tarxeta?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "Sí"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
msgstr "Non me podes enganar"
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "Non podes ter un arquivo .cpp co mesmo nome que o sketch."
+msgstr "Non podes ter un ficheiro .cpp co mesmo nome que o sketch."
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Non podes renomear o sketch a \"{0}\"\n"
-"porque o sketch xa ten un arquivo .cpp con ese nome."
+msgstr "Non podes cambiar o nome do sketch a «{0}»\nporque o sketch xa ten un ficheiro .cpp con ese nome."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Non podes gardar o sketch como \"{0}\"\n"
-"porque o sketch xa ten un arquivo .cpp con ese nome."
+msgstr "Non podes gardar o sketch como «{0}»\nporque o sketch xa ten un ficheiro .cpp con ese nome."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"Non podes gardar o sketch nunha carpeta\n"
-"dentro de si mesma. Esto podería acabar nun bucle infinito."
+msgstr "Non podes gardar o sketch nun cartafol\ndentro de si mesmo. Isto podería acabar nun bucle infinito."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
msgstr "Olvidaches o teu Sketchbook"
@@ -1695,26 +1671,24 @@ msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
-"Alcanzaches o límite para o auto nomeamento de novos sketches\n"
-"por hoxe. Qué tal se vas dar un paseo?"
+msgstr "Alcanzaches o límite para o auto nomeamento de novos sketches\npor hoxe. Qué tal se vas dar un paseo?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
-msgstr ""
+msgstr "Arquivos ZIP ou cartafoles"
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
-msgstr ""
+msgstr "O arquivo zip non contén unha biblioteca"
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" non é unha extensión válida."
+msgstr "«.{0}» non é unha extensión válida."
#: SketchCode.java:258
#, java-format
@@ -1723,101 +1697,64 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr ""
-"\"{0}\" contén caracteres irrecoñecibles. Se este código foi creado cunha "
-"versión antiga de Processing, pode que necesites usar Ferramentas -> "
-"Amañar Codificación e Recargar para actualizar o sketch para usar a codificación "
-"UTF-8. Senón, pode que necesites borrar os caracteres erróneos para desfacerte "
-"de este aviso."
+msgstr "«{0}» contén caracteres irrecoñecíbeis. Se este código foi creado cunha versión antiga de Processing poida que necesites usar Utilidades -> Corrixir a codificación e recargar para actualizar o sketch para usar a codificación UTF-8. Senón, poida que necesites borrar os caracteres erróneos para desfacerte deste aviso."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
-"\n"
-msgstr ""
-"\n"
-"Desde Arduino 0019, a libraría de Ethernet depende da libraría SPI.\n"
-"Parece que estás a usar esa libraría ou algunha outra libraría que "
-"depende da libraría SPI.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
+msgstr "\nDesde Arduino 0019, a libraría de Ethernet depende da libraría SPI.\nParece que estás a usar esa libraría ou algunha outra libraría que depende da libraría SPI.\n\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr ""
-"\n"
-"Desde Arduino 1.0, a palabra chave 'BYTE' xa non está soportada.\n"
-"Por favor utilice Serial.write() no seu lugar.\n"
-"\n"
+msgstr "\nDesde Arduino 1.0, a palabra chave 'BYTE' xa non está soportada.\nPor favor utilice Serial.write() no seu lugar.\n\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Desde Arduino 1.0, a clase Client na libraría Ethernet foi renomeada "
-"a EthernetClient.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
+msgstr "\nDesde Arduino 1.0, a clase Client na libraría Ethernet foi renomeada a EthernetClient.\n\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"Desde Arduino 1.0, a clase Server na libraría Ethernet foi renomeada "
-"a EthernetServer.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
+msgstr "\nDesde Arduino 1.0, a clase Server na libraría Ethernet foi renomeada a EthernetServer.\n\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
-msgstr ""
+msgstr "\nDesde Arduino 1.0, a clase Udp na biblioteca Ethernet cambiou de nome a EthernetUdp.\n\n"
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"Desde Arduino 1.0, a función Wire.receive() foi renomeada a Wire.read() "
-"para manter a consistencia con outras librarías.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
+msgstr "\nDesde Arduino 1.0, a función Wire.receive() foi renomeada a Wire.read() para manter a consistencia con outras librarías.\n\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"Desde Arduino 1.0, a función Wire.send() foi renomeada Wire.write() para "
-"manter a consistencia con outras librarías.\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
+msgstr "\nDesde Arduino 1.0, a función Wire.send() foi renomeada Wire.write() para manter a consistencia con outras librarías.\n\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
-msgstr ""
+msgstr "baudio"
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
msgstr "compilación "
@@ -1825,7 +1762,7 @@ msgstr "compilación "
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
msgstr "createNewFile() devolveu valor falso"
@@ -1833,95 +1770,88 @@ msgstr "createNewFile() devolveu valor falso"
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
msgstr "entorno"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
-msgstr ""
+msgstr "http://arduino.cc/"
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
-msgstr ""
+msgstr "http://github.com/arduino/Arduino/issues"
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
-msgstr ""
+msgstr "http://www.arduino.cc/en/Main/Software"
#: UpdateCheck.java:53
msgid "http://www.arduino.cc/latest.txt"
-msgstr ""
+msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
-msgstr ""
+msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ignorando tamaño inválido de tipo de letra {0}"
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
-msgstr ""
+msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "nome é nulo"
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
-msgstr ""
+msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr ""
-"O buffer de bytes de readBytesUntil() é demasiado pequeno para os {0} bytes "
-"anteriores incluíndo o caracter {1}"
+msgstr "O buffer de bytes de readBytesUntil() é demasiado pequeno para os {0} bytes anteriores incluíndo o caracter {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: erro interno... non foi posible atopar o código"
+msgstr "removeCode: erro interno... non foi posíbel atopar o código"
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu é nulo"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
-msgstr ""
-"O porto serie seleccionado {0} non existe ou a tarxeta non está conectada"
+msgstr "O porto serie seleccionado {0} non existe ou a tarxeta non está conectada"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
msgstr "carga"
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "{0} arquivos agregados ao sketch."
+msgstr "Engadíronse {0} ficheiros ao sketch."
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
msgstr "{0} devolveu {1}"
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr ""
+msgstr "{0} | Arduino {1}"
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr ""
+msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_gl.properties b/app/src/processing/app/i18n/Resources_gl.properties
index 38d0aea56..d666993fb 100644
--- a/app/src/processing/app/i18n/Resources_gl.properties
+++ b/app/src/processing/app/i18n/Resources_gl.properties
@@ -3,40 +3,40 @@
# This file is distributed under the same license as the Arduino IDE package.
# Diego Prado Gesto <>, 2012.
#
-!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-30 10\:40+0100\nPO-Revision-Date\: 2012-04-03 15\:00+0100\nLast-Translator\: Diego Prado Gesto <>\nLanguage-Team\: Galician\nLanguage\: gl\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Cerrar o \u00faltimo sketch aberto far\u00e1 que \nArduino se peche.
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Se non os gardas, perderanse os cambios.
+#: Editor.java:2053
+\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Se non os gardas, hanse perder os cambios.
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
-A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Un arquivo chamado "{0}" xa existe en "{1}"
+A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Xa hai un ficheiro chamado \u00ab{0}\u00bb en \u00ab{1}\u00bb
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Xa existe unha carpeta chamada "{0}". Non se puido abri-lo sketch.
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
-!A\ library\ named\ {0}\ already\ exists=
+A\ library\ named\ {0}\ already\ exists=Xa hai unha biblioteca chamada \u00ab{0}\u00bb
#: UpdateCheck.java:103
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Est\u00e1 dispo\u00f1ible unha nova versi\u00f3n de Arduino,\ndesexa visitar a p\u00e1xina de descargas de Arduino?
@@ -44,101 +44,107 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
#: EditorConsole.java:153
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ocorreu un problema mentres se tentaba abri-los\narquivos utilizados para gardar a sa\u00edda da consola.
-#: Editor.java:1102
+#: Editor.java:1116
About\ Arduino=Acerca de Arduino
-#: Editor.java:643
-Add\ File...=Agregar Arquivo...
+#: Editor.java:650
+Add\ File...=Engadir un ficheiro...
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
+#: Base.java:963
+Add\ Library...=Engadir unha biblioteca...
#: tools/FixEncoding.java:77
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ocorreu un erro mentres se intentaba ama\u00f1a-la codificaci\u00f3n do\narquivo. Non intentes gardar este sketch porque pode sobreescribir a\nversi\u00f3n anterior. Utiliza Abrir para volver a abrir o sketch e intentalo de novo.\n
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ocorreu un erro desco\u00f1ecido mentres\nse cargaba o c\u00f3digo especifico para a s\u00faa plataforma.
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Produciuse un erro desco\u00f1ecido mentres\nse cargaba o c\u00f3digo especifico para a s\u00faa plataforma.
#: Preferences.java:85
-!Aragonese=
+Arabic=\u00c1rabe
+
+#: Preferences.java:86
+Aragonese=Aragon\u00e9s
#: tools/Archiver.java:48
Archive\ Sketch=Arquivar Sketch
#: tools/Archiver.java:109
-Archive\ sketch\ as\:=Arquivar sketch como\:
+Archive\ sketch\ as\:=Arquivar o sketch como\:
#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=Archivado de sketch cancelado
+Archive\ sketch\ canceled.=Cancelouse o archivado do sketch.
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=O arquivado do sketch foi cancelado porque\nnon foi posible garda-lo sketch correctamente.
+Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Cancelouse o arquivado do sketch porque\nnon foi pos\u00edbel gardalo correctamente.
#: ../../../processing/app/I18n.java:83
-!Arduino\ ARM\ (32-bits)\ Boards=
+Arduino\ ARM\ (32-bits)\ Boards=Placas Arduino ARM (32-bits)
#: ../../../processing/app/I18n.java:82
-!Arduino\ AVR\ Boards=
+Arduino\ AVR\ Boards=Placas Arduino AVR
-#: Base.java:1441
+#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino non se pode executar porque non puido\ncrear unha carpeta para gardar a t\u00faa configuraci\u00f3n.
-#: Base.java:1603
+#: Base.java:1889
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino non se pode executar porque no puido\ncrear unha carpeta para gardar o teu Sketchbook.
-#: Base.java:233
+#: Base.java:240
Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino require o JDK completo (non s\u00f3 o JRE)\npara funcionar. Por favor instale o JDK 1.5 ou superior.\nPoder\u00e1 atopar m\u00e1is informaci\u00f3n na documentaci\u00f3n.
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Est\u00e1s seguro de que desexas borrar "{0}"?
+Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Desexa realmente borrar \u00ab{0}\u00bb?
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Est\u00e1s seguro de que desexas borrar este sketch?
+#: Sketch.java:587
+Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Desexa realmente borrar este sketch?
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
#: tools/AutoFormat.java:91
Auto\ Format=Formateado Autom\u00e1tico
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Formateado Autom\u00e1tico Cancelado\: demasiadas chaves esquerdas
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Formateado Autom\u00e1tico Cancelado\: demasiados par\u00e9ntesis esquerdos
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Formateado Autom\u00e1tico Cancelado\: demasiadas chaves dereitas
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Formateado Autom\u00e1tico Cancelado\: demasiados par\u00e9ntesis dereitos
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
Auto\ Format\ finished.=Formateado Autom\u00e1tico rematado
-#: Preferences.java:423
+#: Preferences.java:439
Automatically\ associate\ .ino\ files\ with\ Arduino=Asociar autom\u00e1ticamente arquivos .ino con Arduino
#: SerialMonitor.java:110
Autoscroll=Desprazamento autom\u00e1tico
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
Bad\ error\ line\:\ {0}=Li\u00f1a de erro incorrecta\: {0}
-#: Editor.java:2089
-Bad\ file\ selected=Seleccionado arquivo incorrecto
+#: Editor.java:2136
+Bad\ file\ selected=Escolleuse un ficheiro danado
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=Tarxeta
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+Board=Placa
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -147,102 +153,120 @@ Board=Tarxeta
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
Both\ NL\ &\ CR=Ambos NL & CR
-#: Preferences.java:80
+#: Preferences.java:81
Browse=Navegar
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=A carpeta de desplegue desapareceu ou non se pode escribir nela
+#: Sketch.java:1392 Sketch.java:1423
+Build\ folder\ disappeared\ or\ could\ not\ be\ written=O cartafol de construci\u00f3n desapareceu ou non foi pos\u00edbel escribir nel
#: ../../../processing/app/Preferences.java:80
-!Bulgarian=
+Bulgarian=B\u00falgaro
-#: Editor.java:699
-Burn\ Bootloader=Grabar Cargador de Inicio
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
-#: Editor.java:2457
+#: Editor.java:708
+Burn\ Bootloader=Gravar o cargador de inicio
+
+#: Editor.java:2504
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Grabando o cargador de inicio \u00e1 Tarxeta E/S (Esto pode tardar uns minutos)...
#: ../../../processing/app/Base.java:368
-!Can't\ open\ source\ sketch\!=
+Can't\ open\ source\ sketch\!=Non foi pos\u00edbel abrir a fonte do sketch\!
#: ../../../processing/app/Preferences.java:92
-!Canadian\ French=
+Canadian\ French=Franc\u00e9s do Canad\u00e1
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=Cancelar
-#: Sketch.java:459
-Cannot\ Rename=Non se pode renomear
+#: Sketch.java:455
+Cannot\ Rename=Non se pode cambiar o nome
#: SerialMonitor.java:112
Carriage\ return=Retorno de carro
-#: Preferences.java:86
-!Catalan=
+#: Preferences.java:87
+Catalan=Catal\u00e1n
-#: Preferences.java:403
+#: Preferences.java:419
Check\ for\ updates\ on\ startup=Buscar actualizaci\u00f3ns ao iniciar
-#: Preferences.java:87
-!Chinese\ Simplified=
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
-!Chinese\ Traditional=
+Chinese\ Simplified=Chin\u00e9s simplificado
-#: Editor.java:514 Editor.java:1977
+#: Preferences.java:89
+Chinese\ Traditional=Chin\u00e9s tradicional
+
+#: Editor.java:521 Editor.java:2024
Close=Pechar
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
Comment/Uncomment=Comentar/Descomentar
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro de compilaci\u00f3n, por favor env\u00eda este c\u00f3digo a {0}
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Compilando Sketch...
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=Estase a compilar o sketch...
#: EditorConsole.java:152
Console\ Error=Erro de Consola
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
Copy=Copiar
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
Copy\ as\ HTML=Copiar como HTML
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=Copiar para o Foro
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=Copiar para o foro
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Non se pode engadir ''{0}'' ao sketch.
+Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Non foi pos\u00edbel engadir ''{0}'' ao sketch.
-#: Editor.java:2141
+#: Editor.java:2188
Could\ not\ copy\ to\ a\ proper\ location.=Non se puido copiar a unha ubicaci\u00f3n axeitada.
-#: Editor.java:2132
+#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Non se puido crea-la carpeta do sketch.
-#: Editor.java:2159
+#: Editor.java:2206
Could\ not\ create\ the\ sketch.=Non se puido crea-lo sketch.
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=Non se pode borrar "{0}".
+Could\ not\ delete\ "{0}".=Non foi pos\u00edbel borrar \u00ab{0}\u00bb.
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Non se pode borrar o arquivo existente ''{0}''.
+Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Non se pode borrar o ficheiro existente ''{0}''.
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
Could\ not\ delete\ {0}=Non se pode borrar {0}
@@ -258,138 +282,144 @@ Could\ not\ delete\ {0}=Non se pode borrar {0}
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
Could\ not\ open\ the\ URL\n{0}=Non se pode abrir a URL\n{0}
-#: Base.java:1672
+#: Base.java:1958
#, java-format
Could\ not\ open\ the\ folder\n{0}=Non se pode abrir a carpeta\n{0}
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Non se pode gardar correctamente o sketch. Pode haber problemas neste punto,\ne \u00e9 aconsellable que copies e pegues o teu c\u00f3digo noutro editor de textos.
+#: Sketch.java:1769
+Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Non foi pos\u00edbel gardar de novo o sketch. Pode estar nun apuro,\ne pode ser hora de copiar e apegar o c\u00f3digo noutro editor de textos.
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=Non se pode gardar de novo o sketch
+#: Sketch.java:1768
+Could\ not\ re-save\ sketch=Non foi pos\u00edbel gardar de novo o sketch
#: Theme.java:52
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Non se pode ler a configuraci\u00f3n do esquema de cor.\nNecesitar\u00e1s volver a instalar Processing.
-#: Preferences.java:210
+#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Non se poden ler as configuraci\u00f3ns predeterminadas.\nNecesitar\u00e1s reinstalar Arduino.
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
Could\ not\ read\ preferences\ from\ {0}=No se poden ler as preferencias de {0}
-#: Base.java:2196
+#: Base.java:2482
#, java-format
Could\ not\ remove\ old\ version\ of\ {0}=Non se pode eliminar a versi\u00f3n anterior de {0}
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=Non se pode renomear "{0}" a "{1}"
+Could\ not\ rename\ "{0}"\ to\ "{1}"=Non se pode cambiar o nome de \u00ab{0}\u00bb a \u00ab{1}\u00bb
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=Non se pode renomea-lo sketch. (0)
+#: Sketch.java:475
+Could\ not\ rename\ the\ sketch.\ (0)=Non foi pos\u00edbel cambiar o nome do sketch. (0)
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=Non se pode renomea-lo sketch. (1)
+#: Sketch.java:496
+Could\ not\ rename\ the\ sketch.\ (1)=Non foi pos\u00edbel cambiar o nome do sketch. (1)
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=Non se pode renomea-lo sketch. (2)
+#: Sketch.java:503
+Could\ not\ rename\ the\ sketch.\ (2)=Non foi pos\u00edbel cambiar o nome do sketch. (2)
-#: Base.java:2206
+#: Base.java:2492
#, java-format
Could\ not\ replace\ {0}=Non se pode reemplazar {0}
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=Non se pode arquivar o sketch
+Couldn't\ archive\ sketch=Non foi pos\u00edbel arquivar o sketch
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=Non se pode determinar o tama\u00f1o do programa\: {0}
+#: Sketch.java:1647
+Couldn't\ determine\ program\ size\:\ {0}=Non foi pos\u00edbel determinar o tama\u00f1o do programa\: {0}
-#: Sketch.java:620
-Couldn't\ do\ it=Non foi posible facelo
+#: Sketch.java:616
+Couldn't\ do\ it=Non foi pos\u00edbel facelo
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
-!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+#: debug/BasicUploader.java:209
+Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Non foi pos\u00edbel atopar unha placa no porto escollido. Comprobe que escollese o porto correcto. Se o \u00e9, probe a premer o bot\u00f3n de\nreinicio da placa despois de iniciar a transferencia.
#: ../../../processing/app/Preferences.java:82
-!Croatian=
+Croatian=Croata
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
Cut=Cortar
#: ../../../processing/app/Preferences.java:83
-!Czech=
+Czech=Checo
-#: Preferences.java:89
-!Danish=
+#: Preferences.java:90
+Danish=Dan\u00e9s
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Reducir Indentaci\u00f3n
+#: Editor.java:1224 Editor.java:2765
+Decrease\ Indent=Diminu\u00edr o sangrado
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
Delete=Borrar
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo non responde, revisa que est\u00e9 seleccionado o porto serie correcto ou REINICIA a tarxeta xusto antes de exportar
#: tools/FixEncoding.java:57
Discard\ all\ changes\ and\ reload\ sketch?=Descartar t\u00f3dolos cambios e recargar sketch?
-#: Editor.java:2017
-Don't\ Save=Non Gardar
+#: Editor.java:2064
+Don't\ Save=Non gardar
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
Done\ Saving.=Gardado rematado.
-#: Editor.java:2463
+#: Editor.java:2510
Done\ burning\ bootloader.=Rematado o grabado do cargador de inicio.
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=Compilaci\u00f3n rematada
+#: Editor.java:1911 Editor.java:1928
+Done\ compiling.=Rematouse a compilaci\u00f3n.
-#: Editor.java:2517
+#: Editor.java:2564
Done\ printing.=Impresi\u00f3n rematada.
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
Done\ uploading.=Carga rematada.
-#: Preferences.java:90
-!Dutch=
+#: Preferences.java:91
+Dutch=Holand\u00e9s
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
Edit=Editar
-#: Preferences.java:354
+#: Preferences.java:370
Editor\ font\ size\:\ =Tama\u00f1o do tipo de letra para o editor\:
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: Preferences.java:353
+Editor\ language\:\ =Idioma do editor\:
-#: Preferences.java:91
-!English=
+#: Preferences.java:92
+English=Ingl\u00e9s
-#: Editor.java:1049
-Environment=Entorno
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Editor.java:1062
+Environment=Ambiente
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=Erro
-#: Sketch.java:1069 Sketch.java:1092
-Error\ adding\ file=Erro engadindo o arquivo
+#: Sketch.java:1065 Sketch.java:1088
+Error\ adding\ file=Erro engadindo o ficheiro
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
Error\ compiling.=Erro compilando
-#: Base.java:1433
+#: Base.java:1674
Error\ getting\ the\ Arduino\ data\ folder.=Error obtendo a carpeta de datos de Arduino
-#: Serial.java:567
+#: Serial.java:593
#, java-format
Error\ inside\ Serial.{0}()=Erro dentro de Serial.{0}()
@@ -402,25 +432,25 @@ Error\ inside\ Serial.{0}()=Erro dentro de Serial.{0}()
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
Error\ opening\ serial\ port\ ''{0}''.=Erro abrindo o porto serie ''{0}''.
-#: Preferences.java:261
+#: Preferences.java:277
Error\ reading\ preferences=Erro lendo as preferencias
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Erro lendo o arquivo de preferencias. Por favor borra (ou move)\n{0} e reinicie Arduino.
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
-!Error\ touching\ serial\ port\ ''{0}''.=
+Error\ touching\ serial\ port\ ''{0}''.=Produciuse un erro ao tocar o porto serie \u00ab{0}\u00bb.
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
Error\ while\ burning\ bootloader.=Erro ao grabar o cargador de inicio.
#: ../../../processing/app/Editor.java:2555
@@ -428,188 +458,197 @@ Error\ while\ burning\ bootloader.=Erro ao grabar o cargador de inicio.
#: SketchCode.java:83
#, java-format
-Error\ while\ loading\ code\ {0}=Erro mentres se cargaba o c\u00f3digo {0}
+Error\ while\ loading\ code\ {0}=Produciuse un erro mentres se cargaba o c\u00f3digo {0}
-#: Editor.java:2520
+#: Editor.java:2567
Error\ while\ printing.=Erro na impresi\u00f3n.
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
-!Estonian=
+#: Preferences.java:93
+Estonian=Estoniano
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
Examples=Exemplos
-#: Editor.java:2435
+#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3n cancelada, primeiro d\u00e9bense garda-los cambios.
-#: Base.java:1814
-!FAQ.html=
+#: Base.java:2100
+FAQ.html=FAQ.html
-#: Editor.java:484
-File=Arquivo
+#: Editor.java:491
+File=Ficheiro
#: Preferences.java:94
-!Filipino=
+Filipino=Filipino
#: FindReplace.java:124 FindReplace.java:127
Find=Buscar
-#: Editor.java:1235
-Find\ Next=Buscar Seguinte
+#: Editor.java:1249
+Find\ Next=Buscar o seguinte
-#: Editor.java:1245
-Find\ Previous=Buscar Anterior
+#: Editor.java:1259
+Find\ Previous=Buscar o anterior
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=Buscar na Documentaci\u00f3n
+#: Editor.java:1086 Editor.java:2775
+Find\ in\ Reference=Buscar na documentaci\u00f3n
-#: Editor.java:1220
+#: Editor.java:1234
Find...=Buscar...
#: FindReplace.java:80
Find\:=Buscar\:
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
Fix\ Encoding\ &\ Reload=Ama\u00f1ar Codificaci\u00f3n e Recargar
-#: ../../../processing/app/Base.java:2057
-!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+#: Base.java:1851
+For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Para obter m\u00e1is informaci\u00f3n acerca de como instalar bibliotecas consulte\: http\://arduino.cc/en/Guide/Libraries.\n
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
-!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-
-#: Preferences.java:93
-!French=
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Preguntas frecuentes
+#: debug/BasicUploader.java:80
+Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =F\u00f3rzase o reinicio usando 1200 bps para abrir/pechar no porto
#: Preferences.java:95
-!Galician=
+French=Franc\u00e9s
-#: ../../../processing/app/Preferences.java:94
-!Georgian=
+#: Editor.java:1097
+Frequently\ Asked\ Questions=Preguntas frecuentes
#: Preferences.java:96
-!German=
+Galician=Galego
-#: Editor.java:1041
-Getting\ Started=Comezando
+#: ../../../processing/app/Preferences.java:94
+Georgian=Xeorxiano
#: Preferences.java:97
-!Greek=
+German=Alem\u00e1n
-#: Base.java:1799
-!Guide_Environment.html=
+#: Editor.java:1054
+Getting\ Started=Comezando
-#: Base.java:1785
-!Guide_MacOSX.html=
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
-#: Base.java:1809
-!Guide_Troubleshooting.html=
-
-#: Base.java:1787
-!Guide_Windows.html=
-
-#: ../../../processing/app/Preferences.java:95
-!Hebrew=
-
-#: Editor.java:1002
-Help=Axuda
-
-#: ../../../processing/app/Preferences.java:98
-!Hindi=
-
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Qu\u00e9 tal se gardas o sketch primeiro \nantes de tentar renomealo?
-
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=Parece que esto o fixo Borges
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
#: Preferences.java:98
-!Hungarian=
+Greek=Grego
+
+#: Base.java:2085
+Guide_Environment.html=Guide_Environment.html
+
+#: Base.java:2071
+Guide_MacOSX.html=Guide_MacOSX.html
+
+#: Base.java:2095
+Guide_Troubleshooting.html=Guide_Troubleshooting.html
+
+#: Base.java:2073
+Guide_Windows.html=Guide_Windows.html
+
+#: ../../../processing/app/Preferences.java:95
+Hebrew=Hebreo
+
+#: Editor.java:1015
+Help=Axuda
+
+#: Preferences.java:99
+Hindi=Hindi
+
+#: Sketch.java:295
+How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Que tal se gardas o sketch \nantes de tentar cambiarlle o nome?
+
+#: Sketch.java:882
+How\ very\ Borges\ of\ you=Parece que isto o fixo Borges
+
+#: Preferences.java:100
+Hungarian=H\u00fangaro
#: FindReplace.java:96
Ignore\ Case=Ignorar mai\u00fasculas e min\u00fasculas
-#: Base.java:1207
+#: Base.java:1058
Ignoring\ bad\ library\ name=Ignorando nome incorrecto de librar\u00eda
-#: Base.java:1132
+#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=Ignorando sketch con nome incorrecto
-#: Editor.java:629
-Import\ Library...=Importar Librar\u00eda...
+#: Editor.java:636
+Import\ Library...=Importar unha librar\u00eda...
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Incrementar Indentaci\u00f3n
+#: Editor.java:1216 Editor.java:2757
+Increase\ Indent=Aumentar o sangrado
-#: Preferences.java:99
-!Indonesian=
+#: Preferences.java:101
+Indonesian=Indonesio
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
-!Italian=
-
-#: Preferences.java:101
-!Japanese=
-
#: Preferences.java:102
-!Korean=
+Italian=Italiano
#: Preferences.java:103
-!Latvian=
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+Japanese=Xapon\u00e9s
#: Preferences.java:104
-!Lithuaninan=
+Korean=Coreano
+
+#: Preferences.java:105
+Latvian=Let\u00f3n
+
+#: Base.java:2699
+Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Engadiuse \u00e1s s\u00faas bibliotecas. Vote unha ollada no men\u00fa \u00abImportar a biblioteca...\u00bb
+
+#: Preferences.java:106
+Lithuaninan=Lituano
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
-!Marathi=
+#: Preferences.java:107
+Marathi=Marat\u00ed
-#: Base.java:1826
+#: Base.java:2112
Message=Mensaxe
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
+#: Sketch.java:1712
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ ao final dun comentario de tipo /* */
-#: Preferences.java:433
+#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=P\u00f3dense editar directamente m\u00e1is preferencias no arquivo
-#: Editor.java:2109
+#: Editor.java:2156
Moving=Movendo
-#: Sketch.java:286
-Name\ for\ new\ file\:=Nome para o novo arquivo\:
+#: Sketch.java:282
+Name\ for\ new\ file\:=Nome do novo ficheiro\:
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
New=Novo
#: EditorToolbar.java:46
@@ -624,17 +663,17 @@ Newline=Nova li\u00f1a
#: EditorHeader.java:340
Next\ Tab=Pestana seguinte
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=Non
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Non hai tarxeta seleccionada; por favor escolle unha tarxeta do men\u00fa\nFerramentas > Tarxeta
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
No\ changes\ necessary\ for\ Auto\ Format.=Non se necesitan cambios para o Formateado Autom\u00e1tico
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=Non se agregou ning\u00fan arquivo ao sketch.
+#: Editor.java:373
+No\ files\ were\ added\ to\ the\ sketch.=Non se engadiu ning\u00fan ficheiro ao sketch.
#: Platform.java:167
No\ launcher\ available=No hai un lanzador dispo\u00f1ible
@@ -642,81 +681,88 @@ No\ launcher\ available=No hai un lanzador dispo\u00f1ible
#: SerialMonitor.java:112
No\ line\ ending=Non hai fin de li\u00f1a
-#: Base.java:538
+#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=En serio, \u00e9 hora de que tomes un pouco de aire fresco.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=Non hai referencias dispo\u00f1ibles para "{0}"
+No\ reference\ available\ for\ "{0}"=Non hai referencias dispo\u00f1\u00edbeis para "{0}"
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erro non grave mentres se configuraba a aparencia.
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Produciuse un erro non grave mentres se configuraba a aparencia.
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Negativo
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
#: ../../../processing/app/Preferences.java:108
-!Norwegian\ Bokm\u00e5l=
+Norwegian\ Bokm\u00e5l=Noruegu\u00e9s Bokm\u00e5l
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
OK=Aceptar
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=Un arquivo agregado ao sketch.
+#: Sketch.java:992 Editor.java:376
+One\ file\ added\ to\ the\ sketch.=Engadiuse un ficheiro ao sketch.
#: EditorToolbar.java:41
Open=Abrir
-#: Editor.java:2641
+#: Editor.java:2688
Open\ URL=Abrir URL
-#: Base.java:633
+#: Base.java:636
Open\ an\ Arduino\ sketch...=Abrir un sketch de Arduino...
#: EditorToolbar.java:46
Open\ in\ Another\ Window=Abrir noutra Vent\u00e1
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=Abrir...
-#: Editor.java:556
-Page\ Setup=Configuraci\u00f3n de P\u00e1xina
+#: Editor.java:563
+Page\ Setup=Configuraci\u00f3n de p\u00e1xina
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
-Paste=Pegar
+#: Editor.java:1189 Editor.java:2731
+Paste=Apegar
-#: Preferences.java:105
-!Persian=
+#: Preferences.java:109
+Persian=Persa
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importa a librar\u00eda SPI utilizando o men\u00fa\nSketch > Importar Librar\u00eda.
-#: Base.java:232
+#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=Por favor instale o JDK 1.5 ou posterior
-#: Preferences.java:106
-!Polish=
+#: Preferences.java:110
+Polish=Polaco
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
Preferences=Preferencias
#: FindReplace.java:123 FindReplace.java:128
@@ -725,22 +771,22 @@ Previous=Anterior
#: EditorHeader.java:326
Previous\ Tab=Pestana anterior
-#: Editor.java:564
+#: Editor.java:571
Print=Imprimir
-#: Editor.java:2524
+#: Editor.java:2571
Printing\ canceled.=Impresi\u00f3n cancelada.
-#: Editor.java:2500
+#: Editor.java:2547
Printing...=Imprimindo...
-#: Base.java:1671
+#: Base.java:1957
Problem\ Opening\ Folder=Problema abrindo a carpeta
-#: Base.java:1647
+#: Base.java:1933
Problem\ Opening\ URL=Problema abrindo a URL
-#: Base.java:220
+#: Base.java:227
Problem\ Setting\ the\ Platform=Problema Configurando a Plataforma
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
@@ -749,41 +795,41 @@ Problem\ Setting\ the\ Platform=Problema Configurando a Plataforma
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
+#: Base.java:1673
Problem\ getting\ data\ folder=Problema obtendo carpeta de datos
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=Problema movendo {0} \u00e1 carpeta de desplegue
+Problem\ moving\ {0}\ to\ the\ build\ folder=Problema movendo {0} ao cartafol de construci\u00f3n
#: debug/Uploader.java:209
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema cargando \u00e1 tarjeta. Vea http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para suxerencias.
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=Problema ao renomear
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+Problem\ with\ rename=Problema ao cambiar o nome
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing s\u00f3 pode abrir os seus propios sketches\ne outros arquivos rematados en .ino ou .pde
+#: Editor.java:2137
+Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing s\u00f3 pode abrir os seus propios sketches\ne outros ficheiros rematados en .ino ou .pde
#: ../../../processing/app/I18n.java:86
-!Processor=
+Processor=Procesador
-#: Editor.java:695
+#: Editor.java:704
Programmer=Programador
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=Sa\u00edr
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
Redo=Refacer
-#: Editor.java:1065
+#: Editor.java:1078
Reference=Documentaci\u00f3n
#: EditorHeader.java:300
Rename=Renomear
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=Reemplazar
#: FindReplace.java:122 FindReplace.java:129
@@ -792,55 +838,55 @@ Replace\ &\ Find=Reemplazar e Buscar
#: FindReplace.java:120 FindReplace.java:131
Replace\ All=Reemplazar Todo
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=Reemplazar a versi\u00f3n existente de {0}?
+Replace\ the\ existing\ version\ of\ {0}?=Desexa substitu\u00edr a versi\u00f3n existente de {0}?
#: FindReplace.java:81
Replace\ with\:=Reemplazar con\:
-#: Preferences.java:109
-!Romanian=
+#: Preferences.java:113
+Romanian=Roman\u00e9s
-#: Preferences.java:110
-!Russian=
+#: Preferences.java:114
+Russian=Ruso
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=Gardar
-#: Editor.java:530
+#: Editor.java:537
Save\ As...=Gardar como...
-#: Editor.java:2270
+#: Editor.java:2317
Save\ Canceled.=Gardado cancelado.
-#: Editor.java:2420
+#: Editor.java:2467
Save\ changes\ before\ export?=Gardar cambios antes de exportar?
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Gardar cambios a "{0}"?
+Save\ changes\ to\ "{0}"?\ \ =Desexa gardar os cambios a "{0}"?
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Gardar a carpeta do sketch como...
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=Gardar o cartafol do sketch como...
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
Saving...=Gardando...
-#: Base.java:1623
+#: Base.java:1909
Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecciona (ou crea unha nova) carpeta para os sketches...
-#: Editor.java:1184 Editor.java:2692
-Select\ All=Seleccionar Todo
+#: Editor.java:1198 Editor.java:2739
+Select\ All=Escoller todo
-#: ../../../processing/app/Base.java:2845
-!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+#: Base.java:2636
+Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Escolla un arquivo zip ou un cartafol que conte\u00f1a a biblioteca que desexe engadir
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecciona unha imaxe ou outro arquivo de datos para copiar ao teu sketch
+#: Sketch.java:975
+Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Escolla unha imaxe ou outro ficheiro de datos para copiar no sketch
-#: Preferences.java:314
+#: Preferences.java:330
Select\ new\ sketchbook\ location=Selecciona a nova ubicaci\u00f3n do Sketchbook
#: ../../../processing/app/debug/Compiler.java:146
@@ -849,151 +895,161 @@ Select\ new\ sketchbook\ location=Selecciona a nova ubicaci\u00f3n do Sketchbook
#: SerialMonitor.java:93
Send=Enviar
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Monitor Serie
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+Serial\ Monitor=Monitor o porto serie
-#: Serial.java:147
+#: Serial.java:174
#, java-format
Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=El porto serie ''{0}'' xa est\u00e1 en uso. Intenta pechar calquer outro programa que o poida estar usando.
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
-!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=O porto serie \u00ab{0}\u00bb xa est\u00e1 a ser usado. Probe a pechar calquera programa que o poida estar a usar.
-#: Serial.java:167
+#: Serial.java:194
#, java-format
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porto serie ''{0}'' non atopado. Est\u00e1s seguro de que seleccionaches o porto correcto do men\u00fa Ferramentas > Porto Serie?
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=O porto serie {0} non foi atopado\nVolver a tenta-la carga con outro porto serie?
-#: Base.java:1440
+#: Base.java:1681
Settings\ issues=Problemas de configuraci\u00f3n
-#: Editor.java:634
-Show\ Sketch\ Folder=Mostrar Carpeta de Sketch
+#: Editor.java:641
+Show\ Sketch\ Folder=Mostrar a carpeta do Sketch
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
+#: Preferences.java:387
Show\ verbose\ output\ during\:\ =Mostrar resultado detallado durante\:
-#: Editor.java:600
-!Sketch=
+#: Editor.java:607
+Sketch=Sketch
-#: Sketch.java:1796
+#: Sketch.java:1754
Sketch\ Disappeared=O sketch desapareceu
-#: Base.java:1095
+#: Base.java:1411
Sketch\ Does\ Not\ Exist=O sketch non existe
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
Sketch\ is\ Read-Only=O sketch \u00e9 de s\u00f3 lectura
-#: Sketch.java:298
+#: Sketch.java:294
Sketch\ is\ Untitled=O sketch non ten nome
-#: Sketch.java:724
+#: Sketch.java:720
Sketch\ is\ read-only=O sketch \u00e9 de s\u00f3 lectura
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch demasiado grande; ver http\://www.arduino.cc/en/Guide/Troubleshooting\#size para obter consellos de c\u00f3mo reducilo.
+#: Sketch.java:1653
+Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch demasiado grande; consulte http\://www.arduino.cc/en/Guide/Troubleshooting\#size para obter consellos de como reducilo.
-#: Editor.java:503
-!Sketchbook=
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
-#: Base.java:257
+#: Editor.java:510
+Sketchbook=Caderno de sketches
+
+#: Base.java:258
Sketchbook\ folder\ disappeared=A carpeta Sketchbook desapareceu
-#: Preferences.java:299
+#: Preferences.java:315
Sketchbook\ location\:=Ubicaci\u00f3n do Sketchbook\:
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alg\u00fans arquivos est\u00e1n marcados como de "s\u00f3 lectura",\nas\u00ed que necesitar\u00e1s gardar de novo este sketch noutra ubicaci\u00f3n,\ne tentalo de novo.
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alg\u00fans arquivos est\u00e1n marcados como de "s\u00f3 lectura",\nas\u00ed que necesitar\u00e1s gardar de novo este sketch noutra ubicaci\u00f3n.
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alg\u00fans ficheiros est\u00e1n marcados como de \u00abs\u00f3 lectura\u00bb,\nas\u00ed que deber\u00e1s gardar de novo este sketch noutro lugar,\ne tentalo de novo.
-#: Sketch.java:461
+#: Sketch.java:721
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alg\u00fans ficheiros est\u00e1n marcados como de \u00abs\u00f3 lectura\u00bb,\nas\u00ed que necesitar\u00e1s gardar de novo este sketch noutro lugar.
+
+#: Sketch.java:457
#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=S\u00edntoo, xa existe un sketch (ou carpeta) chamado "{0}".
+Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=S\u00edntoo, xa existe un sketch (ou cartafol) chamado \u00ab{0}\u00bb.
-#: Preferences.java:111
-!Spanish=
+#: Preferences.java:115
+Spanish=Espa\u00f1ol
-#: Base.java:537
+#: Base.java:540
Sunshine=O sol brilla
-#: Preferences.java:83
-!System\ Default=
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
+#: Preferences.java:84
+System\ Default=Predeterminado do sistema
-#: debug/Compiler.java:471
+#: Preferences.java:116
+Tamil=Tamil
+
+#: debug/Compiler.java:414
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palabra chave 'BYTE' xa non est\u00e1 soportada.
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A clase Client foi renomeada a EthernetClient.
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A clase Server foi renomeada a EthernetServer.
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp foi renomeada a EthernetUdp.
-#: Base.java:185
+#: Base.java:192
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=A continuaci\u00f3n m\u00f3strase a mensaxe de erro, pero Arduino debe continuar\nfuncionando ben.
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O arquivo "{0}" necesita estar dentro\ndunha carpeta de sketch chamada "{1}".\nCrear esta carpeta, mover este arquivo e continuar?
+The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O ficheiro "{0}" debe estar dentro\ndun cartafol de sketchs chamado \u00ab{1} x.\nCrear esta cartafol mover este ficheiro e continuar?
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A librar\u00eda "{0}" non se pode usar.\nOs nomes de librar\u00eda deben conter soamente letras b\u00e1sicas e n\u00fameros\n(S\u00f3 ASCII sen espazos, e non pode comezar con un n\u00famero).\n
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A librar\u00eda "{0}" non se pode usar.\nOs nomes de librar\u00eda deben conter soamente letras b\u00e1sicas e n\u00fameros\n(S\u00f3 ASCII sen espazos, e non pode comezar con un n\u00famero).
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O arquivo principal non pode usar unha extensi\u00f3n.\n(Pode que sexa hora de que cambies pouco a pouco a un\nentorno de desenrolo "real")
+#: Sketch.java:374
+The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O ficheiro principal non pode usar unha extensi\u00f3n.\n(Poida que sexa hora de que cambies pouco a pouco a un\nentorno de desenvolvemento \u00abreal\u00bb)
-#: Sketch.java:360
+#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=O nome non pode comezar con un punto.
-#: Base.java:1096
+#: Base.java:1412
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=O sketch seleccionado non existe.\n\u00c9 posible que necesites reiniciar Arduino\npara actualizar o men\u00fa Sketchbook.
-#: Base.java:1125
+#: Base.java:1430
#, java-format
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=O sketch "{0}" non se pode usar.\nOs nomes de sketch deben conter soamente letras b\u00e1sicas e n\u00fameros\n(S\u00f3 ASCII sen espazos, e non pode comezar con un n\u00famero).\nPara desfacerte de esta mensaxe, elimina o sketch de\n{1}
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A carpeta do sketch desapareceu.\nTentarase gardar de novo na mesma ubicaci\u00f3n,\npero calquera cousa aparte do c\u00f3digo vaise perder.
+#: Sketch.java:1755
+The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=O cartafol do sketch desapareceu.\nHase tentar gardar de novo no mesmo lugar,\npero calquera cousa aparte do c\u00f3digo vaise perder.
-#: Sketch.java:2060
+#: Sketch.java:2018
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=D\u00e9bese cambiar o nome do sketch. Os nomes de sketch s\u00f3 poden conter\ncaracteres ASCII e n\u00fameros (pero non pode comezar con un n\u00famero).\nTam\u00e9n deben conter menos de 64 caracteres.
-#: Base.java:258
+#: Base.java:259
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A carpeta Sketchbook xa non existe.\nArduino cambiar\u00e1 \u00e1 ubicaci\u00f3n predeterminada\ndo Sketchbook, e crear\u00e1 unha nova carpeta Sketchbook\nse fose necesario. Arduino despois deixar\u00e1 de falar de si mesmo\nen terceira persoa.
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este arquivo xa foi copiado na ubicaci\u00f3n\ndende a cal est\u00e1s tentando engadilo.\nNon vou faser nada.
+#: Sketch.java:1075
+This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este ficheiro xa foi copiado no lugar\ndende a cal est\u00e1s a tentar engadilo.\nNon vou facer nada.
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
+#: Base.java:535
Time\ for\ a\ Break=Hora de descansar
-#: Editor.java:656
-Tools=Ferramentas
+#: Editor.java:663
+Tools=Utilidades
-#: Editor.java:1057
+#: Editor.java:1070
Troubleshooting=Soluci\u00f3n de problemas
#: ../../../processing/app/Preferences.java:117
-!Turkish=
+Turkish=Turco
#: ../../../processing/app/Editor.java:2507
!Type\ board\ password\ to\ access\ its\ console=
@@ -1002,14 +1058,14 @@ Troubleshooting=Soluci\u00f3n de problemas
!Type\ board\ password\ to\ upload\ a\ new\ sketch=
#: ../../../processing/app/Preferences.java:118
-!Ukrainian=
+Ukrainian=Ucraniano
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1017,11 +1073,11 @@ Troubleshooting=Soluci\u00f3n de problemas
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=Excepci\u00f3n non atrapada de tipo\: {0}
+Uncaught\ exception\ type\:\ {0}=Excepci\u00f3n non recollida de tipo\: {0}
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
Undo=Desfacer
#: Platform.java:168
@@ -1030,52 +1086,55 @@ Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\
#: UpdateCheck.java:111
Update=Actualizar
-#: Preferences.java:412
+#: Preferences.java:428
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Actualiza-los arquivos do sketch con unha nova extensi\u00f3n ao gardar (.pde -> .ino)
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=Cargar
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Cargar usando Programador
+#: EditorToolbar.java:46 Editor.java:553
+Upload\ Using\ Programmer=Cargar usando o programador
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=Carga cancelada.
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
+#: Editor.java:2378
Uploading\ to\ I/O\ Board...=Cargando \u00e1 Tarxeta de E/S...
-#: Sketch.java:1661
-Uploading...=Cargando...
+#: Sketch.java:1622
+Uploading...=Estase a cargar...
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Utilizar Selecci\u00f3n para buscar
+#: Editor.java:1269
+Use\ Selection\ For\ Find=Usar a escolla para buscar
-#: Preferences.java:393
+#: Preferences.java:409
Use\ external\ editor=Usar editor externo
#: EditorToolbar.java:41 EditorToolbar.java:46
Verify=Verificar
-#: Editor.java:602
+#: Editor.java:609
Verify\ /\ Compile=Verificar / Compilar
-#: Preferences.java:384
+#: Preferences.java:400
Verify\ code\ after\ upload=Verificar o c\u00f3digo despois de cargar
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
Visit\ Arduino.cc=Visitar Arduino.cc
-#: Base.java:1842
+#: Base.java:2128
Warning=Alerta
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() foi renomeada a Wire.read().
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() foi renomeado a Wire.write().
#: FindReplace.java:105
@@ -1084,147 +1143,143 @@ Wrap\ Around=B\u00fasqueda c\u00edclica
#: debug/Uploader.java:213
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Atopouse un microcontrolador equivocado. Seleccionaches a tarxeta correcta do men\u00fa Ferramentas > Tarxeta?
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=S\u00ed
-#: Sketch.java:1078
+#: Sketch.java:1074
You\ can't\ fool\ me=Non me podes enganar
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Non podes ter un arquivo .cpp co mesmo nome que o sketch.
+#: Sketch.java:411
+You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Non podes ter un ficheiro .cpp co mesmo nome que o sketch.
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes renomear o sketch a "{0}"\nporque o sketch xa ten un arquivo .cpp con ese nome.
+#: Sketch.java:421
+You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes cambiar o nome do sketch a \u00ab{0}\u00bb\nporque o sketch xa ten un ficheiro .cpp con ese nome.
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes gardar o sketch como "{0}"\nporque o sketch xa ten un arquivo .cpp con ese nome.
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes gardar o sketch como \u00ab{0}\u00bb\nporque o sketch xa ten un ficheiro .cpp con ese nome.
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Non podes gardar o sketch nunha carpeta\ndentro de si mesma. Esto poder\u00eda acabar nun bucle infinito.
+#: Sketch.java:883
+You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Non podes gardar o sketch nun cartafol\ndentro de si mesmo. Isto poder\u00eda acabar nun bucle infinito.
-#: Base.java:1602
+#: Base.java:1888
You\ forgot\ your\ sketchbook=Olvidaches o teu Sketchbook
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
+#: Base.java:536
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Alcanzaches o l\u00edmite para o auto nomeamento de novos sketches\npor hoxe. Qu\u00e9 tal se vas dar un paseo?
-#: ../../../processing/app/Base.java:2847
-!ZIP\ files\ or\ folders=
+#: Base.java:2638
+ZIP\ files\ or\ folders=Arquivos ZIP ou cartafoles
-#: ../../../processing/app/Base.java:2870
-!Zip\ doesn't\ contain\ a\ library=
+#: Base.java:2661
+Zip\ doesn't\ contain\ a\ library=O arquivo zip non cont\u00e9n unha biblioteca
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" non \u00e9 unha extensi\u00f3n v\u00e1lida.
+".{0}"\ is\ not\ a\ valid\ extension.=\u00ab.{0}\u00bb non \u00e9 unha extensi\u00f3n v\u00e1lida.
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" cont\u00e9n caracteres irreco\u00f1ecibles. Se este c\u00f3digo foi creado cunha versi\u00f3n antiga de Processing, pode que necesites usar Ferramentas -> Ama\u00f1ar Codificaci\u00f3n e Recargar para actualizar o sketch para usar a codificaci\u00f3n UTF-8. Sen\u00f3n, pode que necesites borrar os caracteres err\u00f3neos para desfacerte de este aviso.
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u00ab{0}\u00bb cont\u00e9n caracteres irreco\u00f1ec\u00edbeis. Se este c\u00f3digo foi creado cunha versi\u00f3n antiga de Processing poida que necesites usar Utilidades -> Corrixir a codificaci\u00f3n e recargar para actualizar o sketch para usar a codificaci\u00f3n UTF-8. Sen\u00f3n, poida que necesites borrar os caracteres err\u00f3neos para desfacerte deste aviso.
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nDesde Arduino 0019, a librar\u00eda de Ethernet depende da librar\u00eda SPI.\nParece que est\u00e1s a usar esa librar\u00eda ou algunha outra librar\u00eda que depende da librar\u00eda SPI.\n\n
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nDesde Arduino 1.0, a palabra chave 'BYTE' xa non est\u00e1 soportada.\nPor favor utilice Serial.write() no seu lugar.\n\n
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDesde Arduino 1.0, a clase Client na librar\u00eda Ethernet foi renomeada a EthernetClient.\n\n
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDesde Arduino 1.0, a clase Server na librar\u00eda Ethernet foi renomeada a EthernetServer.\n\n
-#: ../../../processing/app/debug/Compiler.java:451
-!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+#: debug/Compiler.java:433
+\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nDesde Arduino 1.0, a clase Udp na biblioteca Ethernet cambiou de nome a EthernetUdp.\n\n
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde Arduino 1.0, a funci\u00f3n Wire.receive() foi renomeada a Wire.read() para manter a consistencia con outras librar\u00edas.\n\n
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde Arduino 1.0, a funci\u00f3n Wire.send() foi renomeada Wire.write() para manter a consistencia con outras librar\u00edas.\n\n
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
-!baud=
+#: SerialMonitor.java:130 SerialMonitor.java:133
+baud=baudio
-#: Preferences.java:373
+#: Preferences.java:389
compilation\ =compilaci\u00f3n
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
+#: Sketch.java:540
createNewFile()\ returned\ false=createNewFile() devolveu valor falso
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
+#: Base.java:2090
environment=entorno
-#: Editor.java:1094
-!http\://arduino.cc/=
+#: Editor.java:1108
+http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
-!http\://github.com/arduino/Arduino/issues=
+http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues
#: UpdateCheck.java:118
-!http\://www.arduino.cc/en/Main/Software=
+http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
-!http\://www.arduino.cc/latest.txt=
+http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-#: Base.java:1789
-!http\://www.arduino.cc/playground/Learning/Linux=
+#: Base.java:2075
+http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignorando tama\u00f1o inv\u00e1lido de tipo de letra {0}
-#: Base.java:1794
-!index.html=
+#: Base.java:2080
+index.html=index.html
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
name\ is\ null=nome \u00e9 nulo
-#: Base.java:1804
-!platforms.html=
+#: Base.java:2090
+platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de bytes de readBytesUntil() \u00e9 demasiado pequeno para os {0} bytes anteriores inclu\u00edndo o caracter {1}
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno... non foi posible atopar o c\u00f3digo
+#: Sketch.java:647
+removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno... non foi pos\u00edbel atopar o c\u00f3digo
-#: Editor.java:923
+#: Editor.java:932
serialMenu\ is\ null=serialMenu \u00e9 nulo
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=O porto serie seleccionado {0} non existe ou a tarxeta non est\u00e1 conectada
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
+#: Preferences.java:391
upload=carga
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.={0} arquivos agregados ao sketch.
+{0}\ files\ added\ to\ the\ sketch.=Engad\u00edronse {0} ficheiros ao sketch.
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
{0}\ returned\ {1}={0} devolveu {1}
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
-!{0}\ |\ Arduino\ {1}=
+{0}\ |\ Arduino\ {1}={0} | Arduino {1}
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
-!{0}.html=
+{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_hi.po b/app/src/processing/app/i18n/Resources_hi.po
index bf02fcf0b..277baef11 100644
--- a/app/src/processing/app/i18n/Resources_hi.po
+++ b/app/src/processing/app/i18n/Resources_hi.po
@@ -6,70 +6,64 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: Arduino IDE 1.5\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-04 15:20+0530\n"
-"PO-Revision-Date: 2012-05-11 13:15+0530\n"
-"Last-Translator: Parimal Naigaonkar Closing the last open sketch will quit Arduino."
-msgstr " आखिरी खुला स्केच बंद करने से आर्दुइनो बंद हो जाएगा |"
+msgstr " आखिरी खुला स्केच बंद करने से आर्दुइनो बंद हो जाएगा |"
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr ""
-" अगर आप नही "
-"सहेजते हैं, आपके परिवर्तन खो जाएँगे"
+msgstr " अगर आप नही सहेजते हैं, आपके परिवर्तन खो जाएँगे"
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
msgstr " \"{0}\" इस नाम की फाइल पहले से ही \"{1}\" में उपस्थित है "
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
msgstr " \"{0}\" इस नाम की पुस्तिका पहले से ही बना दी गयी है . स्केत्च खोला नहीं जा सका ."
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -78,27 +72,23 @@ msgstr ""
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr ""
-"नया अर्दुइनो सॉफ्टवेर उपलभ्द है\n"
-"क्या आप अर्दुइनो डाउनलोड पेज पे जाना चाहेंगे ? "
+msgstr "नया अर्दुइनो सॉफ्टवेर उपलभ्द है\nक्या आप अर्दुइनो डाउनलोड पेज पे जाना चाहेंगे ? "
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr ""
-"कंसोल आउट पुट को जमा करने वाली \n"
-"फिल्स में त्रुटी "
+msgstr "कंसोल आउट पुट को जमा करने वाली \nफिल्स में त्रुटी "
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
msgstr "आर्डुइनो के बारे मे"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
msgstr "फाइल जोङिये"
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
msgstr ""
@@ -107,22 +97,19 @@ msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"फाइल एन्कोडिंग फिक्स करते समय प्रॉब्लम हो गयी \n"
-"स्केत्च को सेव मत करिए क्यूंकि वो पुराणी फाइल को बदल देगी \n"
-"ओपन आप्शन को इस्तेमाल कीजिये और फिर से कोशिश कीजिये "
+msgstr "फाइल एन्कोडिंग फिक्स करते समय प्रॉब्लम हो गयी \nस्केत्च को सेव मत करिए क्यूंकि वो पुराणी फाइल को बदल देगी \nओपन आप्शन को इस्तेमाल कीजिये और फिर से कोशिश कीजिये \n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "मशीन के लिए विशिष्ट कोड लोड करने का प्रयास करते समय एक अज्ञात त्रुटि हुई\n"
+msgstr "मशीन के लिए विशिष्ट कोड लोड करने का प्रयास करते समय एक अज्ञात त्रुटि हुई"
-#: Preferences.java:84
+#: Preferences.java:85
msgid "Arabic"
msgstr ""
-#: Preferences.java:85
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
@@ -142,9 +129,7 @@ msgstr "संग्रह स्केच रद्द"
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"स्केच संग्रह कारण रद्द कर दिया गया\n"
-"स्केच ठीक से नहीं save हुआ "
+msgstr "स्केच संग्रह कारण रद्द कर दिया गया\nस्केच ठीक से नहीं save हुआ "
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -154,20 +139,19 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"आर्दुइनो को नहीं चला सकते क्योकि अपनी सेटिंग्स को स्टोर करने के लिए फ़ोल्डर नहीं बना सकता"
+msgstr "आर्दुइनो को नहीं चला सकते क्योकि अपनी सेटिंग्स को स्टोर करने के लिए फ़ोल्डर नहीं बना सकता"
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
msgstr "आर्दुइनो को नहीं चला सकते क्योकि अपनी सेटिंग्स को स्टोर करने के लिए फ़ोल्डर नहीं बना सकता"
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
@@ -178,40 +162,48 @@ msgstr "आर्दुइनो को काम करने के लिए
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
msgstr "क्या आप सुनिश्चित करतें हैं की यह मिटा दिया जाये \"{0}\"?"
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
msgstr "क्या आप सुनिश्चित करते हैं की यह स्केत्च मिटा दिया जाये ?"
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
#: tools/AutoFormat.java:91
msgid "Auto Format"
msgstr "स्वत: स्वरूप"
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
msgid "Auto Format Canceled: Too many left curly braces."
msgstr "ऑटो फॉर्मेट रद्द कर दिया गया : बोहोत सारे left करली ब्रच्केट छूटें हैं "
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
msgid "Auto Format Canceled: Too many left parentheses."
msgstr "ऑटो फॉर्मेट रद्द कर दिया गया : बोहोत सारे left कोष्टक छूटें हैं "
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
msgid "Auto Format Canceled: Too many right curly braces."
msgstr "ऑटो फॉर्मेट रद्द कर दिया गया : बोहोत सारे right करली ब्रच्केट छूटें हैं "
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
msgid "Auto Format Canceled: Too many right parentheses."
msgstr "ऑटो फॉर्मेट रद्द कर दिया गया : बोहोत सारे right कोष्टक छूटें हैं"
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
msgstr "ऑटो फॉर्मेट ख़तम "
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
msgstr "स्वत: .INO फाइल का सहयोगी अर्दुइनो को बनाये "
@@ -219,44 +211,48 @@ msgstr "स्वत: .INO फाइल का सहयोगी अर्द
msgid "Autoscroll"
msgstr "स्वेयम पत्रिका"
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
msgstr "Bad error line: {0}"
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
msgstr "खराब फाइल चुनी गई"
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
msgstr ""
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
msgstr "बोर्ड"
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
msgstr "दोनों NL और CR"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
msgstr "ब्राउज़ करें"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
msgstr "बिल्ड पुस्तिका गायब हो गयी या उसमे प्रवेश निषेधात्मक है "
@@ -264,11 +260,15 @@ msgstr "बिल्ड पुस्तिका गायब हो गयी
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
msgid "Burn Bootloader"
msgstr "बूटलोडर को जलाइये"
-#: Editor.java:2457
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
msgstr "इ/ओ बोर्ड पर बूटलोडर डाला जा रहा है (इस प्रक्रिया में मिनट लग सकता है.....)"
@@ -280,12 +280,12 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "रद्द"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
msgstr "नाम बदला नहीं जा सकता "
@@ -293,36 +293,52 @@ msgstr "नाम बदला नहीं जा सकता "
msgid "Carriage return"
msgstr "Carriage return"
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr ""
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
msgstr "शुरुआत में अद्यतन के लिए जांचें "
-#: Preferences.java:87
-msgid "Chinese Simplified"
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "बंद करें"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
msgstr "कमेन्ट/अनकमेन्ट"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
msgstr "संकलक त्रुटि {0} इस कोड को भेजें"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
msgstr "स्केच को कम्पाइल किया जा रहा है ...."
@@ -330,11 +346,11 @@ msgstr "स्केच को कम्पाइल किया जा रह
msgid "Console Error"
msgstr "कंसोल में त्रुटी "
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "कॉपी "
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
msgstr "HTML के रूप में कॉपी"
@@ -342,38 +358,38 @@ msgstr "HTML के रूप में कॉपी"
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
msgstr "फोरम के लिये कॉपी "
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
msgstr "यह ''{0}'' स्केत्च में जोड़ा नहीं जा सका "
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
msgstr "सही जगह पेय कॉपी नहीं हो पाया "
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
msgstr "स्केत्च पुस्तिका नहीं बन सकी"
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
msgstr "स्केत्च नहीं बन पाई "
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
msgstr "हटाया नहीं जा सका \"{0}\""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "इस \"{०}\"मौजूदा फाइल को मिटाया नहीं जा सका "
+msgstr "इस \"{0}\"मौजूदा फाइल को मिटाया नहीं जा सका "
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
msgstr "{0} को नष्ट नहीं कर सका"
@@ -393,31 +409,27 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr "यूआरएल नहीं खोल सका\n"
-"{0}"
+msgstr "यूआरएल नहीं खोल सका\n{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr "फ़ोल्डर नहीं खोल सका\n"
-"{0}"
+msgstr "फ़ोल्डर नहीं खोल सका\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
-"आपकी स्केत्च री-सेव नहीं हो पाई है, हो सकता है आप परेशानी में पढ़ जायें "
-"इस्सलिये अपना कोड कॉपी और पेस्ट कीजिये किसी और जगह "
+msgstr "आपकी स्केत्च री-सेव नहीं हो पाई है, हो सकता है आप परेशानी में पढ़ जायें इस्सलिये अपना कोड कॉपी और पेस्ट कीजिये किसी और जगह "
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
msgstr "आपकी स्केत्च री-सेव नहीं हो पाई है "
@@ -427,42 +439,40 @@ msgid ""
"You'll need to reinstall Processing."
msgstr "आपको processing इन्स्टाल करनी पड़ेगा "
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
-"डिफौल्ट सेत्तिंग्स स्तापित नहीं हो सकी \n"
-"अर्दुइनो फिर से इन्स्टाल कीजिये"
+msgstr "डिफौल्ट सेत्तिंग्स स्तापित नहीं हो सकी \nअर्दुइनो फिर से इन्स्टाल कीजिये"
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "{०} से प्रेफेरेंसस पढ़ी नहीं जा सकी "
+msgstr "{0} से प्रेफेरेंसस पढ़ी नहीं जा सकी "
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
msgstr "{0} के पुराने संस्करण को दूर नहीं किया जा सका"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
msgstr "नाम बदला नहीं जा सका \"{0}\" to \"{1}\""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
msgstr "स्केत्च का नाम नहीं बदला जा सका (०)"
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
msgstr "स्केत्च का नाम नहीं बदला जा सका (1)"
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
msgstr "स्केत्च का नाम नहीं बदला जा सका (2 )"
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
msgstr "{0} की जगह नहीं कर सका"
@@ -471,15 +481,15 @@ msgstr "{0} की जगह नहीं कर सका"
msgid "Couldn't archive sketch"
msgstr "स्केच संग्रह नहीं किया जा सका"
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
msgstr "कार्य क्रम का आकार नहीं जान पाया गया {}0"
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
msgstr "यह किया नहीं जा सका "
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -490,7 +500,7 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "कट"
@@ -498,19 +508,19 @@ msgstr "कट"
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "इन्डेन्ट कम कीजिये"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
msgstr "रद्द करें "
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
@@ -520,73 +530,81 @@ msgstr "डिवाइस जवाब नही दे रहा है, ज
msgid "Discard all changes and reload sketch?"
msgstr "सभ बदलाव रद्द करे और फिर से स्केत्च चलायें "
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
msgstr "न सहेजें"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
msgstr "सेव पूरा हो गया "
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
msgstr "बूटलोडर डाला जा चूका है "
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
msgstr "कम्पाइल हो चुका है"
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
msgstr "प्रिंटिंग समाप्त "
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
msgstr "उपलोड हो गया "
-#: Preferences.java:90
+#: Preferences.java:91
msgid "Dutch"
msgstr ""
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
msgid "Edit"
msgstr "संपादित करें"
-#: Preferences.java:354
+#: Preferences.java:370
msgid "Editor font size: "
msgstr "एडिटर फॉण्ट साइज़:"
-#: Preferences.java:337
+#: Preferences.java:353
msgid "Editor language: "
msgstr ""
-#: Preferences.java:91
+#: Preferences.java:92
msgid "English"
msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
msgstr "वातावरण"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "त्रुटि"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
msgstr "फाइल जोडने में त्रुटी "
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
msgstr "संकलन त्रुटि"
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
msgstr "आर्दुइनो डेटा फ़ोल्डर प्राप्त करने में त्रुटि"
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
msgstr "सीरियल के अन्दर त्रुटी {0}()"
@@ -602,34 +620,32 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
msgstr "सीरियल पोर्ट खुल नहीं प् रहा ''{0}''."
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr "प्रेफेरेंसस पढने में त्रुटी "
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"प्रेफेरेंसस पढने में त्रुटी ,कृप्या \n"
-"{0} को मिटायें या हटायें और अर्दुइनो पुन्हें चालू करें "
+msgstr "प्रेफेरेंसस पढने में त्रुटी ,कृप्या \n{0} को मिटायें या हटायें और अर्दुइनो पुन्हें चालू करें "
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
msgstr "बूटलोडर डालते समय त्रुटी "
@@ -640,9 +656,9 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "कोड लोड करते समय त्रुटी"
+msgstr "कोड लोड करते समय त्रुटी {0}"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
msgstr "प्रिंटिंग करते समय त्रुटी "
@@ -651,23 +667,27 @@ msgstr "प्रिंटिंग करते समय त्रुटी "
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
msgstr "उदाहरण"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
msgstr "निर्यात रद्द कर दिया गया, बदलाव पहले सेव कीजिये "
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
msgstr "फाइल"
@@ -679,19 +699,19 @@ msgstr ""
msgid "Find"
msgstr "खोजें "
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
msgstr "अगला ढूँढिये"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
msgstr "पिछला ढूँढिये"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
msgstr "संदर्भ में प्राप्त करें"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
msgstr "ढूँढिये"
@@ -699,30 +719,34 @@ msgstr "ढूँढिये"
msgid "Find:"
msgstr "खोजें:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
msgstr "एन्कोडिंग फिक्स और फिर पुनः लोड"
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
msgstr ""
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
msgstr "अकसर पूछे जाने वाले प्रश्न"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
msgstr ""
@@ -730,31 +754,43 @@ msgstr ""
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
msgstr ""
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
msgstr "प्रारंभ करना"
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
msgstr ""
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
@@ -762,27 +798,25 @@ msgstr "Guide_Windows.html"
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "मदद"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"पहले स्केत्च को सेव कर लिया जाये \n"
-"इससे पहले की उसका नाम बदला जाये ?"
+msgstr "पहले स्केत्च को सेव कर लिया जाये \nइससे पहले की उसका नाम बदला जाये ?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
msgstr "How very Borges of you"
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr ""
@@ -790,15 +824,15 @@ msgstr ""
msgid "Ignore Case"
msgstr "इग्नोर केस"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
msgstr "बुरी लायब्रेरी नाम की अनदेखी"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "बुरा नाम के कारण स्केच की अनदेखी"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
msgstr "आयात लायब्रेरी"
@@ -813,11 +847,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
msgstr "इन्डेन्ट बढाइये"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -826,27 +860,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
+#: Preferences.java:102
msgid "Italian"
msgstr ""
-#: Preferences.java:101
+#: Preferences.java:103
msgid "Japanese"
msgstr ""
-#: Preferences.java:102
+#: Preferences.java:104
msgid "Korean"
msgstr ""
-#: Preferences.java:103
+#: Preferences.java:105
msgid "Latvian"
msgstr ""
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
msgstr ""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -854,45 +888,39 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "संदेश"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
msgstr "*/ खो गया /* के अंत तक "
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
msgstr "और बोहोत सी प्रेफेरेंसस सीधा फाइल में सम्पादित की जा सकती हैं "
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
msgstr "गतिशील"
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
msgstr "नयी फाइल का नाम "
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "नया"
@@ -912,19 +940,19 @@ msgstr "नयी रेखा"
msgid "Next Tab"
msgstr "अगला टैब "
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "नहीं "
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
msgstr "कोई बोर्ड चयनित नही, उपकरण से एक बोर्ड का चयन करें> बोर्ड मेनू"
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr "ऑटो फॉर्मेट के लिए कोई बदलाव जरुरी नहीं हैं "
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
msgstr ""
@@ -936,11 +964,11 @@ msgstr "कोई प्रारंभ करता उपलभ्द नह
msgid "No line ending"
msgstr "कोई रेखा समाप्ति नहीं"
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
msgstr "नहीं, वास्तव में, आप के लिए कुछ ताजा हवा के लिए समय है."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
msgstr "\"{0}\" के लिये कोई सन्दर्भ उपलब्ध नही है"
@@ -949,18 +977,19 @@ msgstr "\"{0}\" के लिये कोई सन्दर्भ उपलब
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
msgstr "रूप और महसूस है की स्थापना करते हुए गैर घातक त्रुटि"
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
msgstr "नहीं "
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
-
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
@@ -971,12 +1000,12 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
msgstr "ओके"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
msgstr "स्केत्च में एक फाइल जोड़ी गई "
@@ -984,11 +1013,11 @@ msgstr "स्केत्च में एक फाइल जोड़ी गई
msgid "Open"
msgstr "खोलें "
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "URL खोलिए "
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
msgstr "आर्दुइनो स्केच खोलिए "
@@ -996,11 +1025,11 @@ msgstr "आर्दुइनो स्केच खोलिए "
msgid "Open in Another Window"
msgstr "अलग टैब में खोलें "
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "खोलिए..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
msgstr "पृष्ठ सेटअप"
@@ -1008,23 +1037,23 @@ msgstr "पृष्ठ सेटअप"
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
msgstr "पेस्ट"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
msgstr ""
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
msgstr "स्केच से एस पी आई लायब्रेरी का आयात करें"
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
msgstr "कृपया जेडीके 1.5 या बाद का स्थापित करेंं"
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1032,11 +1061,19 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
msgstr "प्राथमिकताएं"
@@ -1048,27 +1085,27 @@ msgstr "पिछला "
msgid "Previous Tab"
msgstr "पिछला टैब "
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
msgstr "प्रिंट"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
msgstr "प्रिंटिंग रद्द कर दी गयी "
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
msgstr "प्रिंटिंग....."
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
msgstr "फ़ोल्डर खोलने में समस्या है"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
msgstr "यूआरएल खोलने में समस्या है"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
msgstr "प्लेटफार्म की स्थापना मे समस्या "
@@ -1080,51 +1117,48 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
msgstr "डेटा फ़ोल्डर को लेने में समस्या है "
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "{०} को बिल्ड पुस्तिका में डालने में समस्या "
+msgstr "{0} को बिल्ड पुस्तिका में डालने में समस्या "
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
-msgstr "बोर्ड मे अपलोड करने मे समस्या, सुझाव के लिये http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload देखेँ"
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr "बोर्ड मे अपलोड करने मे समस्या, सुझाव के लिये http://www.arduino.cc/en/Guide/Troubleshooting#upload देखेँ"
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
msgstr "नाम बदलने में मुश्किल "
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
-"प्रोसेसिंग केवल अपने ही स्केचेस खोल सकता है\n"
-"और दूसरी फाइल्स जिनका अंत .ino अथवा .pde से होता है"
+msgstr "प्रोसेसिंग केवल अपने ही स्केचेस खोल सकता है\nऔर दूसरी फाइल्स जिनका अंत .ino अथवा .pde से होता है"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
msgstr "प्रोग्रामर"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "छोडिये"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
msgstr "रीडू"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
msgstr "संदर्भ"
@@ -1132,7 +1166,7 @@ msgstr "संदर्भ"
msgid "Rename"
msgstr "नाम बदलें "
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "बदलें "
@@ -1144,7 +1178,7 @@ msgstr "बदलें और खोजें "
msgid "Replace All"
msgstr "सबकी जगह "
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
msgstr "मौजूदा संस्करण बदलें {0}"
@@ -1153,61 +1187,61 @@ msgstr "मौजूदा संस्करण बदलें {0}"
msgid "Replace with:"
msgstr "की जगह:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
msgstr ""
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "सहेजेँ"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
msgstr "दूसरी फाइल के रूप में सहेजें"
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
msgstr "सेव रद्द कर दिया गया "
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
msgstr "निर्यात से पहले बदलाव सेव करें ?"
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
msgstr "परिवर्तनों को \"{0}\" मे सहेजेँ"
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
msgstr "स्केत्च पुस्तिका को इस नाम से सेव करें "
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
msgstr "सेविंग....."
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
msgstr "स्केच बनाने के लिए फ़ोल्डर का चयन करें अथवा नया बनाएँ"
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
msgstr "सभी का चयन करें"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
msgstr "कोई चित्र या फाइल स्केत्च में कॉपी करने के लिए चुनें "
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
msgstr "स्केत्च किताब की नयी जगह चुनिए "
@@ -1219,49 +1253,43 @@ msgstr ""
msgid "Send"
msgstr "भेजें"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
msgstr "सीरियल मोनिटर"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr ""
-"सीरियल पोर्ट ''{0}'' पहले ही इस्तेमाल में .कोशिश कीजिये उन सॉफ्टवेर को बंद करने \n "
-"की जो इस सीरियल पोर्ट को इस्तेमाल कर रहे हों"
+msgstr "सीरियल पोर्ट ''{0}'' पहले ही इस्तेमाल में .कोशिश कीजिये उन सॉफ्टवेर को बंद करने \n की जो इस सीरियल पोर्ट को इस्तेमाल कर रहे हों"
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr ""
-"सीरियल पोर्ट ''{0}'' नहीं मिला. क्या अपने सही सीरियल पोर्ट चुना है टूल्स > "
-"सीरियल पोर्ट मेनू में से ?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr "सीरियल पोर्ट ''{0}'' नहीं मिला. क्या अपने सही सीरियल पोर्ट चुना है टूल्स > सीरियल पोर्ट मेनू में से ?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"सीरियल पोर्ट नंबर {0} नहीं मिला \n"
-"उपलोड को जारी रखें किसी और पोर्ट को सेलेक्ट करके ?"
+msgstr "सीरियल पोर्ट नंबर {0} नहीं मिला \nउपलोड को जारी रखें किसी और पोर्ट को सेलेक्ट करके ?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
msgstr "मुद्दे की स्थापना"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
msgstr "स्केच फोल्डर दिखाइये"
@@ -1269,156 +1297,156 @@ msgstr "स्केच फोल्डर दिखाइये"
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
msgstr "वाचाल आउट पुट दिखाएं:"
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
msgstr "स्केच"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
msgstr "स्केत्च खो गयी "
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
msgstr "स्केच मौजूद नहीं है"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
msgstr "स्केत्च सिर्फ पढ़ी जा सकती है "
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
msgstr "स्केत्च का कोई शीर्षक नहीं है "
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
msgstr "स्केत्च केवल पढ़ी जा सकती है "
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
msgstr "स्केत्च बहुत बड़ी है -> http://www.arduino.cc/en/Guide/Troubleshooting#size देखिये इसे छोटा करने के उपाए के लिए "
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
msgstr "स्केत्चबुक"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
msgstr "स्केत्चबुक फोल्डर गायब हो गया है"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
msgstr "स्केत्च किताब का स्थान "
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"कुछ फिल्स \"सिर्फ पढ़ी जा सकती हैं \", तो आपको \n"
-"स्केत्च री-सेव करनी होगी किसी और जगह पर ,\n"
-"और फिर से प्रयास किजिएय ."
+msgstr "कुछ फिल्स \"सिर्फ पढ़ी जा सकती हैं \", तो आपको \nस्केत्च री-सेव करनी होगी किसी और जगह पर ,\nऔर फिर से प्रयास किजिएय ."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr "कुछ फ़ाइलें \"केवल पढ़ने\" के लिए चिह्नित कर रहे हैं,\n"
-"तो आप किसी अन्य स्थान पर फिर से इस स्केच बचाने की आवश्यकता होगी"
+msgstr "कुछ फ़ाइलें \"केवल पढ़ने\" के लिए चिह्नित कर रहे हैं,\nतो आप किसी अन्य स्थान पर फिर से इस स्केच बचाने की आवश्यकता होगी"
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
msgstr "माफ़ कीजिये , इस नाम की स्केत्च (या पुस्तिका ) \"{0}\" पहले से ही उपस्थित है"
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
msgstr ""
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
msgstr "सूर्य किरन"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
msgstr "'बाइट' कीवर्ड अब समर्थित नहीं है"
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
msgstr "क्लाइंट क्लास का नामकरण ईथरनेट क्लाइंट हो गया है"
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
msgstr "सर्वर वर्ग का पुनः नामकरण ईथरनेटसर्वर किया गया है"
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
msgstr "यूडीपी क्लास का नामकरण ईथरनेट यूडीपी हो गया है"
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
msgstr "त्रुटि संदेश इस प्रकार है, लेकिन आर्दुइनो ठीक चलाना चाहिए"
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
-"यह फाइल \"{0}\" को \n"
-"इस स्केत्च पुस्तिका \"{1}\" के अन्दर होना चाहिए .\n"
-"इस पुस्तिका को बनाईये , फाइल को उसके अन्दर डालिए , और फिरर आगे बढिए ?"
+msgstr "यह फाइल \"{0}\" को \nइस स्केत्च पुस्तिका \"{1}\" के अन्दर होना चाहिए .\nइस पुस्तिका को बनाईये , फाइल को उसके अन्दर डालिए , और फिरर आगे बढिए ?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
-"लैब्ररी को \"{0}\" इस्तेमाल नहीं किया जा सकता है\n"
-"लैब्ररी के नाम मे केवल मूल अक्षर और संख्याएँ शामिल होना चाहिए |\n"
-"(केवल आस्की और रिक्त स्थान नहीं, और यह एक संख्या के साथ शुरू नहीं कर सकते)"
+msgstr "लैब्ररी को \"{0}\" इस्तेमाल नहीं किया जा सकता है\nलैब्ररी के नाम मे केवल मूल अक्षर और संख्याएँ शामिल होना चाहिए |\n(केवल आस्की और रिक्त स्थान नहीं, और यह एक संख्या के साथ शुरू नहीं कर सकते)"
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr ""
-"मुख्य फाइल को एक्ष्तेन्सिओन नहीं दिया जा सकता \n"
-"(It may be time for your to graduate to a\n"
-"\"real\" programming environment)"
+msgstr "मुख्य फाइल को एक्ष्तेन्सिओन नहीं दिया जा सकता \n(It may be time for your to graduate to a\n\"real\" programming environment)"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
msgstr "विराम से नाम नहीं शुरू हो सकता "
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"चयनित स्केच अब मौजूद नहीं है|\n"
-"आपको स्केचबुक मेनू को अपडेट करने के लिए अर्दुइनो को पुनः आरम्भ करने की आवश्यकता है "
+msgstr "चयनित स्केच अब मौजूद नहीं है|\nआपको स्केचबुक मेनू को अपडेट करने के लिए अर्दुइनो को पुनः आरम्भ करने की आवश्यकता है "
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1426,33 +1454,23 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-"स्केच का \"{0}\" इस्तेमाल नहीं कर सकते|\n"
-"स्केच नामों में केवल मूल अक्षरों और संख्याओं को शामिल होना चाहिए\n"
-"(कोई स्पेस के बिना केवल ASCII, और यह एक संख्या के साथ शुरू नहीं कर सकते)\n"
-"इस संदेश से छुटकारा पाने के लिए स्केच को {1} से हटायें\n"
+msgstr "स्केच का \"{0}\" इस्तेमाल नहीं कर सकते|\nस्केच नामों में केवल मूल अक्षरों और संख्याओं को शामिल होना चाहिए\n(कोई स्पेस के बिना केवल ASCII, और यह एक संख्या के साथ शुरू नहीं कर सकते)\nइस संदेश से छुटकारा पाने के लिए स्केच को {1} से हटायें\n{1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
-"स्केत्च पुस्तिका खो गयी है \n"
-"पर फिर भी उसी जगह पे सेव करने की कोशिश होगी "
-"अन्यथा कोड खो जायगा "
+msgstr "स्केत्च पुस्तिका खो गयी है \nपर फिर भी उसी जगह पे सेव करने की कोशिश होगी अन्यथा कोड खो जायगा "
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
-"स्केत्च का नाम बदलना होगा ,स्केत्च के नाम में \n"
-"सिर्फ अक्षर और अंकों का इस्तेमाल कीजिये \n"
-"और यह भी ध्यान रखें की 64 अक्षर से ज्यादा ना हो "
+msgstr "स्केत्च का नाम बदलना होगा ,स्केत्च के नाम में \nसिर्फ अक्षर और अंकों का इस्तेमाल कीजिये \nऔर यह भी ध्यान रखें की 64 अक्षर से ज्यादा ना हो "
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
@@ -1461,29 +1479,26 @@ msgid ""
"himself in the third person."
msgstr "स्केत्चबुक फ़ोल्डर अब मौजूद नहीं है| आर्दुइनो डिफ़ॉल्ट स्केत्चबुक स्थान पर स्विच जाएगा, और यदि आवश्यक एक नया स्केत्चबुक फ़ोल्डर बनाएगा| आर्दुइनो तब तीसरे व्यक्ति में खुद के बारे में बात करना बंद कर देंगे."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
-"यह फाइल पहले ही उस जगह पर है "
-"जिस जगह पर आप इसे कॉपी कर रहे हैं \n"
-"कुछ नहीं किया जायगा"
+msgstr "यह फाइल पहले ही उस जगह पर है जिस जगह पर आप इसे कॉपी कर रहे हैं \nकुछ नहीं किया जायगा"
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
msgstr "ब्रेक का समय"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
msgstr "टूल्स"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
msgstr "समस्या निवारण"
@@ -1509,7 +1524,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1520,12 +1535,12 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
msgstr "नहीं पकड़ा जा सकने वाला अपवाद: {0}"
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
msgstr "अन्डू"
@@ -1534,27 +1549,25 @@ msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"अनिर्दिष्ट प्लात्फोर्म , कोई प्रारंभ करता उपलभ्द नहीं \n"
-"URL और पुसितका खोलने के लिए जोडीये\"launcher=/path/to/app\" लाइन को preferences .txt में"
+msgstr "अनिर्दिष्ट प्लात्फोर्म , कोई प्रारंभ करता उपलभ्द नहीं \nURL और पुसितका खोलने के लिए जोडीये\"launcher=/path/to/app\" लाइन को preferences .txt में"
#: UpdateCheck.java:111
msgid "Update"
msgstr "अद्यतन"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
msgstr "स्केत्च फिल्स को पुराने एक्ष्तेन्सिओन से नए में अपडेट कीजिये(.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "अपलोड"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
msgstr "प्रोग्रामर द्वारा अपलोड करेँ"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
msgstr "उपलोड रद्द कर दिया गया "
@@ -1562,19 +1575,19 @@ msgstr "उपलोड रद्द कर दिया गया "
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
msgstr "इ/ओ बोर्ड पर उपलोड हो रहा है....."
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
msgstr "अपलोड हो रहा है ....."
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "ढूँढने के लिये सिलेक्शन का उपयोग कीजिये"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
msgstr "बाहरी एडिटर इस्तेमाल करें "
@@ -1582,27 +1595,31 @@ msgstr "बाहरी एडिटर इस्तेमाल करें "
msgid "Verify"
msgstr "जांच करें "
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
msgstr "वेरिफाय/कम्पाइल"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
msgstr "Arduino.cc देखिये"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
msgstr "चेतावनी"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() का नामकरण Wire.read() हो गया है"
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
msgstr "Wire.send() का नामकरण Wire.write() हो गया है"
@@ -1616,43 +1633,37 @@ msgid ""
"> Board menu?"
msgstr "गलत माइक्रोकंट्रोलर मिला| क्या आपने टूल्स >बोर्ड मेनू से सही बोर्ड चुना है?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "हाँ "
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
msgstr "आप मुझे बेवक़ूफ़ नहीं बना सकते "
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
msgstr "स्केत्च और .cpp फाइल का नाम एक नहीं हो सकता "
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"स्केत्च का नाम बदल के \"{0}\" नहीं रखा जा सकता \n"
-"क्यूंकि इस नाम की .cpp फाइल पहले से hai"
+msgstr "स्केत्च का नाम बदल के \"{0}\" नहीं रखा जा सकता \nक्यूंकि इस नाम की .cpp फाइल पहले से hai"
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"आप स्केत्च को {०} की तरह नहीं सेव कर सकते\n"
-"क्यूंकि इस नाम की .cpp फाइल पहले ही वहां है "
+msgstr "आप स्केत्च को {०} की तरह नहीं सेव कर सकते\nक्यूंकि इस नाम की .cpp फाइल पहले ही वहां है "
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"आप एक स्केत्च की पुसितका के अन्दर ही उस स्केत्च को सेव नहीं कर सकते \n"
-"यह नहीं हो सकता ,इसका कोई अंत नहीं"
+msgstr "आप एक स्केत्च की पुसितका के अन्दर ही उस स्केत्च को सेव नहीं कर सकते \nयह नहीं हो सकता ,इसका कोई अंत नहीं"
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
msgstr "आप अपनी स्केचबुक भूल गए "
@@ -1661,23 +1672,21 @@ msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
-"आप आज के दिन के नए स्केच के स्वत: नामकरण की सीमा तक पहुँच गए हैं\n"
-"इसके बजाय टहलने जाने के बारे मे क्या खयाल है?"
+msgstr "आप आज के दिन के नए स्केच के स्वत: नामकरण की सीमा तक पहुँच गए हैं\nइसके बजाय टहलने जाने के बारे मे क्या खयाल है?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
msgstr "\".{0}\" एक वैध एक्ष्तेन्सिओन नहीं है "
@@ -1689,78 +1698,64 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr ""
-"\"{0}\"अपरिचित अक्षर ,अगर कोड प्रोसस्सिंग के पुराने संकरण में लिखा गया है "
-"आपको टूल्स खोलना पड़ेगा उसमे -> फिक्स एन्कोडिंग और रीलोड कीजिये ताकि UTF-8 एन्कोडिंग इस्तेमाल हो सके "
-"अगर ये सब नहीं करना तो आपको वो अक्षर मिटाने होंगे ताकि यह चेतावनी ना आये "
+msgstr "\"{0}\"अपरिचित अक्षर ,अगर कोड प्रोसस्सिंग के पुराने संकरण में लिखा गया है आपको टूल्स खोलना पड़ेगा उसमे -> फिक्स एन्कोडिंग और रीलोड कीजिये ताकि UTF-8 एन्कोडिंग इस्तेमाल हो सके अगर ये सब नहीं करना तो आपको वो अक्षर मिटाने होंगे ताकि यह चेतावनी ना आये "
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
-"\n"
-msgstr ""
-"\n"
-"आर्दुइनो उन्नीस तक, ईथरनेट लायब्रेरी एस पी आई लायब्रेरी पर निर्भर करती है"
-"आप यह अथवा दूसरी लायब्रेरी उपयोग करते हुए दिखाई दे रहे हैं जो एस पी आई पर निर्भर करती है "
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
+msgstr "\nआर्दुइनो उन्नीस तक, ईथरनेट लायब्रेरी एस पी आई लायब्रेरी पर निर्भर करती हैआप यह अथवा दूसरी लायब्रेरी उपयोग करते हुए दिखाई दे रहे हैं जो एस पी आई पर निर्भर करती है \n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr "कृपया Serial.write() का उपयोग करें"
+msgstr "\nकृपया Serial.write() का उपयोग करें\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
-msgstr "आर्दुइनो 1.0 से, ईथरनेट लायब्रेरी की क्लाइंट क्लास का नामकरण ईथरनेट क्लाइंट हो गया है"
+msgstr "\nआर्दुइनो 1.0 से, ईथरनेट लायब्रेरी की क्लाइंट क्लास का नामकरण ईथरनेट क्लाइंट हो गया है\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
-msgstr "आर्दुइनो एक तक, ईथरनेट लायब्रेरी मे सर्वर वर्ग का पुनः नामकरण ईथरनेटसर्वर किया गया है"
+msgstr "\nआर्दुइनो एक तक, ईथरनेट लायब्रेरी मे सर्वर वर्ग का पुनः नामकरण ईथरनेटसर्वर किया गया है\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
-msgstr "आर्दुइनो 1.0 से, Wire.receive() फ़ंक्शन का नामकरण Wire.read() दूसरी लायब्रेरीज़ के साथ स्थिरता के लिये किया गया था"
+msgstr "\nआर्दुइनो 1.0 से, Wire.receive() फ़ंक्शन का नामकरण Wire.read() दूसरी लायब्रेरीज़ के साथ स्थिरता के लिये किया गया था\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
-msgstr "आर्दुइनो 1.0 से, Wire.send() फ़ंक्शन का नामकरण Wire.write() दूसरी लायब्रेरीज़ के साथ स्थिरता के लिये किया गया था"
+msgstr "\nआर्दुइनो 1.0 से, Wire.send() फ़ंक्शन का नामकरण Wire.write() दूसरी लायब्रेरीज़ के साथ स्थिरता के लिये किया गया था\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
msgstr "संकलन "
@@ -1768,7 +1763,7 @@ msgstr "संकलन "
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
msgstr "createNewFile() गलत रिटर्न "
@@ -1776,11 +1771,11 @@ msgstr "createNewFile() गलत रिटर्न "
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
msgstr "वातावरण "
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@@ -1796,74 +1791,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr ""
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "अवैध फॉण्ट आकार को नज़रंदाज़ करें "
+msgstr "अवैध फॉण्ट आकार को नज़रंदाज़ करें {0}"
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "नाम मे कुछ नही है"
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr ""
-"readBytesUntil() byte बुफ्फेर काफी छोटा है की यह {0} bytes आ जायें और "
-"including char {1}"
+msgstr "readBytesUntil() byte बुफ्फेर काफी छोटा है की यह {0} bytes आ जायें और including char {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
msgstr "कोड हटायें : अंदरूनी त्रुटी.....कोड खोजा नहीं जा सका "
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
msgstr "सीरियलमेनू मे कुछ नही है"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr "चुना गया सीरियल पोर्ट {0} मौजूद नहीं है या बोर्ड नहीं जुड़ा हुआ है"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
msgstr "उपलोड "
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
msgstr "स्केत्च में {0} फाइल्स जोड़ी गईँ"
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
msgstr "{0} लौटाया {1} "
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
msgstr "{0} | अर्दुइनो {1} "
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_hi.properties b/app/src/processing/app/i18n/Resources_hi.properties
index cde5e68b3..2df49dbb6 100644
--- a/app/src/processing/app/i18n/Resources_hi.properties
+++ b/app/src/processing/app/i18n/Resources_hi.properties
@@ -4,38 +4,38 @@
# Nishant Sood Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0906\u0916\u093f\u0930\u0940 \u0916\u0941\u0932\u093e \u0938\u094d\u0915\u0947\u091a \u092c\u0902\u0926 \u0915\u0930\u0928\u0947 \u0938\u0947 \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092c\u0902\u0926 \u0939\u094b \u091c\u093e\u090f\u0917\u093e |
-#: Editor.java:2006
+#: Editor.java:2053
\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= \u0905\u0917\u0930 \u0906\u092a \u0928\u0939\u0940 \u0938\u0939\u0947\u091c\u0924\u0947 \u0939\u0948\u0902, \u0906\u092a\u0915\u0947 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928 \u0916\u094b \u091c\u093e\u090f\u0901\u0917\u0947
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\ "{0}" \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0938\u0947 \u0939\u0940 "{1}" \u092e\u0947\u0902 \u0909\u092a\u0938\u094d\u0925\u093f\u0924 \u0939\u0948
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\ "{0}" \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u092a\u0939\u0932\u0947 \u0938\u0947 \u0939\u0940 \u092c\u0928\u093e \u0926\u0940 \u0917\u092f\u0940 \u0939\u0948 . \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0916\u094b\u0932\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e .
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
@@ -45,25 +45,25 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
#: EditorConsole.java:153
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u0915\u0902\u0938\u094b\u0932 \u0906\u0909\u091f \u092a\u0941\u091f \u0915\u094b \u091c\u092e\u093e \u0915\u0930\u0928\u0947 \u0935\u093e\u0932\u0940 \n\u092b\u093f\u0932\u094d\u0938 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940
-#: Editor.java:1102
+#: Editor.java:1116
About\ Arduino=\u0906\u0930\u094d\u0921\u0941\u0907\u0928\u094b \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947
-#: Editor.java:643
+#: Editor.java:650
Add\ File...=\u092b\u093e\u0907\u0932 \u091c\u094b\u0919\u093f\u092f\u0947
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
!Add\ Library...=
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u092b\u093e\u0907\u0932 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u092b\u093f\u0915\u094d\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u092a\u094d\u0930\u0949\u092c\u094d\u0932\u092e \u0939\u094b \u0917\u092f\u0940 \n\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u092e\u0924 \u0915\u0930\u093f\u090f \u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0935\u094b \u092a\u0941\u0930\u093e\u0923\u0940 \u092b\u093e\u0907\u0932 \u0915\u094b \u092c\u0926\u0932 \u0926\u0947\u0917\u0940 \n\u0913\u092a\u0928 \u0906\u092a\u094d\u0936\u0928 \u0915\u094b \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 \u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0915\u094b\u0936\u093f\u0936 \u0915\u0940\u091c\u093f\u092f\u0947
+An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u092b\u093e\u0907\u0932 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u092b\u093f\u0915\u094d\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u092a\u094d\u0930\u0949\u092c\u094d\u0932\u092e \u0939\u094b \u0917\u092f\u0940 \n\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u092e\u0924 \u0915\u0930\u093f\u090f \u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0935\u094b \u092a\u0941\u0930\u093e\u0923\u0940 \u092b\u093e\u0907\u0932 \u0915\u094b \u092c\u0926\u0932 \u0926\u0947\u0917\u0940 \n\u0913\u092a\u0928 \u0906\u092a\u094d\u0936\u0928 \u0915\u094b \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 \u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0915\u094b\u0936\u093f\u0936 \u0915\u0940\u091c\u093f\u092f\u0947 \n
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u092e\u0936\u0940\u0928 \u0915\u0947 \u0932\u093f\u090f \u0935\u093f\u0936\u093f\u0937\u094d\u091f \u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u092f\u093e\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u090f\u0915 \u0905\u091c\u094d\u091e\u093e\u0924 \u0924\u094d\u0930\u0941\u091f\u093f \u0939\u0941\u0908\n
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u092e\u0936\u0940\u0928 \u0915\u0947 \u0932\u093f\u090f \u0935\u093f\u0936\u093f\u0937\u094d\u091f \u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u092f\u093e\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u090f\u0915 \u0905\u091c\u094d\u091e\u093e\u0924 \u0924\u094d\u0930\u0941\u091f\u093f \u0939\u0941\u0908
#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
@@ -84,61 +84,67 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
+#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u0928\u0939\u0940\u0902 \u091a\u0932\u093e \u0938\u0915\u0924\u0947 \u0915\u094d\u092f\u094b\u0915\u093f \u0905\u092a\u0928\u0940 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938 \u0915\u094b \u0938\u094d\u091f\u094b\u0930 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0928\u0939\u0940\u0902 \u092c\u0928\u093e \u0938\u0915\u0924\u093e
-#: Base.java:1603
+#: Base.java:1889
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u0928\u0939\u0940\u0902 \u091a\u0932\u093e \u0938\u0915\u0924\u0947 \u0915\u094d\u092f\u094b\u0915\u093f \u0905\u092a\u0928\u0940 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938 \u0915\u094b \u0938\u094d\u091f\u094b\u0930 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0928\u0939\u0940\u0902 \u092c\u0928\u093e \u0938\u0915\u0924\u093e
-#: Base.java:233
+#: Base.java:240
Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u0915\u093e\u092e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f\u00a0\u092a\u0942\u0930\u094d\u0923 \u091c\u0947.\u0921\u0940.\u0915\u0947. \u091a\u093e\u0939\u093f\u090f(\u0938\u093f\u0930\u094d\u092b \u090f\u0915 \u091c\u0947.\u0906\u0930.\u0908. \u0928\u0939\u0940)|\u00a0\u0915\u0943\u092a\u092f\u093e \u092a\u0939\u0932\u0947\u00a0\u091c\u0947\u0921\u0940\u0915\u0947 1.5 \u092f\u093e \u092c\u093e\u0926 \u0915\u093e \u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902|\u00a0\u0905\u0927\u093f\u0915\u00a0\u091c\u093e\u0928\u0915\u093e\u0930\u0940\u00a0\u0938\u0902\u0926\u0930\u094d\u092d\u00a0\u092e\u0947\u0902 \u092a\u093e\u0908 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948|
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0915\u094d\u092f\u093e \u0906\u092a \u0938\u0941\u0928\u093f\u0936\u094d\u091a\u093f\u0924 \u0915\u0930\u0924\u0947\u0902 \u0939\u0948\u0902 \u0915\u0940 \u092f\u0939 \u092e\u093f\u091f\u093e \u0926\u093f\u092f\u093e \u091c\u093e\u092f\u0947 "{0}"?
-#: Sketch.java:591
+#: Sketch.java:587
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0915\u094d\u092f\u093e \u0906\u092a \u0938\u0941\u0928\u093f\u0936\u094d\u091a\u093f\u0924 \u0915\u0930\u0924\u0947 \u0939\u0948\u0902 \u0915\u0940 \u092f\u0939 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u093f\u091f\u093e \u0926\u093f\u092f\u093e \u091c\u093e\u092f\u0947 ?
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
#: tools/AutoFormat.java:91
Auto\ Format=\u0938\u094d\u0935\u0924\: \u0938\u094d\u0935\u0930\u0942\u092a
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \: \u092c\u094b\u0939\u094b\u0924 \u0938\u093e\u0930\u0947 left \u0915\u0930\u0932\u0940 \u092c\u094d\u0930\u091a\u094d\u0915\u0947\u091f \u091b\u0942\u091f\u0947\u0902 \u0939\u0948\u0902
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \: \u092c\u094b\u0939\u094b\u0924 \u0938\u093e\u0930\u0947 left \u0915\u094b\u0937\u094d\u091f\u0915 \u091b\u0942\u091f\u0947\u0902 \u0939\u0948\u0902
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \: \u092c\u094b\u0939\u094b\u0924 \u0938\u093e\u0930\u0947 right \u0915\u0930\u0932\u0940 \u092c\u094d\u0930\u091a\u094d\u0915\u0947\u091f \u091b\u0942\u091f\u0947\u0902 \u0939\u0948\u0902
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \: \u092c\u094b\u0939\u094b\u0924 \u0938\u093e\u0930\u0947 right \u0915\u094b\u0937\u094d\u091f\u0915 \u091b\u0942\u091f\u0947\u0902 \u0939\u0948\u0902
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
Auto\ Format\ finished.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0916\u093c\u0924\u092e
-#: Preferences.java:423
+#: Preferences.java:439
Automatically\ associate\ .ino\ files\ with\ Arduino=\u0938\u094d\u0935\u0924\: .INO \u092b\u093e\u0907\u0932 \u0915\u093e \u0938\u0939\u092f\u094b\u0917\u0940 \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092c\u0928\u093e\u092f\u0947
#: SerialMonitor.java:110
Autoscroll=\u0938\u094d\u0935\u0947\u092f\u092e \u092a\u0924\u094d\u0930\u093f\u0915\u093e
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
Bad\ error\ line\:\ {0}=Bad error line\: {0}
-#: Editor.java:2089
+#: Editor.java:2136
Bad\ file\ selected=\u0916\u0930\u093e\u092c \u092b\u093e\u0907\u0932 \u091a\u0941\u0928\u0940 \u0917\u0908
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
Board=\u092c\u094b\u0930\u094d\u0921
#: ../../../processing/app/debug/TargetBoard.java:42
@@ -148,22 +154,28 @@ Board=\u092c\u094b\u0930\u094d\u0921
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
Both\ NL\ &\ CR=\u0926\u094b\u0928\u094b\u0902 NL \u0914\u0930 CR
-#: Preferences.java:80
+#: Preferences.java:81
Browse=\u092c\u094d\u0930\u093e\u0909\u091c\u093c \u0915\u0930\u0947\u0902
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u092c\u093f\u0932\u094d\u0921 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0917\u093e\u092f\u092c \u0939\u094b \u0917\u092f\u0940 \u092f\u093e \u0909\u0938\u092e\u0947 \u092a\u094d\u0930\u0935\u0947\u0936 \u0928\u093f\u0937\u0947\u0927\u093e\u0924\u094d\u092e\u0915 \u0939\u0948
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0915\u094b \u091c\u0932\u093e\u0907\u092f\u0947
-#: Editor.java:2457
+#: Editor.java:2504
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0907/\u0913 \u092c\u094b\u0930\u094d\u0921 \u092a\u0930 \u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u0930\u0939\u093e \u0939\u0948 (\u0907\u0938 \u092a\u094d\u0930\u0915\u094d\u0930\u093f\u092f\u093e \u092e\u0947\u0902 \u092e\u093f\u0928\u091f \u0932\u0917 \u0938\u0915\u0924\u093e \u0939\u0948.....)
#: ../../../processing/app/Base.java:368
@@ -172,78 +184,90 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0907/\u09
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=\u0930\u0926\u094d\u0926
-#: Sketch.java:459
+#: Sketch.java:455
Cannot\ Rename=\u0928\u093e\u092e \u092c\u0926\u0932\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u0924\u093e
#: SerialMonitor.java:112
Carriage\ return=Carriage return
-#: Preferences.java:86
+#: Preferences.java:87
!Catalan=
-#: Preferences.java:403
+#: Preferences.java:419
Check\ for\ updates\ on\ startup=\u0936\u0941\u0930\u0941\u0906\u0924 \u092e\u0947\u0902 \u0905\u0926\u094d\u092f\u0924\u0928 \u0915\u0947 \u0932\u093f\u090f \u091c\u093e\u0902\u091a\u0947\u0902
-#: Preferences.java:87
-!Chinese\ Simplified=
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
!Chinese\ Traditional=
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
Close=\u092c\u0902\u0926 \u0915\u0930\u0947\u0902
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
Comment/Uncomment=\u0915\u092e\u0947\u0928\u094d\u091f/\u0905\u0928\u0915\u092e\u0947\u0928\u094d\u091f
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u0938\u0902\u0915\u0932\u0915 \u0924\u094d\u0930\u0941\u091f\u093f {0} \u0907\u0938 \u0915\u094b\u0921 \u0915\u094b \u092d\u0947\u091c\u0947\u0902
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
Compiling\ sketch...=\u0938\u094d\u0915\u0947\u091a \u0915\u094b \u0915\u092e\u094d\u092a\u093e\u0907\u0932 \u0915\u093f\u092f\u093e \u091c\u093e \u0930\u0939\u093e \u0939\u0948 ....
#: EditorConsole.java:152
Console\ Error=\u0915\u0902\u0938\u094b\u0932 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
Copy=\u0915\u0949\u092a\u0940
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
Copy\ as\ HTML=HTML \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u0915\u0949\u092a\u0940
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u0949\u092a\u0940
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u092f\u0939 ''{0}'' \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 \u091c\u094b\u095c\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e
-#: Editor.java:2141
+#: Editor.java:2188
Could\ not\ copy\ to\ a\ proper\ location.=\u0938\u0939\u0940 \u091c\u0917\u0939 \u092a\u0947\u092f \u0915\u0949\u092a\u0940 \u0928\u0939\u0940\u0902 \u0939\u094b \u092a\u093e\u092f\u093e
-#: Editor.java:2132
+#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0928\u0939\u0940\u0902 \u092c\u0928 \u0938\u0915\u0940
-#: Editor.java:2159
+#: Editor.java:2206
Could\ not\ create\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0928\u0939\u0940\u0902 \u092c\u0928 \u092a\u093e\u0908
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
Could\ not\ delete\ "{0}".=\u0939\u091f\u093e\u092f\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e "{0}"
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0907\u0938 "{\u0966}"\u092e\u094c\u091c\u0942\u0926\u093e \u092b\u093e\u0907\u0932 \u0915\u094b \u092e\u093f\u091f\u093e\u092f\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e
+Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0907\u0938 "{0}"\u092e\u094c\u091c\u0942\u0926\u093e \u092b\u093e\u0907\u0932 \u0915\u094b \u092e\u093f\u091f\u093e\u092f\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
Could\ not\ delete\ {0}={0} \u0915\u094b \u0928\u0937\u094d\u091f \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u093e
@@ -259,138 +283,144 @@ Could\ not\ delete\ {0}={0} \u0915\u094b \u0928\u0937\u094d\u091f \u0928\u0939\u
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
Could\ not\ open\ the\ URL\n{0}=\u092f\u0942\u0906\u0930\u090f\u0932 \u0928\u0939\u0940\u0902 \u0916\u094b\u0932 \u0938\u0915\u093e\n{0}
-#: Base.java:1672
+#: Base.java:1958
#, java-format
Could\ not\ open\ the\ folder\n{0}=\u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0928\u0939\u0940\u0902 \u0916\u094b\u0932 \u0938\u0915\u093e\n{0}
-#: Sketch.java:1811
+#: Sketch.java:1769
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\u0906\u092a\u0915\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0930\u0940-\u0938\u0947\u0935 \u0928\u0939\u0940\u0902 \u0939\u094b \u092a\u093e\u0908 \u0939\u0948, \u0939\u094b \u0938\u0915\u0924\u093e \u0939\u0948 \u0906\u092a \u092a\u0930\u0947\u0936\u093e\u0928\u0940 \u092e\u0947\u0902 \u092a\u095d \u091c\u093e\u092f\u0947\u0902 \u0907\u0938\u094d\u0938\u0932\u093f\u092f\u0947 \u0905\u092a\u0928\u093e \u0915\u094b\u0921 \u0915\u0949\u092a\u0940 \u0914\u0930 \u092a\u0947\u0938\u094d\u091f \u0915\u0940\u091c\u093f\u092f\u0947 \u0915\u093f\u0938\u0940 \u0914\u0930 \u091c\u0917\u0939
-#: Sketch.java:1810
+#: Sketch.java:1768
Could\ not\ re-save\ sketch=\u0906\u092a\u0915\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0930\u0940-\u0938\u0947\u0935 \u0928\u0939\u0940\u0902 \u0939\u094b \u092a\u093e\u0908 \u0939\u0948
#: Theme.java:52
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u0906\u092a\u0915\u094b processing \u0907\u0928\u094d\u0938\u094d\u091f\u093e\u0932 \u0915\u0930\u0928\u0940 \u092a\u095c\u0947\u0917\u093e
-#: Preferences.java:210
+#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0921\u093f\u092b\u094c\u0932\u094d\u091f \u0938\u0947\u0924\u094d\u0924\u093f\u0902\u0917\u094d\u0938 \u0938\u094d\u0924\u093e\u092a\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0940 \n\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092b\u093f\u0930 \u0938\u0947 \u0907\u0928\u094d\u0938\u094d\u091f\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
-Could\ not\ read\ preferences\ from\ {0}={\u0966} \u0938\u0947 \u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u095d\u0940 \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u0940
+Could\ not\ read\ preferences\ from\ {0}={0} \u0938\u0947 \u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u095d\u0940 \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u0940
-#: Base.java:2196
+#: Base.java:2482
#, java-format
Could\ not\ remove\ old\ version\ of\ {0}={0} \u0915\u0947 \u092a\u0941\u0930\u093e\u0928\u0947 \u0938\u0902\u0938\u094d\u0915\u0930\u0923 \u0915\u094b \u0926\u0942\u0930 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u093e
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0928\u093e\u092e \u092c\u0926\u0932\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e "{0}" to "{1}"
-#: Sketch.java:479
+#: Sketch.java:475
Could\ not\ rename\ the\ sketch.\ (0)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u0928\u0939\u0940\u0902 \u092c\u0926\u0932\u093e \u091c\u093e \u0938\u0915\u093e (\u0966)
-#: Sketch.java:500
+#: Sketch.java:496
Could\ not\ rename\ the\ sketch.\ (1)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u0928\u0939\u0940\u0902 \u092c\u0926\u0932\u093e \u091c\u093e \u0938\u0915\u093e (1)
-#: Sketch.java:507
+#: Sketch.java:503
Could\ not\ rename\ the\ sketch.\ (2)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u0928\u0939\u0940\u0902 \u092c\u0926\u0932\u093e \u091c\u093e \u0938\u0915\u093e (2 )
-#: Base.java:2206
+#: Base.java:2492
#, java-format
Could\ not\ replace\ {0}={0} \u0915\u0940 \u091c\u0917\u0939 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u093e
#: tools/Archiver.java:74
Couldn't\ archive\ sketch=\u0938\u094d\u0915\u0947\u091a \u0938\u0902\u0917\u094d\u0930\u0939 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u093e
-#: Sketch.java:1689
+#: Sketch.java:1647
Couldn't\ determine\ program\ size\:\ {0}=\u0915\u093e\u0930\u094d\u092f \u0915\u094d\u0930\u092e \u0915\u093e \u0906\u0915\u093e\u0930 \u0928\u0939\u0940\u0902 \u091c\u093e\u0928 \u092a\u093e\u092f\u093e \u0917\u092f\u093e {}0
-#: Sketch.java:620
+#: Sketch.java:616
Couldn't\ do\ it=\u092f\u0939 \u0915\u093f\u092f\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
Cut=\u0915\u091f
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
+#: Preferences.java:90
!Danish=
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u0907\u0928\u094d\u0921\u0947\u0928\u094d\u091f \u0915\u092e \u0915\u0940\u091c\u093f\u092f\u0947
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
Delete=\u0930\u0926\u094d\u0926 \u0915\u0930\u0947\u0902
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u0921\u093f\u0935\u093e\u0907\u0938 \u091c\u0935\u093e\u092c \u0928\u0939\u0940 \u0926\u0947 \u0930\u0939\u093e \u0939\u0948, \u091c\u093e\u0902\u091a \u0932\u0940\u091c\u093f\u092f\u0947 \u0915\u093f \u0938\u0939\u0940 \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0915\u093e \u091a\u092f\u0928 \u0915\u093f\u092f\u093e \u0939\u0948 \u092f\u093e \u092c\u094b\u0930\u094d\u0921 \u0915\u094b \u090f\u0915\u094d\u0938\u092a\u094b\u0930\u094d\u091f \u0915\u0930\u0928\u0947 \u0938\u0947 \u092a\u0939\u0932\u0947 \u0930\u0940\u0938\u0947\u091f \u0915\u0940\u091c\u093f\u092f\u0947
#: tools/FixEncoding.java:57
Discard\ all\ changes\ and\ reload\ sketch?=\u0938\u092d \u092c\u0926\u0932\u093e\u0935 \u0930\u0926\u094d\u0926 \u0915\u0930\u0947 \u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u091a\u0932\u093e\u092f\u0947\u0902
-#: Editor.java:2017
+#: Editor.java:2064
Don't\ Save=\u0928 \u0938\u0939\u0947\u091c\u0947\u0902
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
Done\ Saving.=\u0938\u0947\u0935 \u092a\u0942\u0930\u093e \u0939\u094b \u0917\u092f\u093e
-#: Editor.java:2463
+#: Editor.java:2510
Done\ burning\ bootloader.=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u091a\u0942\u0915\u093e \u0939\u0948
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
Done\ compiling.=\u0915\u092e\u094d\u092a\u093e\u0907\u0932 \u0939\u094b \u091a\u0941\u0915\u093e \u0939\u0948
-#: Editor.java:2517
+#: Editor.java:2564
Done\ printing.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \u0938\u092e\u093e\u092a\u094d\u0924
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
Done\ uploading.=\u0909\u092a\u0932\u094b\u0921 \u0939\u094b \u0917\u092f\u093e
-#: Preferences.java:90
+#: Preferences.java:91
!Dutch=
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
Edit=\u0938\u0902\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902
-#: Preferences.java:354
+#: Preferences.java:370
Editor\ font\ size\:\ =\u090f\u0921\u093f\u091f\u0930 \u092b\u0949\u0923\u094d\u091f \u0938\u093e\u0907\u091c\u093c\:
-#: Preferences.java:337
+#: Preferences.java:353
!Editor\ language\:\ =
-#: Preferences.java:91
+#: Preferences.java:92
!English=
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
Environment=\u0935\u093e\u0924\u093e\u0935\u0930\u0923
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=\u0924\u094d\u0930\u0941\u091f\u093f
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
Error\ adding\ file=\u092b\u093e\u0907\u0932 \u091c\u094b\u0921\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
Error\ compiling.=\u0938\u0902\u0915\u0932\u0928 \u0924\u094d\u0930\u0941\u091f\u093f
-#: Base.java:1433
+#: Base.java:1674
Error\ getting\ the\ Arduino\ data\ folder.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0921\u0947\u091f\u093e \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u092a\u094d\u0930\u093e\u092a\u094d\u0924 \u0915\u0930\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u093f
-#: Serial.java:567
+#: Serial.java:593
#, java-format
Error\ inside\ Serial.{0}()=\u0938\u0940\u0930\u093f\u092f\u0932 \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0924\u094d\u0930\u0941\u091f\u0940 {0}()
@@ -403,25 +433,25 @@ Error\ inside\ Serial.{0}()=\u0938\u0940\u0930\u093f\u092f\u0932 \u0915\u0947 \
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
Error\ opening\ serial\ port\ ''{0}''.=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0916\u0941\u0932 \u0928\u0939\u0940\u0902 \u092a\u094d \u0930\u0939\u093e ''{0}''.
-#: Preferences.java:261
+#: Preferences.java:277
Error\ reading\ preferences=\u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u0922\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u0922\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940 ,\u0915\u0943\u092a\u094d\u092f\u093e \n{0} \u0915\u094b \u092e\u093f\u091f\u093e\u092f\u0947\u0902 \u092f\u093e \u0939\u091f\u093e\u092f\u0947\u0902 \u0914\u0930 \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092a\u0941\u0928\u094d\u0939\u0947\u0902 \u091a\u093e\u0932\u0942 \u0915\u0930\u0947\u0902
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
Error\ while\ burning\ bootloader.=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0921\u093e\u0932\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940
#: ../../../processing/app/Editor.java:2555
@@ -429,28 +459,31 @@ Error\ while\ burning\ bootloader.=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u
#: SketchCode.java:83
#, java-format
-Error\ while\ loading\ code\ {0}=\u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940
+Error\ while\ loading\ code\ {0}=\u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940 {0}
-#: Editor.java:2520
+#: Editor.java:2567
Error\ while\ printing.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
Examples=\u0909\u0926\u093e\u0939\u0930\u0923
-#: Editor.java:2435
+#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0928\u093f\u0930\u094d\u092f\u093e\u0924 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e, \u092c\u0926\u0932\u093e\u0935 \u092a\u0939\u0932\u0947 \u0938\u0947\u0935 \u0915\u0940\u091c\u093f\u092f\u0947
-#: Base.java:1814
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
+#: Editor.java:491
File=\u092b\u093e\u0907\u0932
#: Preferences.java:94
@@ -459,158 +492,164 @@ File=\u092b\u093e\u0907\u0932
#: FindReplace.java:124 FindReplace.java:127
Find=\u0916\u094b\u091c\u0947\u0902
-#: Editor.java:1235
+#: Editor.java:1249
Find\ Next=\u0905\u0917\u0932\u093e \u0922\u0942\u0901\u0922\u093f\u092f\u0947
-#: Editor.java:1245
+#: Editor.java:1259
Find\ Previous=\u092a\u093f\u091b\u0932\u093e \u0922\u0942\u0901\u0922\u093f\u092f\u0947
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
Find\ in\ Reference=\u0938\u0902\u0926\u0930\u094d\u092d \u092e\u0947\u0902 \u092a\u094d\u0930\u093e\u092a\u094d\u0924 \u0915\u0930\u0947\u0902
-#: Editor.java:1220
+#: Editor.java:1234
Find...=\u0922\u0942\u0901\u0922\u093f\u092f\u0947
#: FindReplace.java:80
Find\:=\u0916\u094b\u091c\u0947\u0902\:
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
Fix\ Encoding\ &\ Reload=\u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u092b\u093f\u0915\u094d\u0938 \u0914\u0930 \u092b\u093f\u0930 \u092a\u0941\u0928\u0903 \u0932\u094b\u0921
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
+#: Preferences.java:95
!French=
-#: Editor.java:1083
+#: Editor.java:1097
Frequently\ Asked\ Questions=\u0905\u0915\u0938\u0930 \u092a\u0942\u091b\u0947 \u091c\u093e\u0928\u0947 \u0935\u093e\u0932\u0947 \u092a\u094d\u0930\u0936\u094d\u0928
-#: Preferences.java:95
+#: Preferences.java:96
!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
+#: Preferences.java:97
!German=
-#: Editor.java:1041
+#: Editor.java:1054
Getting\ Started=\u092a\u094d\u0930\u093e\u0930\u0902\u092d \u0915\u0930\u0928\u093e
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
!Greek=
-#: Base.java:1799
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
+#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
+#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
+#: Editor.java:1015
Help=\u092e\u0926\u0926
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
+#: Sketch.java:295
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u092a\u0939\u0932\u0947 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u0915\u0930 \u0932\u093f\u092f\u093e \u091c\u093e\u092f\u0947 \n\u0907\u0938\u0938\u0947 \u092a\u0939\u0932\u0947 \u0915\u0940 \u0909\u0938\u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932\u093e \u091c\u093e\u092f\u0947 ?
-#: Sketch.java:886
+#: Sketch.java:882
How\ very\ Borges\ of\ you=How very Borges of you
-#: Preferences.java:98
+#: Preferences.java:100
!Hungarian=
#: FindReplace.java:96
Ignore\ Case=\u0907\u0917\u094d\u0928\u094b\u0930 \u0915\u0947\u0938
-#: Base.java:1207
+#: Base.java:1058
Ignoring\ bad\ library\ name=\u092c\u0941\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0928\u093e\u092e \u0915\u0940 \u0905\u0928\u0926\u0947\u0916\u0940
-#: Base.java:1132
+#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=\u092c\u0941\u0930\u093e \u0928\u093e\u092e \u0915\u0947 \u0915\u093e\u0930\u0923 \u0938\u094d\u0915\u0947\u091a \u0915\u0940 \u0905\u0928\u0926\u0947\u0916\u0940
-#: Editor.java:629
+#: Editor.java:636
Import\ Library...=\u0906\u092f\u093e\u0924 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
Increase\ Indent=\u0907\u0928\u094d\u0921\u0947\u0928\u094d\u091f \u092c\u0922\u093e\u0907\u092f\u0947
-#: Preferences.java:99
+#: Preferences.java:101
!Indonesian=
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
+#: Preferences.java:102
!Italian=
-#: Preferences.java:101
+#: Preferences.java:103
!Japanese=
-#: Preferences.java:102
+#: Preferences.java:104
!Korean=
-#: Preferences.java:103
+#: Preferences.java:105
!Latvian=
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
-#: Preferences.java:104
+#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
+#: Base.java:2112
Message=\u0938\u0902\u0926\u0947\u0936
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
+#: Sketch.java:1712
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=*/ \u0916\u094b \u0917\u092f\u093e /* \u0915\u0947 \u0905\u0902\u0924 \u0924\u0915
-#: Preferences.java:433
+#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0914\u0930 \u092c\u094b\u0939\u094b\u0924 \u0938\u0940 \u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u0938\u0940\u0927\u093e \u092b\u093e\u0907\u0932 \u092e\u0947\u0902 \u0938\u092e\u094d\u092a\u093e\u0926\u093f\u0924 \u0915\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948\u0902
-#: Editor.java:2109
+#: Editor.java:2156
Moving=\u0917\u0924\u093f\u0936\u0940\u0932
-#: Sketch.java:286
+#: Sketch.java:282
Name\ for\ new\ file\:=\u0928\u092f\u0940 \u092b\u093e\u0907\u0932 \u0915\u093e \u0928\u093e\u092e
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
New=\u0928\u092f\u093e
#: EditorToolbar.java:46
@@ -625,16 +664,16 @@ Newline=\u0928\u092f\u0940 \u0930\u0947\u0916\u093e
#: EditorHeader.java:340
Next\ Tab=\u0905\u0917\u0932\u093e \u091f\u0948\u092c
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=\u0928\u0939\u0940\u0902
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0915\u094b\u0908 \u092c\u094b\u0930\u094d\u0921 \u091a\u092f\u0928\u093f\u0924 \u0928\u0939\u0940, \u0909\u092a\u0915\u0930\u0923 \u0938\u0947 \u090f\u0915 \u092c\u094b\u0930\u094d\u0921 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902> \u092c\u094b\u0930\u094d\u0921 \u092e\u0947\u0928\u0942
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
No\ changes\ necessary\ for\ Auto\ Format.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0915\u0947 \u0932\u093f\u090f \u0915\u094b\u0908 \u092c\u0926\u0932\u093e\u0935 \u091c\u0930\u0941\u0930\u0940 \u0928\u0939\u0940\u0902 \u0939\u0948\u0902
-#: Editor.java:366
+#: Editor.java:373
!No\ files\ were\ added\ to\ the\ sketch.=
#: Platform.java:167
@@ -643,81 +682,88 @@ No\ launcher\ available=\u0915\u094b\u0908 \u092a\u094d\u0930\u093e\u0930\u0902\
#: SerialMonitor.java:112
No\ line\ ending=\u0915\u094b\u0908 \u0930\u0947\u0916\u093e \u0938\u092e\u093e\u092a\u094d\u0924\u093f \u0928\u0939\u0940\u0902
-#: Base.java:538
+#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0928\u0939\u0940\u0902, \u0935\u093e\u0938\u094d\u0924\u0935 \u092e\u0947\u0902, \u0906\u092a \u0915\u0947 \u0932\u093f\u090f \u0915\u0941\u091b \u0924\u093e\u091c\u093e \u0939\u0935\u093e \u0915\u0947 \u0932\u093f\u090f \u0938\u092e\u092f \u0939\u0948.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
No\ reference\ available\ for\ "{0}"="{0}" \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u094b\u0908 \u0938\u0928\u094d\u0926\u0930\u094d\u092d \u0909\u092a\u0932\u092c\u094d\u0927 \u0928\u0939\u0940 \u0939\u0948
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u0930\u0942\u092a \u0914\u0930 \u092e\u0939\u0938\u0942\u0938 \u0939\u0948 \u0915\u0940 \u0938\u094d\u0925\u093e\u092a\u0928\u093e \u0915\u0930\u0924\u0947 \u0939\u0941\u090f \u0917\u0948\u0930 \u0918\u093e\u0924\u0915 \u0924\u094d\u0930\u0941\u091f\u093f
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u0928\u0939\u0940\u0902
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
OK=\u0913\u0915\u0947
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
One\ file\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 \u090f\u0915 \u092b\u093e\u0907\u0932 \u091c\u094b\u095c\u0940 \u0917\u0908
#: EditorToolbar.java:41
Open=\u0916\u094b\u0932\u0947\u0902
-#: Editor.java:2641
+#: Editor.java:2688
Open\ URL=URL \u0916\u094b\u0932\u093f\u090f
-#: Base.java:633
+#: Base.java:636
Open\ an\ Arduino\ sketch...=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0938\u094d\u0915\u0947\u091a \u0916\u094b\u0932\u093f\u090f
#: EditorToolbar.java:46
Open\ in\ Another\ Window=\u0905\u0932\u0917 \u091f\u0948\u092c \u092e\u0947\u0902 \u0916\u094b\u0932\u0947\u0902
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=\u0916\u094b\u0932\u093f\u090f...
-#: Editor.java:556
+#: Editor.java:563
Page\ Setup=\u092a\u0943\u0937\u094d\u0920 \u0938\u0947\u091f\u0905\u092a
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
Paste=\u092a\u0947\u0938\u094d\u091f
-#: Preferences.java:105
+#: Preferences.java:109
!Persian=
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0938\u094d\u0915\u0947\u091a \u0938\u0947 \u090f\u0938 \u092a\u0940 \u0906\u0908 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0915\u093e \u0906\u092f\u093e\u0924 \u0915\u0930\u0947\u0902
-#: Base.java:232
+#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=\u0915\u0943\u092a\u092f\u093e \u091c\u0947\u0921\u0940\u0915\u0947 1.5 \u092f\u093e \u092c\u093e\u0926 \u0915\u093e \u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902\u0902
-#: Preferences.java:106
+#: Preferences.java:110
!Polish=
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
Preferences=\u092a\u094d\u0930\u093e\u0925\u092e\u093f\u0915\u0924\u093e\u090f\u0902
#: FindReplace.java:123 FindReplace.java:128
@@ -726,22 +772,22 @@ Previous=\u092a\u093f\u091b\u0932\u093e
#: EditorHeader.java:326
Previous\ Tab=\u092a\u093f\u091b\u0932\u093e \u091f\u0948\u092c
-#: Editor.java:564
+#: Editor.java:571
Print=\u092a\u094d\u0930\u093f\u0902\u091f
-#: Editor.java:2524
+#: Editor.java:2571
Printing\ canceled.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u0940 \u0917\u092f\u0940
-#: Editor.java:2500
+#: Editor.java:2547
Printing...=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917.....
-#: Base.java:1671
+#: Base.java:1957
Problem\ Opening\ Folder=\u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0916\u094b\u0932\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e \u0939\u0948
-#: Base.java:1647
+#: Base.java:1933
Problem\ Opening\ URL=\u092f\u0942\u0906\u0930\u090f\u0932 \u0916\u094b\u0932\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e \u0939\u0948
-#: Base.java:220
+#: Base.java:227
Problem\ Setting\ the\ Platform=\u092a\u094d\u0932\u0947\u091f\u092b\u093e\u0930\u094d\u092e \u0915\u0940 \u0938\u094d\u0925\u093e\u092a\u0928\u093e \u092e\u0947 \u0938\u092e\u0938\u094d\u092f\u093e
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
@@ -750,41 +796,41 @@ Problem\ Setting\ the\ Platform=\u092a\u094d\u0932\u0947\u091f\u092b\u093e\u0930
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
+#: Base.java:1673
Problem\ getting\ data\ folder=\u0921\u0947\u091f\u093e \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0915\u094b \u0932\u0947\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e \u0939\u0948
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder={\u0966} \u0915\u094b \u092c\u093f\u0932\u094d\u0921 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u092e\u0947\u0902 \u0921\u093e\u0932\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e
+Problem\ moving\ {0}\ to\ the\ build\ folder={0} \u0915\u094b \u092c\u093f\u0932\u094d\u0921 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u092e\u0947\u0902 \u0921\u093e\u0932\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e
#: debug/Uploader.java:209
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u092c\u094b\u0930\u094d\u0921 \u092e\u0947 \u0905\u092a\u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u092e\u0947 \u0938\u092e\u0938\u094d\u092f\u093e, \u0938\u0941\u091d\u093e\u0935 \u0915\u0947 \u0932\u093f\u092f\u0947 http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0926\u0947\u0916\u0947\u0901
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
Problem\ with\ rename=\u0928\u093e\u092e \u092c\u0926\u0932\u0928\u0947 \u092e\u0947\u0902 \u092e\u0941\u0936\u094d\u0915\u093f\u0932
-#: Editor.java:2090
+#: Editor.java:2137
Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u092a\u094d\u0930\u094b\u0938\u0947\u0938\u093f\u0902\u0917 \u0915\u0947\u0935\u0932 \u0905\u092a\u0928\u0947 \u0939\u0940 \u0938\u094d\u0915\u0947\u091a\u0947\u0938 \u0916\u094b\u0932 \u0938\u0915\u0924\u093e \u0939\u0948\n\u0914\u0930 \u0926\u0942\u0938\u0930\u0940 \u092b\u093e\u0907\u0932\u094d\u0938 \u091c\u093f\u0928\u0915\u093e \u0905\u0902\u0924 .ino \u0905\u0925\u0935\u093e .pde \u0938\u0947 \u0939\u094b\u0924\u093e \u0939\u0948
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
+#: Editor.java:704
Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u093e\u092e\u0930
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=\u091b\u094b\u0921\u093f\u092f\u0947
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
Redo=\u0930\u0940\u0921\u0942
-#: Editor.java:1065
+#: Editor.java:1078
Reference=\u0938\u0902\u0926\u0930\u094d\u092d
#: EditorHeader.java:300
Rename=\u0928\u093e\u092e \u092c\u0926\u0932\u0947\u0902
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=\u092c\u0926\u0932\u0947\u0902
#: FindReplace.java:122 FindReplace.java:129
@@ -793,55 +839,55 @@ Replace\ &\ Find=\u092c\u0926\u0932\u0947\u0902 \u0914\u0930 \u0916\u094b\u091c\
#: FindReplace.java:120 FindReplace.java:131
Replace\ All=\u0938\u092c\u0915\u0940 \u091c\u0917\u0939
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
Replace\ the\ existing\ version\ of\ {0}?=\u092e\u094c\u091c\u0942\u0926\u093e \u0938\u0902\u0938\u094d\u0915\u0930\u0923 \u092c\u0926\u0932\u0947\u0902 {0}
#: FindReplace.java:81
Replace\ with\:=\u0915\u0940 \u091c\u0917\u0939\:
-#: Preferences.java:109
+#: Preferences.java:113
!Romanian=
-#: Preferences.java:110
+#: Preferences.java:114
!Russian=
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=\u0938\u0939\u0947\u091c\u0947\u0901
-#: Editor.java:530
+#: Editor.java:537
Save\ As...=\u0926\u0942\u0938\u0930\u0940 \u092b\u093e\u0907\u0932 \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u0938\u0939\u0947\u091c\u0947\u0902
-#: Editor.java:2270
+#: Editor.java:2317
Save\ Canceled.=\u0938\u0947\u0935 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e
-#: Editor.java:2420
+#: Editor.java:2467
Save\ changes\ before\ export?=\u0928\u093f\u0930\u094d\u092f\u093e\u0924 \u0938\u0947 \u092a\u0939\u0932\u0947 \u092c\u0926\u0932\u093e\u0935 \u0938\u0947\u0935 \u0915\u0930\u0947\u0902 ?
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
Save\ changes\ to\ "{0}"?\ \ =\u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u094b\u0902 \u0915\u094b "{0}" \u092e\u0947 \u0938\u0939\u0947\u091c\u0947\u0901
-#: Sketch.java:829
+#: Sketch.java:825
Save\ sketch\ folder\ as...=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0915\u094b \u0907\u0938 \u0928\u093e\u092e \u0938\u0947 \u0938\u0947\u0935 \u0915\u0930\u0947\u0902
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
Saving...=\u0938\u0947\u0935\u093f\u0902\u0917.....
-#: Base.java:1623
+#: Base.java:1909
Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0938\u094d\u0915\u0947\u091a \u092c\u0928\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902 \u0905\u0925\u0935\u093e \u0928\u092f\u093e \u092c\u0928\u093e\u090f\u0901
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
Select\ All=\u0938\u092d\u0940 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
+#: Sketch.java:975
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0915\u094b\u0908 \u091a\u093f\u0924\u094d\u0930 \u092f\u093e \u092b\u093e\u0907\u0932 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 \u0915\u0949\u092a\u0940 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u091a\u0941\u0928\u0947\u0902
-#: Preferences.java:314
+#: Preferences.java:330
Select\ new\ sketchbook\ location=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093f\u0924\u093e\u092c \u0915\u0940 \u0928\u092f\u0940 \u091c\u0917\u0939 \u091a\u0941\u0928\u093f\u090f
#: ../../../processing/app/debug/Compiler.java:146
@@ -850,147 +896,157 @@ Select\ new\ sketchbook\ location=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0
#: SerialMonitor.java:93
Send=\u092d\u0947\u091c\u0947\u0902
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
Serial\ Monitor=\u0938\u0940\u0930\u093f\u092f\u0932 \u092e\u094b\u0928\u093f\u091f\u0930
-#: Serial.java:147
+#: Serial.java:174
#, java-format
Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f ''{0}'' \u092a\u0939\u0932\u0947 \u0939\u0940 \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u092e\u0947\u0902 .\u0915\u094b\u0936\u093f\u0936 \u0915\u0940\u091c\u093f\u092f\u0947 \u0909\u0928 \u0938\u0949\u092b\u094d\u091f\u0935\u0947\u0930 \u0915\u094b \u092c\u0902\u0926 \u0915\u0930\u0928\u0947 \n \u0915\u0940 \u091c\u094b \u0907\u0938 \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0915\u094b \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0930 \u0930\u0939\u0947 \u0939\u094b\u0902
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f ''{0}'' \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e. \u0915\u094d\u092f\u093e \u0905\u092a\u0928\u0947 \u0938\u0939\u0940 \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u091a\u0941\u0928\u093e \u0939\u0948 \u091f\u0942\u0932\u094d\u0938 > \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u092e\u0947\u0928\u0942 \u092e\u0947\u0902 \u0938\u0947 ?
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0928\u0902\u092c\u0930 {0} \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e \n\u0909\u092a\u0932\u094b\u0921 \u0915\u094b \u091c\u093e\u0930\u0940 \u0930\u0916\u0947\u0902 \u0915\u093f\u0938\u0940 \u0914\u0930 \u092a\u094b\u0930\u094d\u091f \u0915\u094b \u0938\u0947\u0932\u0947\u0915\u094d\u091f \u0915\u0930\u0915\u0947 ?
-#: Base.java:1440
+#: Base.java:1681
Settings\ issues=\u092e\u0941\u0926\u094d\u0926\u0947 \u0915\u0940 \u0938\u094d\u0925\u093e\u092a\u0928\u093e
-#: Editor.java:634
+#: Editor.java:641
Show\ Sketch\ Folder=\u0938\u094d\u0915\u0947\u091a \u092b\u094b\u0932\u094d\u0921\u0930 \u0926\u093f\u0916\u093e\u0907\u092f\u0947
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
+#: Preferences.java:387
Show\ verbose\ output\ during\:\ =\u0935\u093e\u091a\u093e\u0932 \u0906\u0909\u091f \u092a\u0941\u091f \u0926\u093f\u0916\u093e\u090f\u0902\:
-#: Editor.java:600
+#: Editor.java:607
Sketch=\u0938\u094d\u0915\u0947\u091a
-#: Sketch.java:1796
+#: Sketch.java:1754
Sketch\ Disappeared=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0916\u094b \u0917\u092f\u0940
-#: Base.java:1095
+#: Base.java:1411
Sketch\ Does\ Not\ Exist=\u0938\u094d\u0915\u0947\u091a \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
Sketch\ is\ Read-Only=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0938\u093f\u0930\u094d\u092b \u092a\u095d\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948
-#: Sketch.java:298
+#: Sketch.java:294
Sketch\ is\ Untitled=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0915\u094b\u0908 \u0936\u0940\u0930\u094d\u0937\u0915 \u0928\u0939\u0940\u0902 \u0939\u0948
-#: Sketch.java:724
+#: Sketch.java:720
Sketch\ is\ read-only=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u0947\u0935\u0932 \u092a\u095d\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948
-#: Sketch.java:1694
+#: Sketch.java:1653
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092c\u0939\u0941\u0924 \u092c\u0921\u093c\u0940 \u0939\u0948 -> http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0926\u0947\u0916\u093f\u092f\u0947 \u0907\u0938\u0947 \u091b\u094b\u091f\u093e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0909\u092a\u093e\u090f \u0915\u0947 \u0932\u093f\u090f
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
Sketchbook=\u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915
-#: Base.java:257
+#: Base.java:258
Sketchbook\ folder\ disappeared=\u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u092b\u094b\u0932\u094d\u0921\u0930 \u0917\u093e\u092f\u092c \u0939\u094b \u0917\u092f\u093e \u0939\u0948
-#: Preferences.java:299
+#: Preferences.java:315
Sketchbook\ location\:=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093f\u0924\u093e\u092c \u0915\u093e \u0938\u094d\u0925\u093e\u0928
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u0915\u0941\u091b \u092b\u093f\u0932\u094d\u0938 "\u0938\u093f\u0930\u094d\u092b \u092a\u095d\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948\u0902 ", \u0924\u094b \u0906\u092a\u0915\u094b \n\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0930\u0940-\u0938\u0947\u0935 \u0915\u0930\u0928\u0940 \u0939\u094b\u0917\u0940 \u0915\u093f\u0938\u0940 \u0914\u0930 \u091c\u0917\u0939 \u092a\u0930 ,\n\u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u092a\u094d\u0930\u092f\u093e\u0938 \u0915\u093f\u091c\u093f\u090f\u092f .
-#: Sketch.java:725
+#: Sketch.java:721
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u0915\u0941\u091b \u092b\u093c\u093e\u0907\u0932\u0947\u0902 "\u0915\u0947\u0935\u0932 \u092a\u0922\u093c\u0928\u0947" \u0915\u0947 \u0932\u093f\u090f \u091a\u093f\u0939\u094d\u0928\u093f\u0924 \u0915\u0930 \u0930\u0939\u0947 \u0939\u0948\u0902,\n\u0924\u094b \u0906\u092a \u0915\u093f\u0938\u0940 \u0905\u0928\u094d\u092f \u0938\u094d\u0925\u093e\u0928 \u092a\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0907\u0938 \u0938\u094d\u0915\u0947\u091a \u092c\u091a\u093e\u0928\u0947 \u0915\u0940 \u0906\u0935\u0936\u094d\u092f\u0915\u0924\u093e \u0939\u094b\u0917\u0940
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u092e\u093e\u092b\u093c \u0915\u0940\u091c\u093f\u092f\u0947 , \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a (\u092f\u093e \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e ) "{0}" \u092a\u0939\u0932\u0947 \u0938\u0947 \u0939\u0940 \u0909\u092a\u0938\u094d\u0925\u093f\u0924 \u0939\u0948
-#: Preferences.java:111
+#: Preferences.java:115
!Spanish=
-#: Base.java:537
+#: Base.java:540
Sunshine=\u0938\u0942\u0930\u094d\u092f \u0915\u093f\u0930\u0928
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
!System\ Default=
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
!Tamil=
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='\u092c\u093e\u0907\u091f' \u0915\u0940\u0935\u0930\u094d\u0921 \u0905\u092c \u0938\u092e\u0930\u094d\u0925\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u0948
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0939\u094b \u0917\u092f\u093e \u0939\u0948
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0938\u0930\u094d\u0935\u0930 \u0935\u0930\u094d\u0917 \u0915\u093e \u092a\u0941\u0928\u0903 \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f\u0938\u0930\u094d\u0935\u0930 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0939\u0948
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u092f\u0942\u0921\u0940\u092a\u0940 \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u092f\u0942\u0921\u0940\u092a\u0940 \u0939\u094b \u0917\u092f\u093e \u0939\u0948
-#: Base.java:185
+#: Base.java:192
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u0924\u094d\u0930\u0941\u091f\u093f \u0938\u0902\u0926\u0947\u0936 \u0907\u0938 \u092a\u094d\u0930\u0915\u093e\u0930 \u0939\u0948, \u0932\u0947\u0915\u093f\u0928 \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0920\u0940\u0915 \u091a\u0932\u093e\u0928\u093e \u091a\u093e\u0939\u093f\u090f
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u092f\u0939 \u092b\u093e\u0907\u0932 "{0}" \u0915\u094b \n\u0907\u0938 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e "{1}" \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0939\u094b\u0928\u093e \u091a\u093e\u0939\u093f\u090f .\n\u0907\u0938 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0915\u094b \u092c\u0928\u093e\u0908\u092f\u0947 , \u092b\u093e\u0907\u0932 \u0915\u094b \u0909\u0938\u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0921\u093e\u0932\u093f\u090f , \u0914\u0930 \u092b\u093f\u0930\u0930 \u0906\u0917\u0947 \u092c\u0922\u093f\u090f ?
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u0932\u0948\u092c\u094d\u0930\u0930\u0940 \u0915\u094b "{0}" \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u0924\u093e \u0939\u0948\n\u0932\u0948\u092c\u094d\u0930\u0930\u0940 \u0915\u0947 \u0928\u093e\u092e \u092e\u0947 \u0915\u0947\u0935\u0932 \u092e\u0942\u0932 \u0905\u0915\u094d\u0937\u0930 \u0914\u0930 \u0938\u0902\u0916\u094d\u092f\u093e\u090f\u0901 \u0936\u093e\u092e\u093f\u0932 \u0939\u094b\u0928\u093e \u091a\u093e\u0939\u093f\u090f |\n(\u0915\u0947\u0935\u0932 \u0906\u0938\u094d\u0915\u0940 \u0914\u0930 \u0930\u093f\u0915\u094d\u0924 \u0938\u094d\u0925\u093e\u0928 \u0928\u0939\u0940\u0902, \u0914\u0930 \u092f\u0939 \u090f\u0915 \u0938\u0902\u0916\u094d\u092f\u093e \u0915\u0947 \u0938\u093e\u0925 \u0936\u0941\u0930\u0942 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947)
-#: Sketch.java:378
+#: Sketch.java:374
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u092e\u0941\u0916\u094d\u092f \u092b\u093e\u0907\u0932 \u0915\u094b \u090f\u0915\u094d\u0937\u094d\u0924\u0947\u0928\u094d\u0938\u093f\u0913\u0928 \u0928\u0939\u0940\u0902 \u0926\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u0924\u093e \n(It may be time for your to graduate to a\n"real" programming environment)
-#: Sketch.java:360
+#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=\u0935\u093f\u0930\u093e\u092e \u0938\u0947 \u0928\u093e\u092e \u0928\u0939\u0940\u0902 \u0936\u0941\u0930\u0942 \u0939\u094b \u0938\u0915\u0924\u093e
-#: Base.java:1096
+#: Base.java:1412
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u091a\u092f\u0928\u093f\u0924 \u0938\u094d\u0915\u0947\u091a \u0905\u092c \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948|\n\u0906\u092a\u0915\u094b \u0938\u094d\u0915\u0947\u091a\u092c\u0941\u0915 \u092e\u0947\u0928\u0942 \u0915\u094b \u0905\u092a\u0921\u0947\u091f \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092a\u0941\u0928\u0903 \u0906\u0930\u092e\u094d\u092d \u0915\u0930\u0928\u0947 \u0915\u0940 \u0906\u0935\u0936\u094d\u092f\u0915\u0924\u093e \u0939\u0948
-#: Base.java:1125
+#: Base.java:1430
#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\u0938\u094d\u0915\u0947\u091a \u0915\u093e "{0}" \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947|\n\u0938\u094d\u0915\u0947\u091a \u0928\u093e\u092e\u094b\u0902 \u092e\u0947\u0902 \u0915\u0947\u0935\u0932 \u092e\u0942\u0932 \u0905\u0915\u094d\u0937\u0930\u094b\u0902 \u0914\u0930 \u0938\u0902\u0916\u094d\u092f\u093e\u0913\u0902 \u0915\u094b \u0936\u093e\u092e\u093f\u0932 \u0939\u094b\u0928\u093e \u091a\u093e\u0939\u093f\u090f\n(\u0915\u094b\u0908 \u0938\u094d\u092a\u0947\u0938 \u0915\u0947 \u092c\u093f\u0928\u093e \u0915\u0947\u0935\u0932 ASCII, \u0914\u0930 \u092f\u0939 \u090f\u0915 \u0938\u0902\u0916\u094d\u092f\u093e \u0915\u0947 \u0938\u093e\u0925 \u0936\u0941\u0930\u0942 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947)\n\u0907\u0938 \u0938\u0902\u0926\u0947\u0936 \u0938\u0947 \u091b\u0941\u091f\u0915\u093e\u0930\u093e \u092a\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0938\u094d\u0915\u0947\u091a \u0915\u094b {1} \u0938\u0947 \u0939\u091f\u093e\u092f\u0947\u0902\n
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\u0938\u094d\u0915\u0947\u091a \u0915\u093e "{0}" \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947|\n\u0938\u094d\u0915\u0947\u091a \u0928\u093e\u092e\u094b\u0902 \u092e\u0947\u0902 \u0915\u0947\u0935\u0932 \u092e\u0942\u0932 \u0905\u0915\u094d\u0937\u0930\u094b\u0902 \u0914\u0930 \u0938\u0902\u0916\u094d\u092f\u093e\u0913\u0902 \u0915\u094b \u0936\u093e\u092e\u093f\u0932 \u0939\u094b\u0928\u093e \u091a\u093e\u0939\u093f\u090f\n(\u0915\u094b\u0908 \u0938\u094d\u092a\u0947\u0938 \u0915\u0947 \u092c\u093f\u0928\u093e \u0915\u0947\u0935\u0932 ASCII, \u0914\u0930 \u092f\u0939 \u090f\u0915 \u0938\u0902\u0916\u094d\u092f\u093e \u0915\u0947 \u0938\u093e\u0925 \u0936\u0941\u0930\u0942 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947)\n\u0907\u0938 \u0938\u0902\u0926\u0947\u0936 \u0938\u0947 \u091b\u0941\u091f\u0915\u093e\u0930\u093e \u092a\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0938\u094d\u0915\u0947\u091a \u0915\u094b {1} \u0938\u0947 \u0939\u091f\u093e\u092f\u0947\u0902\n{1}
-#: Sketch.java:1797
+#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0916\u094b \u0917\u092f\u0940 \u0939\u0948 \n\u092a\u0930 \u092b\u093f\u0930 \u092d\u0940 \u0909\u0938\u0940 \u091c\u0917\u0939 \u092a\u0947 \u0938\u0947\u0935 \u0915\u0930\u0928\u0947 \u0915\u0940 \u0915\u094b\u0936\u093f\u0936 \u0939\u094b\u0917\u0940 \u0905\u0928\u094d\u092f\u0925\u093e \u0915\u094b\u0921 \u0916\u094b \u091c\u093e\u092f\u0917\u093e
-#: Sketch.java:2060
+#: Sketch.java:2018
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932\u0928\u093e \u0939\u094b\u0917\u093e ,\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u0947 \u0928\u093e\u092e \u092e\u0947\u0902 \n\u0938\u093f\u0930\u094d\u092b \u0905\u0915\u094d\u0937\u0930 \u0914\u0930 \u0905\u0902\u0915\u094b\u0902 \u0915\u093e \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 \n\u0914\u0930 \u092f\u0939 \u092d\u0940 \u0927\u094d\u092f\u093e\u0928 \u0930\u0916\u0947\u0902 \u0915\u0940 64 \u0905\u0915\u094d\u0937\u0930 \u0938\u0947 \u091c\u094d\u092f\u093e\u0926\u093e \u0928\u093e \u0939\u094b
-#: Base.java:258
+#: Base.java:259
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0905\u092c \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948| \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0921\u093f\u092b\u093c\u0949\u0932\u094d\u091f \u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u0938\u094d\u0925\u093e\u0928 \u092a\u0930 \u0938\u094d\u0935\u093f\u091a \u091c\u093e\u090f\u0917\u093e, \u0914\u0930 \u092f\u0926\u093f \u0906\u0935\u0936\u094d\u092f\u0915 \u090f\u0915 \u0928\u092f\u093e \u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u092c\u0928\u093e\u090f\u0917\u093e| \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0924\u092c \u0924\u0940\u0938\u0930\u0947 \u0935\u094d\u092f\u0915\u094d\u0924\u093f \u092e\u0947\u0902 \u0916\u0941\u0926 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947\u0902 \u092c\u093e\u0924 \u0915\u0930\u0928\u093e \u092c\u0902\u0926 \u0915\u0930 \u0926\u0947\u0902\u0917\u0947.
-#: Sketch.java:1079
+#: Sketch.java:1075
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u092f\u0939 \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0939\u0940 \u0909\u0938 \u091c\u0917\u0939 \u092a\u0930 \u0939\u0948 \u091c\u093f\u0938 \u091c\u0917\u0939 \u092a\u0930 \u0906\u092a \u0907\u0938\u0947 \u0915\u0949\u092a\u0940 \u0915\u0930 \u0930\u0939\u0947 \u0939\u0948\u0902 \n\u0915\u0941\u091b \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e\u092f\u0917\u093e
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
+#: Base.java:535
Time\ for\ a\ Break=\u092c\u094d\u0930\u0947\u0915 \u0915\u093e \u0938\u092e\u092f
-#: Editor.java:656
+#: Editor.java:663
Tools=\u091f\u0942\u0932\u094d\u0938
-#: Editor.java:1057
+#: Editor.java:1070
Troubleshooting=\u0938\u092e\u0938\u094d\u092f\u093e \u0928\u093f\u0935\u093e\u0930\u0923
#: ../../../processing/app/Preferences.java:117
@@ -1010,7 +1066,7 @@ Troubleshooting=\u0938\u092e\u0938\u094d\u092f\u093e \u0928\u093f\u0935\u093e\u0
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1018,11 +1074,11 @@ Troubleshooting=\u0938\u092e\u0938\u094d\u092f\u093e \u0928\u093f\u0935\u093e\u0
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
Uncaught\ exception\ type\:\ {0}=\u0928\u0939\u0940\u0902 \u092a\u0915\u095c\u093e \u091c\u093e \u0938\u0915\u0928\u0947 \u0935\u093e\u0932\u093e \u0905\u092a\u0935\u093e\u0926\: {0}
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
Undo=\u0905\u0928\u094d\u0921\u0942
#: Platform.java:168
@@ -1031,52 +1087,55 @@ Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\
#: UpdateCheck.java:111
Update=\u0905\u0926\u094d\u092f\u0924\u0928
-#: Preferences.java:412
+#: Preferences.java:428
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092b\u093f\u0932\u094d\u0938 \u0915\u094b \u092a\u0941\u0930\u093e\u0928\u0947 \u090f\u0915\u094d\u0937\u094d\u0924\u0947\u0928\u094d\u0938\u093f\u0913\u0928 \u0938\u0947 \u0928\u090f \u092e\u0947\u0902 \u0905\u092a\u0921\u0947\u091f \u0915\u0940\u091c\u093f\u092f\u0947(.pde -> .ino)
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=\u0905\u092a\u0932\u094b\u0921
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
Upload\ Using\ Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u093e\u092e\u0930 \u0926\u094d\u0935\u093e\u0930\u093e \u0905\u092a\u0932\u094b\u0921 \u0915\u0930\u0947\u0901
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=\u0909\u092a\u0932\u094b\u0921 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
+#: Editor.java:2378
Uploading\ to\ I/O\ Board...=\u0907/\u0913 \u092c\u094b\u0930\u094d\u0921 \u092a\u0930 \u0909\u092a\u0932\u094b\u0921 \u0939\u094b \u0930\u0939\u093e \u0939\u0948.....
-#: Sketch.java:1661
+#: Sketch.java:1622
Uploading...=\u0905\u092a\u0932\u094b\u0921 \u0939\u094b \u0930\u0939\u093e \u0939\u0948 .....
-#: Editor.java:1255
+#: Editor.java:1269
Use\ Selection\ For\ Find=\u0922\u0942\u0901\u0922\u0928\u0947 \u0915\u0947 \u0932\u093f\u092f\u0947 \u0938\u093f\u0932\u0947\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0940\u091c\u093f\u092f\u0947
-#: Preferences.java:393
+#: Preferences.java:409
Use\ external\ editor=\u092c\u093e\u0939\u0930\u0940 \u090f\u0921\u093f\u091f\u0930 \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0930\u0947\u0902
#: EditorToolbar.java:41 EditorToolbar.java:46
Verify=\u091c\u093e\u0902\u091a \u0915\u0930\u0947\u0902
-#: Editor.java:602
+#: Editor.java:609
Verify\ /\ Compile=\u0935\u0947\u0930\u093f\u092b\u093e\u092f/\u0915\u092e\u094d\u092a\u093e\u0907\u0932
-#: Preferences.java:384
+#: Preferences.java:400
!Verify\ code\ after\ upload=
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
Visit\ Arduino.cc=Arduino.cc \u0926\u0947\u0916\u093f\u092f\u0947
-#: Base.java:1842
+#: Base.java:2128
Warning=\u091a\u0947\u0924\u093e\u0935\u0928\u0940
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.read() \u0939\u094b \u0917\u092f\u093e \u0939\u0948
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.write() \u0939\u094b \u0917\u092f\u093e \u0939\u0948
#: FindReplace.java:105
@@ -1085,40 +1144,40 @@ Wrap\ Around=\u0906\u0938\u092a\u093e\u0938 \u0932\u092a\u0947\u091f\u0947\u0902
#: debug/Uploader.java:213
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0917\u0932\u0924 \u092e\u093e\u0907\u0915\u094d\u0930\u094b\u0915\u0902\u091f\u094d\u0930\u094b\u0932\u0930 \u092e\u093f\u0932\u093e| \u0915\u094d\u092f\u093e \u0906\u092a\u0928\u0947 \u091f\u0942\u0932\u094d\u0938 >\u092c\u094b\u0930\u094d\u0921 \u092e\u0947\u0928\u0942 \u0938\u0947 \u0938\u0939\u0940 \u092c\u094b\u0930\u094d\u0921 \u091a\u0941\u0928\u093e \u0939\u0948?
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=\u0939\u093e\u0901
-#: Sketch.java:1078
+#: Sketch.java:1074
You\ can't\ fool\ me=\u0906\u092a \u092e\u0941\u091d\u0947 \u092c\u0947\u0935\u0958\u0942\u095e \u0928\u0939\u0940\u0902 \u092c\u0928\u093e \u0938\u0915\u0924\u0947
-#: Sketch.java:415
+#: Sketch.java:411
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0914\u0930 .cpp \u092b\u093e\u0907\u0932 \u0915\u093e \u0928\u093e\u092e \u090f\u0915 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0924\u093e
-#: Sketch.java:425
+#: Sketch.java:421
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932 \u0915\u0947 "{0}" \u0928\u0939\u0940\u0902 \u0930\u0916\u093e \u091c\u093e \u0938\u0915\u0924\u093e \n\u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 .cpp \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0938\u0947 hai
-#: Sketch.java:865
+#: Sketch.java:861
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0906\u092a \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b {\u0966} \u0915\u0940 \u0924\u0930\u0939 \u0928\u0939\u0940\u0902 \u0938\u0947\u0935 \u0915\u0930 \u0938\u0915\u0924\u0947\n\u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 .cpp \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0939\u0940 \u0935\u0939\u093e\u0902 \u0939\u0948
-#: Sketch.java:887
+#: Sketch.java:883
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0906\u092a \u090f\u0915 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u0940 \u092a\u0941\u0938\u093f\u0924\u0915\u093e \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0939\u0940 \u0909\u0938 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947 \n\u092f\u0939 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0924\u093e ,\u0907\u0938\u0915\u093e \u0915\u094b\u0908 \u0905\u0902\u0924 \u0928\u0939\u0940\u0902
-#: Base.java:1602
+#: Base.java:1888
You\ forgot\ your\ sketchbook=\u0906\u092a \u0905\u092a\u0928\u0940 \u0938\u094d\u0915\u0947\u091a\u092c\u0941\u0915 \u092d\u0942\u0932 \u0917\u090f
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
+#: Base.java:536
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0906\u092a \u0906\u091c \u0915\u0947 \u0926\u093f\u0928 \u0915\u0947 \u0928\u090f \u0938\u094d\u0915\u0947\u091a \u0915\u0947 \u0938\u094d\u0935\u0924\: \u0928\u093e\u092e\u0915\u0930\u0923 \u0915\u0940 \u0938\u0940\u092e\u093e \u0924\u0915 \u092a\u0939\u0941\u0901\u091a \u0917\u090f \u0939\u0948\u0902\n\u0907\u0938\u0915\u0947 \u092c\u091c\u093e\u092f \u091f\u0939\u0932\u0928\u0947 \u091c\u093e\u0928\u0947 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947 \u0915\u094d\u092f\u093e \u0916\u092f\u093e\u0932 \u0939\u0948?
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
!ZIP\ files\ or\ folders=
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \u090f\u0915 \u0935\u0948\u0927 \u090f\u0915\u094d\u0937\u094d\u0924\u0947\u0928\u094d\u0938\u093f\u0913\u0928 \u0928\u0939\u0940\u0902 \u0939\u0948
@@ -1126,47 +1185,46 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day
#, java-format
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\u0905\u092a\u0930\u093f\u091a\u093f\u0924 \u0905\u0915\u094d\u0937\u0930 ,\u0905\u0917\u0930 \u0915\u094b\u0921 \u092a\u094d\u0930\u094b\u0938\u0938\u094d\u0938\u093f\u0902\u0917 \u0915\u0947 \u092a\u0941\u0930\u093e\u0928\u0947 \u0938\u0902\u0915\u0930\u0923 \u092e\u0947\u0902 \u0932\u093f\u0916\u093e \u0917\u092f\u093e \u0939\u0948 \u0906\u092a\u0915\u094b \u091f\u0942\u0932\u094d\u0938 \u0916\u094b\u0932\u0928\u093e \u092a\u095c\u0947\u0917\u093e \u0909\u0938\u092e\u0947 -> \u092b\u093f\u0915\u094d\u0938 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u0914\u0930 \u0930\u0940\u0932\u094b\u0921 \u0915\u0940\u091c\u093f\u092f\u0947 \u0924\u093e\u0915\u093f UTF-8 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0939\u094b \u0938\u0915\u0947 \u0905\u0917\u0930 \u092f\u0947 \u0938\u092c \u0928\u0939\u0940\u0902 \u0915\u0930\u0928\u093e \u0924\u094b \u0906\u092a\u0915\u094b \u0935\u094b \u0905\u0915\u094d\u0937\u0930 \u092e\u093f\u091f\u093e\u0928\u0947 \u0939\u094b\u0902\u0917\u0947 \u0924\u093e\u0915\u093f \u092f\u0939 \u091a\u0947\u0924\u093e\u0935\u0928\u0940 \u0928\u093e \u0906\u092f\u0947
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0909\u0928\u094d\u0928\u0940\u0938 \u0924\u0915, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u090f\u0938 \u092a\u0940 \u0906\u0908 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u092a\u0930 \u0928\u093f\u0930\u094d\u092d\u0930 \u0915\u0930\u0924\u0940 \u0939\u0948\u0906\u092a \u092f\u0939 \u0905\u0925\u0935\u093e \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0924\u0947 \u0939\u0941\u090f \u0926\u093f\u0916\u093e\u0908 \u0926\u0947 \u0930\u0939\u0947 \u0939\u0948\u0902 \u091c\u094b \u090f\u0938 \u092a\u0940 \u0906\u0908 \u092a\u0930 \u0928\u093f\u0930\u094d\u092d\u0930 \u0915\u0930\u0924\u0940 \u0939\u0948 \n
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\u0915\u0943\u092a\u092f\u093e Serial.write() \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0947\u0902
+#: debug/Compiler.java:415
+\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u0915\u0943\u092a\u092f\u093e Serial.write() \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0947\u0902\n
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0915\u0940 \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0939\u094b \u0917\u092f\u093e \u0939\u0948
+#: debug/Compiler.java:427
+\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0915\u0940 \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0939\u094b \u0917\u092f\u093e \u0939\u0948\n
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u090f\u0915 \u0924\u0915, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u092e\u0947 \u0938\u0930\u094d\u0935\u0930 \u0935\u0930\u094d\u0917 \u0915\u093e \u092a\u0941\u0928\u0903 \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f\u0938\u0930\u094d\u0935\u0930 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0939\u0948
+#: debug/Compiler.java:421
+\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u090f\u0915 \u0924\u0915, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u092e\u0947 \u0938\u0930\u094d\u0935\u0930 \u0935\u0930\u094d\u0917 \u0915\u093e \u092a\u0941\u0928\u0903 \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f\u0938\u0930\u094d\u0935\u0930 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0939\u0948\n
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, Wire.receive() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.read() \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940\u091c\u093c \u0915\u0947 \u0938\u093e\u0925 \u0938\u094d\u0925\u093f\u0930\u0924\u093e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0925\u093e
+#: debug/Compiler.java:445
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, Wire.receive() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.read() \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940\u091c\u093c \u0915\u0947 \u0938\u093e\u0925 \u0938\u094d\u0925\u093f\u0930\u0924\u093e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0925\u093e\n
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, Wire.send() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.write() \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940\u091c\u093c \u0915\u0947 \u0938\u093e\u0925 \u0938\u094d\u0925\u093f\u0930\u0924\u093e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0925\u093e
+#: debug/Compiler.java:439
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, Wire.send() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.write() \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940\u091c\u093c \u0915\u0947 \u0938\u093e\u0925 \u0938\u094d\u0925\u093f\u0930\u0924\u093e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0925\u093e\n
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
!baud=
-#: Preferences.java:373
+#: Preferences.java:389
compilation\ =\u0938\u0902\u0915\u0932\u0928
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
+#: Sketch.java:540
createNewFile()\ returned\ false=createNewFile() \u0917\u0932\u0924 \u0930\u093f\u091f\u0930\u094d\u0928
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
+#: Base.java:2090
environment=\u0935\u093e\u0924\u093e\u0935\u0930\u0923
-#: Editor.java:1094
+#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
@@ -1178,54 +1236,51 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
!http\://www.arduino.cc/latest.txt=
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=\u0905\u0935\u0948\u0927 \u092b\u0949\u0923\u094d\u091f \u0906\u0915\u093e\u0930 \u0915\u094b \u0928\u091c\u093c\u0930\u0902\u0926\u093e\u091c\u093c \u0915\u0930\u0947\u0902
+ignoring\ invalid\ font\ size\ {0}=\u0905\u0935\u0948\u0927 \u092b\u0949\u0923\u094d\u091f \u0906\u0915\u093e\u0930 \u0915\u094b \u0928\u091c\u093c\u0930\u0902\u0926\u093e\u091c\u093c \u0915\u0930\u0947\u0902 {0}
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
name\ is\ null=\u0928\u093e\u092e \u092e\u0947 \u0915\u0941\u091b \u0928\u0939\u0940 \u0939\u0948
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte \u092c\u0941\u092b\u094d\u092b\u0947\u0930 \u0915\u093e\u092b\u0940 \u091b\u094b\u091f\u093e \u0939\u0948 \u0915\u0940 \u092f\u0939 {0} bytes \u0906 \u091c\u093e\u092f\u0947\u0902 \u0914\u0930 including char {1}
-#: Sketch.java:651
+#: Sketch.java:647
removeCode\:\ internal\ error..\ could\ not\ find\ code=\u0915\u094b\u0921 \u0939\u091f\u093e\u092f\u0947\u0902 \: \u0905\u0902\u0926\u0930\u0942\u0928\u0940 \u0924\u094d\u0930\u0941\u091f\u0940.....\u0915\u094b\u0921 \u0916\u094b\u091c\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e
-#: Editor.java:923
+#: Editor.java:932
serialMenu\ is\ null=\u0938\u0940\u0930\u093f\u092f\u0932\u092e\u0947\u0928\u0942 \u092e\u0947 \u0915\u0941\u091b \u0928\u0939\u0940 \u0939\u0948
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u091a\u0941\u0928\u093e \u0917\u092f\u093e \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f {0} \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948 \u092f\u093e \u092c\u094b\u0930\u094d\u0921 \u0928\u0939\u0940\u0902 \u091c\u0941\u0921\u093c\u093e \u0939\u0941\u0906 \u0939\u0948
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
+#: Preferences.java:391
upload=\u0909\u092a\u0932\u094b\u0921
-#: Editor.java:373
+#: Editor.java:380
#, java-format
{0}\ files\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 {0} \u092b\u093e\u0907\u0932\u094d\u0938 \u091c\u094b\u095c\u0940 \u0917\u0908\u0901
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
{0}\ returned\ {1}={0} \u0932\u094c\u091f\u093e\u092f\u093e {1}
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
{0}\ |\ Arduino\ {1}={0} | \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b {1}
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_hr_HR.po b/app/src/processing/app/i18n/Resources_hr_HR.po
index b026473d5..e6ce08891 100644
--- a/app/src/processing/app/i18n/Resources_hr_HR.po
+++ b/app/src/processing/app/i18n/Resources_hr_HR.po
@@ -9,8 +9,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: 2012-12-02 20:16+0000\n"
-"Last-Translator: dpenezic Closing the last open sketch will quit Arduino."
-msgstr ""
-" Az utolsó Sketch bezárásával az Arduino kilép."
+msgstr " Az utolsó Sketch bezárásával az Arduino kilép."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr ""
-" Mentés nékül a változtatások elvesznek."
+msgstr ""
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "A \"{0}\" file már létezik a \"{1}\" mappában!"
+msgstr "A \"{0}\" file már létezik a \"{1}\" mappában!"
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr "A {0} mappa már létezik. Sketch nem nyitható meg."
+msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -76,74 +71,64 @@ msgstr ""
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr ""
-"Új kiadás jelent meg Arduino-ból,\n"
-"megmutassam a letöltési oldalt?"
+msgstr ""
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr ""
-"Hiba lépett fel, miközben a megnyitott file\n"
-"a konzolt használta volna."
-
-#: Editor.java:1102
-msgid "About Arduino"
-msgstr "Arduino névjegye"
-
-#: Editor.java:643
-msgid "Add File..."
-msgstr "File hozzáadása..."
-
-#: ../../../processing/app/Base.java:1102
-msgid "Add Library..."
msgstr ""
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr ""
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Függvénykönyvtár hozzáadása..."
+
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"Hiba lépett fel a file fixálása/javítása során.\n"
-"Nem javasolt a felülírásos mentés.\n"
-"A Sketch újra-megnyitása talán megoldja a problémát.\n"
+msgstr ""
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "Rendszerfüggő kód betöltése során\n "
-"hiba lépett fel (A hiba az Ön gépében van.)"
+msgstr "Rendszerfüggő kód betöltése során\\n hiba lépett fel. A hiba az Ön gépében van."
-#: Preferences.java:84
+#: Preferences.java:85
msgid "Arabic"
msgstr ""
-#: Preferences.java:85
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Sketch archiválás"
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Sketch archiválása, mint:"
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Sketch archiválás megszakítva."
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"A Sketch archiválása megszakadt, mivel\n"
-"a Sketch pontos mentése nem volt lehetséges."
+msgstr ""
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -153,129 +138,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"Arduino nem futtatható, mert nem hozható létre\n"
-"a felhasználói beállítások mappája."
+msgstr "Arduino nem futtatható, mert nem hozható létre\\na felhasználói beállítások mappája."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
-"Arduino nem futtatható, mert nem hozható létre\n"
-"a felhasználói Sketch mentések mappája."
+msgstr "Arduino nem futtatható, mert nem hozható létre\\na felhasználói Sketch mentések mappája."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr "Az Arduino futtatásához teljes telepítésű JDK (Java Fejlesztői Környezet)"
-"szükséges, nem elegendő csak a JRE (Java futtatókörnyezet)"
-"A JDK 1.5 vagy újabb szofver telepítése szükséges"
-"Bővebb információ a Referenciák közt található."
+msgstr "Az Arduino futtatásához teljes telepítésű JDK (Java Fejlesztői Környezet) /nszükséges, nem elegendő csak a JRE (Java futtatókörnyezet)./nA JDK 1.5 vagy újabb szofver telepítése szükséges./nBővebb információ a Referenciák közt található."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "A(z) \"{0}\" állomány tényleg törlésre kerüljön?"
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Tényleg törölni kell a Sketch-et? Biztosan?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Autoformázás"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr "Autoformázás megszakítva: túl sok nyitó kapcsos-zárójel."
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr "Autoformázás megszakítva: túl sok a nyitó zárójel."
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr "Autoformázás megszakítva: túl sok záró kapcsos-zárójel."
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr "Autoformázás megszakítva: túl sok a záró zárójel."
+msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "Autoformázás befejeződött."
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Automatikus kiterjesztés-hozzárendelés: .ino->Arduino"
+msgstr "Automatikus kiterjesztés-hozzárendelés: .ino->Arduino"
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Autogörgetés"
-
-#: Editor.java:2572
-#, java-format
-msgid "Bad error line: {0}"
-msgstr "Hibás sor: {0}"
-
-#: Editor.java:2089
-msgid "Bad file selected"
-msgstr "Hibás file lett kiválasztva"
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
msgstr ""
-#: Editor.java:682
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Alappanel"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "Soremelés és Kocsi-vissza"
+msgstr "Soremelés és kocsivissza"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Tallóz"
+msgstr ""
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "A fordítási mappa elérhetetlen vagy írásvédett."
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "Bootloader beégetése"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Bootloader égetése (néhány percet vesz igénybe)..."
+msgstr ""
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -285,103 +279,119 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
-msgstr "Mégse"
+msgstr ""
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr "Átnevezési hiba"
+msgstr ""
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Kocsi-vissza"
-
-#: Preferences.java:86
-msgid "Catalan"
-msgstr "Katalán"
-
-#: Preferences.java:403
-msgid "Check for updates on startup"
-msgstr "Újabb verzió ellenőrzése indításkor"
+msgstr "Soremelés"
#: Preferences.java:87
-msgid "Chinese Simplified"
-msgstr "Egyszerüsített kínai"
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr "Újabb verzió ellenőrzése indításkor"
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
-msgstr "Kilépés"
+msgstr ""
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "Megjegyzés/Mégsem"
+msgstr ""
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Fordítási hiba, ezt a kódot kérem küldje el a {0} címre"
+msgstr "Fordítási hiba, ezt a kódot kérem küldje el a {0} címre"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Sketch fordítása..."
+msgstr ""
#: EditorConsole.java:152
msgid "Console Error"
-msgstr "Konzol hiba"
+msgstr ""
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
-msgstr "Másolás"
+msgstr ""
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "Másolás HTML-ként"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Másolás a Fórumhoz"
+msgstr ""
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "A {0} nem adható hozzá a Sketch-hez."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "Nem másolható a megfelelő helyre."
+msgstr "Nem másolható a megfelelő helyre."
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "Sketch mappája nem hozható létre."
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr "Sketch nem hozható létre."
+msgstr "Sketch nem hozható létre."
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Nem törölhető file: \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Nem törölhető a meglevő {0} file."
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "Nem törölhető: {0}"
+msgstr "Nem törölhető: {0}"
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -398,97 +408,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
-"Nem nyitható meg az URL:\n"
-"{0}"
+msgstr "Nem nyitható meg az URL:\\n{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"Nem nyitható meg a mappa:\n"
-"{0}"
+msgstr "Nem nyitható meg a mappa:\\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
-"Tökéletesen nem lehetséges a Sketch újramentése. A megoldás jelen helyzetben, hogy\n"
-"a szerkesztőből a kódot kimásolja egy másik szerkesztőprogramba."
+msgstr ""
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "Nem lehetséges a Sketch újramentése"
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr ""
-"Nem olvasható a színséma,\n"
-"a Processing újratelepítésére van szükség."
+msgstr ""
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
-"Az alapértelezett beállítások nem olvashatóak\n"
-"Az Arduino újratelepítése szükséges."
+msgstr "Az alapértelezett beállítások nem olvashatóak\\nAz Arduino újratelepítése szükséges."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "A beállítások nem olvashatóak: {0}"
+msgstr "A beállítások nem olvashatóak: {0}"
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "Nem törölhető a {0} régi verziója"
+msgstr "Nem törölhető a {0} régi verziója"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "Nem nevezhető át: \"{0}\" -> \"{1}\""
+msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "A Sketch nem nevezhető át: (0)."
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Nem nevezhető át a Sketch: (1)"
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Nem nevezhető át a Sketch: (2)."
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr "Nem cserélhető: {0}"
+msgstr "Nem cserélhető: {0}"
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Sketch nem archiválható"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Nem meghatározható a {0} program mérete"
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "Nem tudom megtenni"
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -499,108 +499,114 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
-msgstr "Kivágás"
+msgstr ""
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
-msgstr "Dán"
+msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Behúzás csökkentése"
+msgstr ""
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr "Törlés"
+msgstr "Törlés"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr ""
-"Eszköz nem válaszol: talán hibás port lett kiválasztva, vagy a panel"
-"újraindítása szükséges exportálás előtt"
+msgstr "Eszköz nem válaszol: talán hibás port lett kiválasztva, vagy a panel újraindítása szükséges exportálás előtt"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Módosítások elvetése és Sketch újratöltése?"
+msgstr ""
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "Nincs mentés"
+msgstr ""
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
-msgstr "Mentés kész."
+msgstr "Mentés kész."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "Bootloader égetés kész."
+msgstr ""
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
-msgstr "Fordítás kész."
+msgstr ""
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
-msgstr "Nyomtatás kész."
+msgstr ""
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
-msgstr "Feltöltés kész."
-
-#: Preferences.java:90
-msgid "Dutch"
-msgstr "Holland"
-
-#: Editor.java:1116
-msgid "Edit"
-msgstr "Szerkesztés"
-
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr "Szerkesztő betűméret:"
-
-#: Preferences.java:337
-msgid "Editor language: "
msgstr ""
#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr "Szerkesztő betűméret:"
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr "Szerkesztő nyelve:"
+
+#: Preferences.java:92
msgid "English"
-msgstr "Angol"
+msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
-msgstr "Környezet"
+msgstr ""
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
-msgstr "Hiba"
+msgstr "Hiba"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr "File hozzáadási hiba"
+msgstr ""
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Hiba a fordítás során."
+msgstr "Hiba a fordítás során."
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "Hiba az Arduino data könyvtár elérésekor."
+msgstr "Hiba az Arduino data könyvtár elérésekor."
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "Hiba a Serial.{0}()-ban"
+msgstr ""
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
@@ -613,36 +619,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr "Hiba a {0} soros port megnyitása során."
+msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
-msgstr "Alapbeállítások olvasása közben hiba lépett fel"
+msgstr "Alapbeállítások olvasása közben hiba lépett fel"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"Hiba a beállítások olvasása során. Kérem törölje (vagy mozgassa el) a\n"
-"{0} file-t és indítsa újra az Arduino-t!"
+msgstr "Hiba a beállítások olvasása során. Kérem törölje (vagy mozgassa el) a\\n{0} file-t és indítsa újra az Arduino-t!"
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
-msgstr ""
+msgstr "Hiba a \"{0}\" port hozzáférés során."
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Hiba lépett fel a bootloader égetésekor."
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -651,167 +655,185 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Hiba a kód betöltése közben: {0}"
+msgstr ""
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "Hiba a nyomtatás során."
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
-msgstr "Minták"
+msgstr ""
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Exportálás megszakítva. Először menteni kell!"
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
-msgstr "FAQ.html"
+msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
-msgstr "File"
+msgstr ""
#: Preferences.java:94
msgid "Filipino"
-msgstr "Fülöp-szigetek"
+msgstr ""
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
-msgstr "Keres"
+msgstr ""
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Következő keresése"
+msgstr ""
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Előző keresése"
+msgstr ""
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Keresés a Referenciák közt"
+msgstr ""
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Keresés..."
+msgstr ""
#: FindReplace.java:80
msgid "Find:"
-msgstr "Keresés:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr "Betöltéskor autoformázás"
+msgstr ""
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
-msgstr ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr "A függvénykönyvtárak telepítéséhez nézd meg:/nhttp://arduino.cc/en/Guide/Libraries\\n"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
-msgstr ""
-
-#: Preferences.java:93
-msgid "French"
-msgstr "Francia"
-
-#: Editor.java:1083
-msgid "Frequently Asked Questions"
-msgstr "Gyakran Ismételt Kérdések"
+msgstr "1200 bps sebességbeállítás mellett kényszerített reset kerül a portra"
#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
msgid "Galician"
-msgstr "Gall"
+msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
-msgid "German"
-msgstr "Német"
-
-#: Editor.java:1041
-msgid "Getting Started"
-msgstr "Első lépések"
-
#: Preferences.java:97
+msgid "German"
+msgstr ""
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
-msgstr "Görög"
+msgstr ""
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
-msgstr "Guide_Environment.html"
+msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
-msgstr "Guide_MacOSX.html"
+msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
-msgstr "Guide_Troubleshooting.html"
+msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
-msgstr "Guide_Windows.html"
+msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
-msgstr "Súgó"
+msgstr ""
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"A Sketch csak mentés után\n"
-"nevezhető át!"
+msgstr "A Sketch csak mentés után\\nnevezhető át!"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "Nono!"
+msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
-msgstr "Magyar"
+msgstr ""
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr "Kisbetű-nagybetű független"
+msgstr ""
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Hibás könyvtárnév kihagyása"
+msgstr "Hibás könyvtárnév kihagyása"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
-msgstr "Hibás Sketch név kihagyása"
+msgstr "Hibás Sketch név kihagyása"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Függvény importálás..."
+msgstr ""
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -824,11 +846,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Behúzás növelése"
+msgstr ""
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -837,141 +859,136 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
-msgid "Italian"
-msgstr "Olasz"
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr "Japán"
-
#: Preferences.java:102
-msgid "Korean"
+msgid "Italian"
msgstr ""
#: Preferences.java:103
-msgid "Latvian"
-msgstr "Lett"
+msgid "Japanese"
+msgstr "Japán"
-#: ../../../processing/app/Base.java:2903
+#: Preferences.java:104
+msgid "Korean"
+msgstr "Koreai"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "Lett"
+
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
msgstr ""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
-msgstr ""
+msgstr "Litván"
#: ../../../processing/app/Sketch.java:1660
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
-msgstr "Üzenet"
+msgstr "Üzenet"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Hiányzik a megjegyzést záró */ jel"
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr "További számos beállítás elérhető a file közvetlen szerkesztésével"
+msgstr "További számos beállítás elérhető a file közvetlen szerkesztésével"
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
-msgstr "Átmozgatás"
+msgstr ""
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Új file neve:"
+msgstr "Új file neve:"
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
-msgstr "Új"
+msgstr ""
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Új szerkesztőablak"
+msgstr ""
#: EditorHeader.java:292
msgid "New Tab"
-msgstr "Új fül"
+msgstr "Új fül"
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Soremelés"
+msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr "Következő fül"
+msgstr "Következő fül"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
-msgstr "Nem"
+msgstr ""
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Nincs alappanel kiválasztva. Választani az Eszközök > Alappanel menüből lehet."
+msgstr "Nincs alappanel kiválasztva. Választani az Eszközök > Alappanel menüből lehet."
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
-msgstr "Nem szükséges semmilyen változtatás autoformázáshoz."
+msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "Nem lett file hozzáadva a Sketch-hez."
+msgstr ""
#: Platform.java:167
msgid "No launcher available"
-msgstr "Nem indítható"
+msgstr ""
#: SerialMonitor.java:112
msgid "No line ending"
-msgstr "Nincs sorlezárás"
+msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "Hoppá, itt az idő levegőznöd egyet."
+msgstr "Hoppá, itt az idő levegőznöd egyet."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "Referencia nem található a {0} bejegyzéshez"
+msgstr ""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
-msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Nem-végzetes hiba a kinézet beállítása során (a program férfi géneket hordoz)."
-
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-msgid "Nope"
-msgstr "Dehogy, nem"
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
msgstr ""
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr "Nem-végzetes hiba a kinézet beállítása során - a program férfi géneket hordoz."
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr "Dehogy, nem"
+
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
@@ -982,106 +999,114 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr "OK"
+msgstr ""
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "Egy file a Sketch-hez hozzáadásra került."
+msgstr ""
#: EditorToolbar.java:41
msgid "Open"
-msgstr "Megnyitás"
+msgstr ""
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
-msgstr "URL megnyitása"
+msgstr ""
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Arduino Sketch megnyitása..."
+msgstr "Arduino Sketch megnyitása..."
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Megnyitás új ablakban"
+msgstr ""
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
-msgstr "Megnyit..."
+msgstr "Megnyit..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Oldalbeállítás"
+msgstr ""
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "Beillesztés"
-
-#: Preferences.java:105
-msgid "Persian"
-msgstr "Perzsa"
-
-#: debug/Compiler.java:465
-msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Az SPI függvények használatához a Sketch > Függvény import alatt az SPI-re van szüksége."
-
-#: Base.java:232
-msgid "Please install JDK 1.5 or later"
-msgstr "A futtatáshoz telepített Java 1.5 vagy újabb szoftverkörnyezet szükséges"
-
-#: Preferences.java:106
-msgid "Polish"
msgstr ""
+#: Preferences.java:109
+msgid "Persian"
+msgstr "Perzsa"
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr "Az SPI függvények használatához a Sketch > Függvény import alatt az SPI-re van szüksége."
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr "A futtatáshoz telepített Java 1.5 vagy újabb szoftverkörnyezet szükséges"
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr "Lengyel"
+
#: ../../../processing/app/Editor.java:718
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "Beállítások"
+msgstr "Beállítások"
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
-msgstr "Előző"
+msgstr ""
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Előző fül"
+msgstr "Előző fül"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "Nyomtatás"
+msgstr ""
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr "Nyomtatás megszakítva."
+msgstr ""
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Nyomtatás..."
+msgstr ""
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr "Hiba a mappa megnyitásakor"
+msgstr "Hiba a mappa megnyitásakor"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "Hiba az URL megnyitásakor"
+msgstr "Hiba az URL megnyitásakor"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "A keretrendszer konfigurálása során hiba lépett fel"
+msgstr "A keretrendszer konfigurálása során hiba lépett fel"
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1091,137 +1116,133 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "Probléma a könyvtár elérésekor"
+msgstr "Probléma a könyvtár elérésekor"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Hiba a {0} fordítási mappába mozgatása során"
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
-msgstr ""
-"Hiba a feltöltés során. A hiba elhárítása a "
-"http://www.arduino.cc/en/Guide/ oldalon a Troubleshooting#upload alatt került leírásra."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr "Hiba a feltöltés során. A hiba elhárítása a http://www.arduino.cc/en/Guide/ oldalon a Troubleshooting#upload alatt került leírásra."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Hiba az átnevezés során"
+msgstr "Hiba az átnevezés során"
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
-"Processing csak a saját állományát tudja megnyitni\n"
-"vagy az .ino vagy .pde kiterjesztésűeket"
+msgstr ""
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "Programozó"
+msgstr ""
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
-msgstr "Kilépés"
+msgstr "Kilépés"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Mégis"
+msgstr ""
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "Referencia"
+msgstr ""
#: EditorHeader.java:300
msgid "Rename"
-msgstr "Átnevezés"
+msgstr "Átnevezés"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
-msgstr "Cserél"
+msgstr ""
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr "Keres és cserél"
+msgstr ""
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "Mindent cserél"
+msgstr ""
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "A meglevő {0} cseréje?"
+msgstr ""
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Csere erre:"
+msgstr ""
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr "Román"
+msgstr "Román"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
-msgstr "Orosz"
+msgstr "Orosz"
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
-msgstr "Mentés"
+msgstr ""
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Mentés másként..."
+msgstr ""
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "Mentés megszakítva."
+msgstr "Mentés megszakítva."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "Exportálás előtt mentés?"
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Mentés a {0} állományba? "
+msgstr ""
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Sketch mentése, mint..."
+msgstr ""
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "Mentés..."
+msgstr "Mentés..."
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Válassz (vagy hozz létre) mappát a Sketch-eknek..."
+msgstr "Válassz (vagy hozz létre) mappát a Sketch-eknek..."
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Minden kijelölése"
+msgstr ""
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Kép vagy egyéb adat választása a Sketch-be másoláshoz"
+msgstr ""
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Válasszon új SketchBook mappát"
+msgstr "Válasszon új SketchBook mappát"
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1229,210 +1250,202 @@ msgstr ""
#: SerialMonitor.java:93
msgid "Send"
-msgstr "Küld"
+msgstr ""
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "Soros monitor"
+msgstr ""
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr ""
-"A {0} soros port használatban van. A programból való"
-"kilépés után próbálja újra."
+msgstr ""
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
-msgstr ""
+msgstr "A {0} soros port használatban van. A programból való kilépés után próbálja újra."
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr ""
-"A {0} soros port nem található. Választani az Eszközök > "
-"Soros port alatt lehetséges."
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"{0} soros port nem található.\n"
-"Másik soros porton megismételjük?"
+msgstr ""
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Kimenetek beállítása"
+msgstr "Kimenetek beállítása"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Sketch mappa mutatása"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Log mutatása:"
+msgstr "Log mutatása:"
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr "Sketch"
+msgstr ""
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "A Sketch elveszett"
+msgstr ""
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "Sketch nem megnyitható"
+msgstr "Sketch nem nyitható meg"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr "Sketch csak olvasható"
+msgstr "A Sketch írásvédett"
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "A Sketch most Névtelen (Untitled)"
+msgstr "A Sketch most Névtelen (Untitled)"
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "A Sketch csak olvasható"
+msgstr ""
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr "Túl nagy a Sketch: méret csökkentéséhez a http://www.arduino.cc/en/Guide/Troubleshooting#size oldalon találhatóak tippek."
+msgstr ""
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
-msgstr "SketchBook"
+msgstr ""
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "A SketchBook mappa elérhetetlen"
+msgstr "A SketchBook mappa elérhetetlen"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "SketchBook helye:"
+msgstr "SketchBook helye:"
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"Néhány file csak olvasható, így más helyre mentés után\n"
-"újra meg kell próbálni.\n"
-"\n"
+msgstr "Néhány file csak olvasható, így más helyre mentés után\\nújra meg kell próbálni."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
-"Néhány file csak olvasható, így el kell menteni a\n"
-"Sketch-et egy másik mappába."
+msgstr ""
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Hiba: Sketch (vagy mappa) már létezik \"{0}\" néven."
+msgstr ""
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
-msgstr "Spanyol"
+msgstr "Spanyol"
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr "Napfény"
+msgstr "Napfény"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
-msgstr ""
+msgstr "Tamil"
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr "A 'BYTE' kulcsszó nem támogatott."
+msgstr "A 'BYTE' kulcsszó nem támogatott."
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "A Client osztály új neve: EthernetClient"
+msgstr "A Client osztály új neve: EthernetClient"
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr "A Server függvényosztály EthernetServer névre hallgat."
+msgstr "A Server függvényosztály EthernetServer névre hallgat."
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "Az Udp osztály új neve: EthernetUdp."
+msgstr "Az Udp osztály új neve: EthernetUdp."
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "A hibaüzenetet követően az Arduino megfelelően működik."
+msgstr "A hibaüzenetet követően az Arduino megfelelően működik."
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
-"A \"{0}\" file-nak a(z) {1} mappán belül kell lennie.\n"
-"Mi legyen?\n"
-"Mappa létrehozása, file mozgatása és folytatás?"
+msgstr ""
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
-"A \"{0}\" könyvtár nem használható.\n"
-"A neve az angol abc betűit és számokat tartalmazhat\n"
-"(szóköz nem lehet benne és nem kezdődhet számmal)."
+msgstr "A \"{0}\" könyvtár nem használható.\\nA neve az angol abc betűit és számokat tartalmazhat\\n(szóköz nem lehet benne és nem kezdődhet számmal)."
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr ""
-"A fő-file nem tartalmazhat kiterjesztést.\n"
-"(Talán itt az idő, hogy megismerje a\n"
-"\"valódi\" programozási környezetet)"
+msgstr "A fő-file nem tartalmazhat kiterjesztést.\\n(Talán itt az idő, hogy megismerje a\\n\"valódi\" programozási környezetet)\""
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr "A név nem kezdődhet periódus-jellel."
+msgstr "A név nem kezdődhet periódus-jellel."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"A kiválasztott Sketch nem érhető el.\n"
-"A SketchBook menü frissítéséhez az Arduino\n"
-"újraindítása szükséges."
+msgstr "A kiválasztott Sketch nem érhető el.\\nA SketchBook menü frissítéséhez az Arduino\\nújraindítása szükséges."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1440,69 +1453,53 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-"A \"{0}\" Sketch nem használható.\n"
-"A Sketch neve csak angol abc betűit, számokat\n"
-"tartalmazhat, szóköz nélkül és az első betűje nem lehet szám.\n"
-"A hibás Sketch-et távolítsd el\n"
-"a(z) {1} mappából!"
+msgstr "A \"{0}\" Sketch nem használható.\\nA Sketch neve csak angol abc betűit, számokat\\ntartalmazhat, szóköz nélkül és az első betűje nem lehet szám.\\nA hibás Sketch-et távolítsd el\\na(z) {1} mappából!"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
-"A Sketch mappája elveszett.\n"
-"A Sketch újramentésre kerül,\n"
-"a kód egyes részei megsemmisülhettek."
+msgstr ""
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
-"A Sketch neve módosításra került. Az elnevezése csak\n"
-"ASCII betűket, számokat tartalmazhat (de nem kezdődhet számmal).\n"
-"Valamint a név hossza nem haladhatja meg a 64 karaktert."
+msgstr ""
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr "A SketchBook mappa nem érhető el.\n"
-"Az alapértelmezett hely lesz kiválasztva, és\n"
-"itt létrehozva a sketch mappa."
+msgstr "A SketchBook mappa nem érhető el.\\nAz alapértelmezett hely lesz kiválasztva, és\\nitt létrehozva a sketch mappa."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
-"A file már másolásra került a mappába\n"
-"ahonnan hozzá próbálta adni.\n"
-"Még mindig nem végrehajtható."
+msgstr ""
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr "Itt az idő szünetet tartani"
+msgstr "Itt az idő szünetet tartani"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "Eszközök"
+msgstr ""
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "Hibaelhárítás"
+msgstr ""
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
@@ -1526,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1537,169 +1534,161 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Hibás kivétel típus: {0}"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "Mégse"
+msgstr ""
#: Platform.java:168
msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"Nem ismert platform, indítás nem lehetséges.\n"
-"Az URL vagy mappa megnyitásához a preferences.txt-ben a\n"
-"\"launcher=/path/to/app\" sor hozzáadása szükséges"
+msgstr ""
#: UpdateCheck.java:111
msgid "Update"
-msgstr "Frissítés"
+msgstr ""
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr "Sketch frissítése az új kiterjesztéssel (.pde -> .ino)"
+msgstr "Sketch frissítése az új kiterjesztéssel (.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
-msgstr "Feltöltés"
+msgstr ""
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Feltöltés programozóval"
+msgstr ""
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "Feltöltés megszakítva."
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Feltöltés alappanelre..."
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Feltöltés..."
+msgstr ""
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Kiválasztás használata kereséshez"
+msgstr ""
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr "Külső szerkesztő használata"
+msgstr "Külső szerkesztő használata"
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr "Ellenőrzés"
+msgstr ""
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Ellenőrzés / Fordítás"
+msgstr ""
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr "Kód ellenőrzés feltöltés után"
+msgstr "Kód ellenőrzés feltöltés után"
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "arduino.cc honlap megnyitása"
+msgstr ""
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr "Figyelmeztetés"
+msgstr "Figyelmeztetés"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
-msgstr "A Wire.receive() új neve: Wire.read()."
+msgstr "A Wire.receive() új neve: Wire.read()."
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "A Wire.send() új neve: Wire.write()."
+msgstr "A Wire.send() új neve: Wire.write()."
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "Teljesen szövegben"
+msgstr ""
#: debug/Uploader.java:213
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
-msgstr ""
-"Nem megfelelő mikrokontroller lett kiválasztva. Pontosítani az Eszközök "
-"> Alappanelek menüben lehet."
+msgstr "Nem megfelelő mikrokontroller lett kiválasztva. Pontosítani az Eszközök > Alappanelek menüben lehet."
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
-msgstr "Igen"
+msgstr ""
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
-msgstr "Ne bolondozzon velem"
+msgstr ""
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "Nem lehet azonos néven a .cpp állomány, mint a Sketch."
+msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Nem nevezhető át a Sketch, mert létezik a \"{0}\"\n"
-"nevű .cpp állomány."
+msgstr ""
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Sketch nem menthető, mint \"{0}\"\n"
-"mert már van ilyen .cpp állomány."
+msgstr ""
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"Sketch nem menthető a mappába.\n"
-"Így egy végtelen történetté alakulna."
+msgstr ""
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr "Felejtsd el a SketchBook-ot"
+msgstr "Felejtsd el a SketchBook-odat"
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr "Meghaladtad az egy napra jutó új Sketch-ek létrehozási\n "
-"számát. Nem kéne sétálni egyet - pihenésül?"
+msgstr "Meghaladtad az egy napra jutó új Sketch-ek létrehozási\\n\nszámot. Nem kéne sétálni egyet - pihenésül?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" nem megfelelő kiterjesztés."
+msgstr " \".{0}\" nem megfelelő kiterjesztés."
#: SketchCode.java:258
#, java-format
@@ -1708,117 +1697,86 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr ""
-"A {0} nem felismerhető karaktert tartalmaz. Ha a kód régebbi verziójú "
-"Processing-gel készült, akkor az Eszközök -> Betöltéskor autoformázás "
-"menüpont megoldja az UTF-8 kódolást. Ha mégsem, akkor a hibás karaktert "
-"ki kell törölni az állományból."
+msgstr ""
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
-msgstr ""
-"\n"
-"Az Arduino-0019 óta az Ethernet függvények kapcsolódnak az SPI függvényekhez.\n"
-"Ez így használható, vagy másik függvény alkalmazható az SPI kezelésére.\n"
-"\n"
+msgstr "\nAz Arduino-0019 óta az Ethernet függvények kapcsolódnak az SPI függvényekhez.\nEz így használható, vagy másik függvény alkalmazható az SPI kezelésére.\n\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr ""
-"\n"
-"Az Arduino 1.0 alatt a 'BYTE' kulcsszó nem támogatott.\n"
-"Helyette a Serial.write() használható.\n"
-"\n"
+msgstr "\nAz Arduino 1.0 alatt a 'BYTE' kulcsszó nem támogatott.\nHelyette a Serial.write() használható.\\n\\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
-msgstr ""
-"\n"
-"Az Arduino 1.0-ban az Ethernet függvény Client osztály új neve: EthernetClient.\n"
-"\n"
+msgstr "\nAz Arduino 1.0-ban az Ethernet függvény Client osztály új neve: EthernetClient.\n\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
-msgstr ""
-"\n"
-"Az Arduino 1.0-ban, az Ethernet függvény Server osztálya EthernetServer-re változott.\n"
-"\n"
+msgstr "\nA Server függvényosztály EthernetServer névre hallgat.\n\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
-msgstr ""
+msgstr "\nAz Arduino 1.0-ban az Ethernet függvény Udp osztály új neve: EthernetUdp.\n\n"
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
-msgstr ""
-"\n"
-"Az Arduino 1.0-ban a Wire.receive() funkció ún neve: Wire.read(), az egyéb függvényekkel analóg módon.\n"
-"\n"
+msgstr "\nAz Arduino 1.0-ban a Wire.receive() funkció ún neve: Wire.read(), az egyéb függvényekkel analóg módon.\n\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
-msgstr ""
-"\n"
-"Az Arduino 1.0-ban a Wire.send() funkció ún neve: Wire.write(), az egyéb függvényekkel analóg módon.\n"
-"\n"
+msgstr "\nAz Arduino 1.0-ban a Wire.send() funkció ún neve: Wire.write(), az egyéb függvényekkel analóg módon.\n\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
-msgstr ""
+msgstr "baud"
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "fordításkor "
+msgstr "fordításkor"
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr "a createNewFile() hibát jelzett"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr "környezet"
+msgstr "környezet"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
-msgstr "http://arduino.cc/"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
@@ -1826,79 +1784,74 @@ msgstr ""
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
-msgstr "http://www.arduino.cc/en/Main/Software"
+msgstr ""
#: UpdateCheck.java:53
msgid "http://www.arduino.cc/latest.txt"
-msgstr "http://www.arduino.cc/latest.txt"
+msgstr ""
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
-msgstr "http://www.arduino.cc/playground/Learning/Linux"
+msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "hibás fontméret kihagyása: {0}"
-#: Base.java:1794
+
+#: Base.java:2080
msgid "index.html"
-msgstr "index.html"
+msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "a név: üres(nincs megadva)"
+msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
-msgstr "platforms.html"
+msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr ""
-"readBytesUntil() byte buffer túl kicsi {0} byte befogadására "
-"és ideértve a {1} karaktert"
+msgstr ""
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: belső hiba... Kód nem található"
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "Üres a serialMenü"
+msgstr ""
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
-msgstr "kiválasztott {0} port nem elérhető vagy az alappanel nincs csatlakoztatva"
+msgstr "kiválasztott {0} port nem elérhető vagy az alappanel nincs csatlakoztatva"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
-msgstr "feltöltéskor"
+msgstr "feltöltéskor"
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "{0} file a Sketch-hez hozzáadásra került."
+msgstr ""
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr "{0} eredménye {1}"
+msgstr "{0} eredménye {1}"
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr "{0} | Arduino {1}"
+msgstr "{0} | Arduino {1}"
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_hu.properties b/app/src/processing/app/i18n/Resources_hu.properties
index ac1324887..f03adb29d 100644
--- a/app/src/processing/app/i18n/Resources_hu.properties
+++ b/app/src/processing/app/i18n/Resources_hu.properties
@@ -3,79 +3,79 @@
# This file is distributed under the same license as the PACKAGE package.
# Robert Cseh Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Az utols\u00f3 Sketch bez\u00e1r\u00e1s\u00e1val az Arduino kil\u00e9p.
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Ment\u00e9s n\u00e9k\u00fcl a v\u00e1ltoztat\u00e1sok elvesznek.
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=A "{0}" file m\u00e1r l\u00e9tezik a "{1}" mapp\u00e1ban\!
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=A {0} mappa m\u00e1r l\u00e9tezik. Sketch nem nyithat\u00f3 meg.
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u00daj kiad\u00e1s jelent meg Arduino-b\u00f3l,\nmegmutassam a let\u00f6lt\u00e9si oldalt?
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Hiba l\u00e9pett fel, mik\u00f6zben a megnyitott file\na konzolt haszn\u00e1lta volna.
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
-#: Editor.java:1102
-About\ Arduino=Arduino n\u00e9vjegye
+#: Editor.java:1116
+!About\ Arduino=
-#: Editor.java:643
-Add\ File...=File hozz\u00e1ad\u00e1sa...
+#: Editor.java:650
+!Add\ File...=
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
+#: Base.java:963
+Add\ Library...=F\u00fcggv\u00e9nyk\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa...
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Hiba l\u00e9pett fel a file fix\u00e1l\u00e1sa/jav\u00edt\u00e1sa sor\u00e1n.\nNem javasolt a fel\u00fcl\u00edr\u00e1sos ment\u00e9s.\nA Sketch \u00fajra-megnyit\u00e1sa tal\u00e1n megoldja a probl\u00e9m\u00e1t.\n
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Rendszerf\u00fcgg\u0151 k\u00f3d bet\u00f6lt\u00e9se sor\u00e1n\n hiba l\u00e9pett fel (A hiba az \u00d6n g\u00e9p\u00e9ben van.)
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Rendszerf\u00fcgg\u0151 k\u00f3d bet\u00f6lt\u00e9se sor\u00e1n\\n hiba l\u00e9pett fel. A hiba az \u00d6n g\u00e9p\u00e9ben van.
#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
-Archive\ Sketch=Sketch archiv\u00e1l\u00e1s
+!Archive\ Sketch=
#: tools/Archiver.java:109
-Archive\ sketch\ as\:=Sketch archiv\u00e1l\u00e1sa, mint\:
+!Archive\ sketch\ as\:=
#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=Sketch archiv\u00e1l\u00e1s megszak\u00edtva.
+!Archive\ sketch\ canceled.=
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=A Sketch archiv\u00e1l\u00e1sa megszakadt, mivel\na Sketch pontos ment\u00e9se nem volt lehets\u00e9ges.
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
#: ../../../processing/app/I18n.java:83
!Arduino\ ARM\ (32-bits)\ Boards=
@@ -83,62 +83,68 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\na felhaszn\u00e1l\u00f3i be\u00e1ll\u00edt\u00e1sok mapp\u00e1ja.
+#: Base.java:1682
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\\na felhaszn\u00e1l\u00f3i be\u00e1ll\u00edt\u00e1sok mapp\u00e1ja.
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\na felhaszn\u00e1l\u00f3i Sketch ment\u00e9sek mapp\u00e1ja.
+#: Base.java:1889
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\\na felhaszn\u00e1l\u00f3i Sketch ment\u00e9sek mapp\u00e1ja.
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Az Arduino futtat\u00e1s\u00e1hoz teljes telep\u00edt\u00e9s\u0171 JDK (Java Fejleszt\u0151i K\u00f6rnyezet)sz\u00fcks\u00e9ges, nem elegend\u0151 csak a JRE (Java futtat\u00f3k\u00f6rnyezet)A JDK 1.5 vagy \u00fajabb szofver telep\u00edt\u00e9se sz\u00fcks\u00e9gesB\u0151vebb inform\u00e1ci\u00f3 a Referenci\u00e1k k\u00f6zt tal\u00e1lhat\u00f3.
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Az Arduino futtat\u00e1s\u00e1hoz teljes telep\u00edt\u00e9s\u0171 JDK (Java Fejleszt\u0151i K\u00f6rnyezet) /nsz\u00fcks\u00e9ges, nem elegend\u0151 csak a JRE (Java futtat\u00f3k\u00f6rnyezet)./nA JDK 1.5 vagy \u00fajabb szofver telep\u00edt\u00e9se sz\u00fcks\u00e9ges./nB\u0151vebb inform\u00e1ci\u00f3 a Referenci\u00e1k k\u00f6zt tal\u00e1lhat\u00f3.
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=A(z) "{0}" \u00e1llom\u00e1ny t\u00e9nyleg t\u00f6rl\u00e9sre ker\u00fclj\u00f6n?
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=T\u00e9nyleg t\u00f6r\u00f6lni kell a Sketch-et? Biztosan?
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
#: tools/AutoFormat.java:91
-Auto\ Format=Autoform\u00e1z\u00e1s
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
#: tools/AutoFormat.java:931
-Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Autoform\u00e1z\u00e1s megszak\u00edtva\: t\u00fal sok nyit\u00f3 kapcsos-z\u00e1r\u00f3jel.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
#: tools/AutoFormat.java:922
-Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Autoform\u00e1z\u00e1s megszak\u00edtva\: t\u00fal sok a nyit\u00f3 z\u00e1r\u00f3jel.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
-#: tools/AutoFormat.java:928
-Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Autoform\u00e1z\u00e1s megszak\u00edtva\: t\u00fal sok z\u00e1r\u00f3 kapcsos-z\u00e1r\u00f3jel.
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
-#: tools/AutoFormat.java:919
-Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Autoform\u00e1z\u00e1s megszak\u00edtva\: t\u00fal sok a z\u00e1r\u00f3 z\u00e1r\u00f3jel.
-
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=Autoform\u00e1z\u00e1s befejez\u0151d\u00f6tt.
-
-#: Preferences.java:423
+#: Preferences.java:439
Automatically\ associate\ .ino\ files\ with\ Arduino=Automatikus kiterjeszt\u00e9s-hozz\u00e1rendel\u00e9s\: .ino->Arduino
#: SerialMonitor.java:110
-Autoscroll=Autog\u00f6rget\u00e9s
+!Autoscroll=
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
-Bad\ error\ line\:\ {0}=Hib\u00e1s sor\: {0}
+!Bad\ error\ line\:\ {0}=
-#: Editor.java:2089
-Bad\ file\ selected=Hib\u00e1s file lett kiv\u00e1lasztva
+#: Editor.java:2136
+!Bad\ file\ selected=
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=Alappanel
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -147,23 +153,29 @@ Board=Alappanel
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
-Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s Kocsi-vissza
+Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza
-#: Preferences.java:80
-Browse=Tall\u00f3z
+#: Preferences.java:81
+!Browse=
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=A ford\u00edt\u00e1si mappa el\u00e9rhetetlen vagy \u00edr\u00e1sv\u00e9dett.
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
-Burn\ Bootloader=Bootloader be\u00e9get\u00e9se
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader \u00e9get\u00e9se (n\u00e9h\u00e1ny percet vesz ig\u00e9nybe)...
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
#: ../../../processing/app/Base.java:368
!Can't\ open\ source\ sketch\!=
@@ -171,78 +183,90 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
-Cancel=M\u00e9gse
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
-#: Sketch.java:459
-Cannot\ Rename=\u00c1tnevez\u00e9si hiba
+#: Sketch.java:455
+!Cannot\ Rename=
#: SerialMonitor.java:112
-Carriage\ return=Kocsi-vissza
-
-#: Preferences.java:86
-Catalan=Katal\u00e1n
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se ind\u00edt\u00e1skor
+Carriage\ return=Soremel\u00e9s
#: Preferences.java:87
-Chinese\ Simplified=Egyszer\u00fcs\u00edtett k\u00ednai
+!Catalan=
+
+#: Preferences.java:419
+Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se ind\u00edt\u00e1skor
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
!Chinese\ Traditional=
-#: Editor.java:514 Editor.java:1977
-Close=Kil\u00e9p\u00e9s
+#: Editor.java:521 Editor.java:2024
+!Close=
-#: Editor.java:1194 Editor.java:2702
-Comment/Uncomment=Megjegyz\u00e9s/M\u00e9gsem
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Ford\u00edt\u00e1si hiba, ezt a k\u00f3dot k\u00e9rem k\u00fcldje el a {0} c\u00edmre
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Sketch ford\u00edt\u00e1sa...
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
#: EditorConsole.java:152
-Console\ Error=Konzol hiba
+!Console\ Error=
-#: Editor.java:1143 Editor.java:2660
-Copy=M\u00e1sol\u00e1s
+#: Editor.java:1157 Editor.java:2707
+!Copy=
-#: Editor.java:1163 Editor.java:2676
-Copy\ as\ HTML=M\u00e1sol\u00e1s HTML-k\u00e9nt
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=M\u00e1sol\u00e1s a F\u00f3rumhoz
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=A {0} nem adhat\u00f3 hozz\u00e1 a Sketch-hez.
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
-#: Editor.java:2141
+#: Editor.java:2188
Could\ not\ copy\ to\ a\ proper\ location.=Nem m\u00e1solhat\u00f3 a megfelel\u0151 helyre.
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=Sketch mapp\u00e1ja nem hozhat\u00f3 l\u00e9tre.
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
-#: Editor.java:2159
+#: Editor.java:2206
Could\ not\ create\ the\ sketch.=Sketch nem hozhat\u00f3 l\u00e9tre.
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=Nem t\u00f6r\u00f6lhet\u0151 file\: "{0}".
+!Could\ not\ delete\ "{0}".=
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Nem t\u00f6r\u00f6lhet\u0151 a meglev\u0151 {0} file.
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
Could\ not\ delete\ {0}=Nem t\u00f6r\u00f6lhet\u0151\: {0}
@@ -258,140 +282,146 @@ Could\ not\ delete\ {0}=Nem t\u00f6r\u00f6lhet\u0151\: {0}
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=Nem nyithat\u00f3 meg az URL\:\n{0}
+Could\ not\ open\ the\ URL\n{0}=Nem nyithat\u00f3 meg az URL\:\\n{0}
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=Nem nyithat\u00f3 meg a mappa\:\n{0}
+Could\ not\ open\ the\ folder\n{0}=Nem nyithat\u00f3 meg a mappa\:\\n{0}
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=T\u00f6k\u00e9letesen nem lehets\u00e9ges a Sketch \u00fajrament\u00e9se. A megold\u00e1s jelen helyzetben, hogy\na szerkeszt\u0151b\u0151l a k\u00f3dot kim\u00e1solja egy m\u00e1sik szerkeszt\u0151programba.
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=Nem lehets\u00e9ges a Sketch \u00fajrament\u00e9se
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nem olvashat\u00f3 a sz\u00edns\u00e9ma,\na Processing \u00fajratelep\u00edt\u00e9s\u00e9re van sz\u00fcks\u00e9g.
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Az alap\u00e9rtelezett be\u00e1ll\u00edt\u00e1sok nem olvashat\u00f3ak\nAz Arduino \u00fajratelep\u00edt\u00e9se sz\u00fcks\u00e9ges.
+#: Preferences.java:219
+Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Az alap\u00e9rtelezett be\u00e1ll\u00edt\u00e1sok nem olvashat\u00f3ak\\nAz Arduino \u00fajratelep\u00edt\u00e9se sz\u00fcks\u00e9ges.
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
Could\ not\ read\ preferences\ from\ {0}=A be\u00e1ll\u00edt\u00e1sok nem olvashat\u00f3ak\: {0}
-#: Base.java:2196
+#: Base.java:2482
#, java-format
Could\ not\ remove\ old\ version\ of\ {0}=Nem t\u00f6r\u00f6lhet\u0151 a {0} r\u00e9gi verzi\u00f3ja
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=Nem nevezhet\u0151 \u00e1t\: "{0}" -> "{1}"
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=A Sketch nem nevezhet\u0151 \u00e1t\: (0).
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=Nem nevezhet\u0151 \u00e1t a Sketch\: (1)
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=Nem nevezhet\u0151 \u00e1t a Sketch\: (2).
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
-#: Base.java:2206
+#: Base.java:2492
#, java-format
Could\ not\ replace\ {0}=Nem cser\u00e9lhet\u0151\: {0}
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=Sketch nem archiv\u00e1lhat\u00f3
+!Couldn't\ archive\ sketch=
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=Nem meghat\u00e1rozhat\u00f3 a {0} program m\u00e9rete
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
-#: Sketch.java:620
-Couldn't\ do\ it=Nem tudom megtenni
+#: Sketch.java:616
+!Couldn't\ do\ it=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
-Cut=Kiv\u00e1g\u00e1s
+#: Editor.java:1149 Editor.java:2699
+!Cut=
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
-Danish=D\u00e1n
+#: Preferences.java:90
+!Danish=
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
Delete=T\u00f6rl\u00e9s
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Eszk\u00f6z nem v\u00e1laszol\: tal\u00e1n hib\u00e1s port lett kiv\u00e1lasztva, vagy a panel\u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges export\u00e1l\u00e1s el\u0151tt
+#: debug/Uploader.java:199
+Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Eszk\u00f6z nem v\u00e1laszol\: tal\u00e1n hib\u00e1s port lett kiv\u00e1lasztva, vagy a panel \u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges export\u00e1l\u00e1s el\u0151tt
#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=M\u00f3dos\u00edt\u00e1sok elvet\u00e9se \u00e9s Sketch \u00fajrat\u00f6lt\u00e9se?
+!Discard\ all\ changes\ and\ reload\ sketch?=
-#: Editor.java:2017
-Don't\ Save=Nincs ment\u00e9s
+#: Editor.java:2064
+!Don't\ Save=
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
Done\ Saving.=Ment\u00e9s k\u00e9sz.
-#: Editor.java:2463
-Done\ burning\ bootloader.=Bootloader \u00e9get\u00e9s k\u00e9sz.
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=Ford\u00edt\u00e1s k\u00e9sz.
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
-#: Editor.java:2517
-Done\ printing.=Nyomtat\u00e1s k\u00e9sz.
+#: Editor.java:2564
+!Done\ printing.=
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=Felt\u00f6lt\u00e9s k\u00e9sz.
-
-#: Preferences.java:90
-Dutch=Holland
-
-#: Editor.java:1116
-Edit=Szerkeszt\u00e9s
-
-#: Preferences.java:354
-Editor\ font\ size\:\ =Szerkeszt\u0151 bet\u0171m\u00e9ret\:
-
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
#: Preferences.java:91
-English=Angol
+!Dutch=
-#: Editor.java:1049
-Environment=K\u00f6rnyezet
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Editor.java:1130
+!Edit=
+
+#: Preferences.java:370
+Editor\ font\ size\:\ =Szerkeszt\u0151 bet\u0171m\u00e9ret\:
+
+#: Preferences.java:353
+Editor\ language\:\ =Szerkeszt\u0151 nyelve\:
+
+#: Preferences.java:92
+!English=
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=Hiba
-#: Sketch.java:1069 Sketch.java:1092
-Error\ adding\ file=File hozz\u00e1ad\u00e1si hiba
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
Error\ compiling.=Hiba a ford\u00edt\u00e1s sor\u00e1n.
-#: Base.java:1433
+#: Base.java:1674
Error\ getting\ the\ Arduino\ data\ folder.=Hiba az Arduino data k\u00f6nyvt\u00e1r el\u00e9r\u00e9sekor.
-#: Serial.java:567
+#: Serial.java:593
#, java-format
-Error\ inside\ Serial.{0}()=Hiba a Serial.{0}()-ban
+!Error\ inside\ Serial.{0}()=
#: ../../../processing/app/Base.java:1232
!Error\ loading\ libraries=
@@ -402,345 +432,361 @@ Error\ inside\ Serial.{0}()=Hiba a Serial.{0}()-ban
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=Hiba a {0} soros port megnyit\u00e1sa sor\u00e1n.
+!Error\ opening\ serial\ port\ ''{0}''.=
-#: Preferences.java:261
+#: Preferences.java:277
Error\ reading\ preferences=Alapbe\u00e1ll\u00edt\u00e1sok olvas\u00e1sa k\u00f6zben hiba l\u00e9pett fel
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Hiba a be\u00e1ll\u00edt\u00e1sok olvas\u00e1sa sor\u00e1n. K\u00e9rem t\u00f6r\u00f6lje (vagy mozgassa el) a\n{0} file-t \u00e9s ind\u00edtsa \u00fajra az Arduino-t\!
+Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Hiba a be\u00e1ll\u00edt\u00e1sok olvas\u00e1sa sor\u00e1n. K\u00e9rem t\u00f6r\u00f6lje (vagy mozgassa el) a\\n{0} file-t \u00e9s ind\u00edtsa \u00fajra az Arduino-t\!
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
-!Error\ touching\ serial\ port\ ''{0}''.=
+Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00e9s sor\u00e1n.
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=Hiba l\u00e9pett fel a bootloader \u00e9get\u00e9sekor.
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
#: ../../../processing/app/Editor.java:2555
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
#: SketchCode.java:83
#, java-format
-Error\ while\ loading\ code\ {0}=Hiba a k\u00f3d bet\u00f6lt\u00e9se k\u00f6zben\: {0}
+!Error\ while\ loading\ code\ {0}=
-#: Editor.java:2520
-Error\ while\ printing.=Hiba a nyomtat\u00e1s sor\u00e1n.
+#: Editor.java:2567
+!Error\ while\ printing.=
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
-Examples=Mint\u00e1k
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=Export\u00e1l\u00e1s megszak\u00edtva. El\u0151sz\u00f6r menteni kell\!
+#: Editor.java:516
+!Examples=
-#: Base.java:1814
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
-File=File
+#: Editor.java:491
+!File=
#: Preferences.java:94
-Filipino=F\u00fcl\u00f6p-szigetek
+!Filipino=
#: FindReplace.java:124 FindReplace.java:127
-Find=Keres
+!Find=
-#: Editor.java:1235
-Find\ Next=K\u00f6vetkez\u0151 keres\u00e9se
+#: Editor.java:1249
+!Find\ Next=
-#: Editor.java:1245
-Find\ Previous=El\u0151z\u0151 keres\u00e9se
+#: Editor.java:1259
+!Find\ Previous=
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=Keres\u00e9s a Referenci\u00e1k k\u00f6zt
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
-#: Editor.java:1220
-Find...=Keres\u00e9s...
+#: Editor.java:1234
+!Find...=
#: FindReplace.java:80
-Find\:=Keres\u00e9s\:
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=Bet\u00f6lt\u00e9skor autoform\u00e1z\u00e1s
+!Fix\ Encoding\ &\ Reload=
-#: ../../../processing/app/Base.java:2057
-!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+#: Base.java:1851
+For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=A f\u00fcggv\u00e9nyk\u00f6nyvt\u00e1rak telep\u00edt\u00e9s\u00e9hez n\u00e9zd meg\:/nhttp\://arduino.cc/en/Guide/Libraries\\n
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
-!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-
-#: Preferences.java:93
-French=Francia
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Gyakran Ism\u00e9telt K\u00e9rd\u00e9sek
+#: debug/BasicUploader.java:80
+Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =1200 bps sebess\u00e9gbe\u00e1ll\u00edt\u00e1s mellett k\u00e9nyszer\u00edtett reset ker\u00fcl a portra
#: Preferences.java:95
-Galician=Gall
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
-German=N\u00e9met
-
-#: Editor.java:1041
-Getting\ Started=Els\u0151 l\u00e9p\u00e9sek
-
#: Preferences.java:97
-Greek=G\u00f6r\u00f6g
+!German=
-#: Base.java:1799
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+!Greek=
+
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
+#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
+#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
-Help=S\u00fag\u00f3
+#: Editor.java:1015
+!Help=
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=A Sketch csak ment\u00e9s ut\u00e1n\nnevezhet\u0151 \u00e1t\!
+#: Sketch.java:295
+How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=A Sketch csak ment\u00e9s ut\u00e1n\\nnevezhet\u0151 \u00e1t\!
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=Nono\!
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
-#: Preferences.java:98
-Hungarian=Magyar
+#: Preferences.java:100
+!Hungarian=
#: FindReplace.java:96
-Ignore\ Case=Kisbet\u0171-nagybet\u0171 f\u00fcggetlen
+!Ignore\ Case=
-#: Base.java:1207
+#: Base.java:1058
Ignoring\ bad\ library\ name=Hib\u00e1s k\u00f6nyvt\u00e1rn\u00e9v kihagy\u00e1sa
-#: Base.java:1132
+#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa
-#: Editor.java:629
-Import\ Library...=F\u00fcggv\u00e9ny import\u00e1l\u00e1s...
+#: Editor.java:636
+!Import\ Library...=
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Beh\u00faz\u00e1s n\u00f6vel\u00e9se
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
-#: Preferences.java:99
+#: Preferences.java:101
!Indonesian=
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
-Italian=Olasz
-
-#: Preferences.java:101
-Japanese=Jap\u00e1n
-
#: Preferences.java:102
-!Korean=
+!Italian=
#: Preferences.java:103
-Latvian=Lett
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+Japanese=Jap\u00e1n
#: Preferences.java:104
-!Lithuaninan=
+Korean=Koreai
+
+#: Preferences.java:105
+Latvian=Lett
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+Lithuaninan=Litv\u00e1n
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
+#: Base.java:2112
Message=\u00dczenet
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Hi\u00e1nyzik a megjegyz\u00e9st z\u00e1r\u00f3 */ jel
-
-#: Preferences.java:433
+#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Tov\u00e1bbi sz\u00e1mos be\u00e1ll\u00edt\u00e1s el\u00e9rhet\u0151 a file k\u00f6zvetlen szerkeszt\u00e9s\u00e9vel
-#: Editor.java:2109
-Moving=\u00c1tmozgat\u00e1s
+#: Editor.java:2156
+!Moving=
-#: Sketch.java:286
+#: Sketch.java:282
Name\ for\ new\ file\:=\u00daj file neve\:
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
-New=\u00daj
+#: EditorToolbar.java:41 Editor.java:493
+!New=
#: EditorToolbar.java:46
-New\ Editor\ Window=\u00daj szerkeszt\u0151ablak
+!New\ Editor\ Window=
#: EditorHeader.java:292
New\ Tab=\u00daj f\u00fcl
#: SerialMonitor.java:112
-Newline=Soremel\u00e9s
+!Newline=
#: EditorHeader.java:340
Next\ Tab=K\u00f6vetkez\u0151 f\u00fcl
-#: UpdateCheck.java:108 Preferences.java:77
-No=Nem
+#: Preferences.java:78 UpdateCheck.java:108
+!No=
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nincs alappanel kiv\u00e1lasztva. V\u00e1lasztani az Eszk\u00f6z\u00f6k > Alappanel men\u00fcb\u0151l lehet.
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
-No\ changes\ necessary\ for\ Auto\ Format.=Nem sz\u00fcks\u00e9ges semmilyen v\u00e1ltoztat\u00e1s autoform\u00e1z\u00e1shoz.
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=Nem lett file hozz\u00e1adva a Sketch-hez.
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
#: Platform.java:167
-No\ launcher\ available=Nem ind\u00edthat\u00f3
+!No\ launcher\ available=
#: SerialMonitor.java:112
-No\ line\ ending=Nincs sorlez\u00e1r\u00e1s
+!No\ line\ ending=
-#: Base.java:538
+#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 leveg\u0151zn\u00f6d egyet.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=Referencia nem tal\u00e1lhat\u00f3 a {0} bejegyz\u00e9shez
+!No\ reference\ available\ for\ "{0}"=
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Nem-v\u00e9gzetes hiba a kin\u00e9zet be\u00e1ll\u00edt\u00e1sa sor\u00e1n (a program f\u00e9rfi g\u00e9neket hordoz).
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Nem-v\u00e9gzetes hiba a kin\u00e9zet be\u00e1ll\u00edt\u00e1sa sor\u00e1n - a program f\u00e9rfi g\u00e9neket hordoz.
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Dehogy, nem
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=OK
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=Egy file a Sketch-hez hozz\u00e1ad\u00e1sra ker\u00fclt.
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
#: EditorToolbar.java:41
-Open=Megnyit\u00e1s
+!Open=
-#: Editor.java:2641
-Open\ URL=URL megnyit\u00e1sa
+#: Editor.java:2688
+!Open\ URL=
-#: Base.java:633
+#: Base.java:636
Open\ an\ Arduino\ sketch...=Arduino Sketch megnyit\u00e1sa...
#: EditorToolbar.java:46
-Open\ in\ Another\ Window=Megnyit\u00e1s \u00faj ablakban
+!Open\ in\ Another\ Window=
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=Megnyit...
-#: Editor.java:556
-Page\ Setup=Oldalbe\u00e1ll\u00edt\u00e1s
+#: Editor.java:563
+!Page\ Setup=
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
-Paste=Beilleszt\u00e9s
+#: Editor.java:1189 Editor.java:2731
+!Paste=
-#: Preferences.java:105
+#: Preferences.java:109
Persian=Perzsa
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Az SPI f\u00fcggv\u00e9nyek haszn\u00e1lat\u00e1hoz a Sketch > F\u00fcggv\u00e9ny import alatt az SPI-re van sz\u00fcks\u00e9ge.
-#: Base.java:232
+#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=A futtat\u00e1shoz telep\u00edtett Java 1.5 vagy \u00fajabb szoftverk\u00f6rnyezet sz\u00fcks\u00e9ges
-#: Preferences.java:106
-!Polish=
+#: Preferences.java:110
+Polish=Lengyel
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
Preferences=Be\u00e1ll\u00edt\u00e1sok
#: FindReplace.java:123 FindReplace.java:128
-Previous=El\u0151z\u0151
+!Previous=
#: EditorHeader.java:326
Previous\ Tab=El\u0151z\u0151 f\u00fcl
-#: Editor.java:564
-Print=Nyomtat\u00e1s
+#: Editor.java:571
+!Print=
-#: Editor.java:2524
-Printing\ canceled.=Nyomtat\u00e1s megszak\u00edtva.
+#: Editor.java:2571
+!Printing\ canceled.=
-#: Editor.java:2500
-Printing...=Nyomtat\u00e1s...
+#: Editor.java:2547
+!Printing...=
-#: Base.java:1671
+#: Base.java:1957
Problem\ Opening\ Folder=Hiba a mappa megnyit\u00e1sakor
-#: Base.java:1647
+#: Base.java:1933
Problem\ Opening\ URL=Hiba az URL megnyit\u00e1sakor
-#: Base.java:220
+#: Base.java:227
Problem\ Setting\ the\ Platform=A keretrendszer konfigur\u00e1l\u00e1sa sor\u00e1n hiba l\u00e9pett fel
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
@@ -749,248 +795,258 @@ Problem\ Setting\ the\ Platform=A keretrendszer konfigur\u00e1l\u00e1sa sor\u00e
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
+#: Base.java:1673
Problem\ getting\ data\ folder=Probl\u00e9ma a k\u00f6nyvt\u00e1r el\u00e9r\u00e9sekor
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=Hiba a {0} ford\u00edt\u00e1si mapp\u00e1ba mozgat\u00e1sa sor\u00e1n
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
#: debug/Uploader.java:209
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Hiba a felt\u00f6lt\u00e9s sor\u00e1n. A hiba elh\u00e1r\u00edt\u00e1sa a http\://www.arduino.cc/en/Guide/ oldalon a Troubleshooting\#upload alatt ker\u00fclt le\u00edr\u00e1sra.
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
Problem\ with\ rename=Hiba az \u00e1tnevez\u00e9s sor\u00e1n
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing csak a saj\u00e1t \u00e1llom\u00e1ny\u00e1t tudja megnyitni\nvagy az .ino vagy .pde kiterjeszt\u00e9s\u0171eket
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
-Programmer=Programoz\u00f3
+#: Editor.java:704
+!Programmer=
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=Kil\u00e9p\u00e9s
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=M\u00e9gis
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
-#: Editor.java:1065
-Reference=Referencia
+#: Editor.java:1078
+!Reference=
#: EditorHeader.java:300
Rename=\u00c1tnevez\u00e9s
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
-Replace=Cser\u00e9l
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
#: FindReplace.java:122 FindReplace.java:129
-Replace\ &\ Find=Keres \u00e9s cser\u00e9l
+!Replace\ &\ Find=
#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=Mindent cser\u00e9l
+!Replace\ All=
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=A meglev\u0151 {0} cser\u00e9je?
+!Replace\ the\ existing\ version\ of\ {0}?=
#: FindReplace.java:81
-Replace\ with\:=Csere erre\:
+!Replace\ with\:=
-#: Preferences.java:109
+#: Preferences.java:113
Romanian=Rom\u00e1n
-#: Preferences.java:110
+#: Preferences.java:114
Russian=Orosz
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
-Save=Ment\u00e9s
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
-#: Editor.java:530
-Save\ As...=Ment\u00e9s m\u00e1sk\u00e9nt...
+#: Editor.java:537
+!Save\ As...=
-#: Editor.java:2270
+#: Editor.java:2317
Save\ Canceled.=Ment\u00e9s megszak\u00edtva.
-#: Editor.java:2420
-Save\ changes\ before\ export?=Export\u00e1l\u00e1s el\u0151tt ment\u00e9s?
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Ment\u00e9s a {0} \u00e1llom\u00e1nyba?
+!Save\ changes\ to\ "{0}"?\ \ =
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Sketch ment\u00e9se, mint...
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
Saving...=Ment\u00e9s...
-#: Base.java:1623
+#: Base.java:1909
Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e1lassz (vagy hozz l\u00e9tre) mapp\u00e1t a Sketch-eknek...
-#: Editor.java:1184 Editor.java:2692
-Select\ All=Minden kijel\u00f6l\u00e9se
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=K\u00e9p vagy egy\u00e9b adat v\u00e1laszt\u00e1sa a Sketch-be m\u00e1sol\u00e1shoz
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
-#: Preferences.java:314
+#: Preferences.java:330
Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj SketchBook mapp\u00e1t
#: ../../../processing/app/debug/Compiler.java:146
!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
#: SerialMonitor.java:93
-Send=K\u00fcld
+!Send=
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Soros monitor
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
-#: Serial.java:147
+#: Serial.java:174
#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=A {0} soros port haszn\u00e1latban van. A programb\u00f3l val\u00f3kil\u00e9p\u00e9s ut\u00e1n pr\u00f3b\u00e1lja \u00fajra.
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
-!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=A {0} soros port haszn\u00e1latban van. A programb\u00f3l val\u00f3 kil\u00e9p\u00e9s ut\u00e1n pr\u00f3b\u00e1lja \u00fajra.
-#: Serial.java:167
+#: Serial.java:194
#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=A {0} soros port nem tal\u00e1lhat\u00f3. V\u00e1lasztani az Eszk\u00f6z\u00f6k > Soros port alatt lehets\u00e9ges.
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?={0} soros port nem tal\u00e1lhat\u00f3.\nM\u00e1sik soros porton megism\u00e9telj\u00fck?
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
-#: Base.java:1440
+#: Base.java:1681
Settings\ issues=Kimenetek be\u00e1ll\u00edt\u00e1sa
-#: Editor.java:634
-Show\ Sketch\ Folder=Sketch mappa mutat\u00e1sa
+#: Editor.java:641
+!Show\ Sketch\ Folder=
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
+#: Preferences.java:387
Show\ verbose\ output\ during\:\ =Log mutat\u00e1sa\:
-#: Editor.java:600
-Sketch=Sketch
+#: Editor.java:607
+!Sketch=
-#: Sketch.java:1796
-Sketch\ Disappeared=A Sketch elveszett
+#: Sketch.java:1754
+!Sketch\ Disappeared=
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=Sketch nem megnyithat\u00f3
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=Sketch nem nyithat\u00f3 meg
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=Sketch csak olvashat\u00f3
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+Sketch\ is\ Read-Only=A Sketch \u00edr\u00e1sv\u00e9dett
-#: Sketch.java:298
+#: Sketch.java:294
Sketch\ is\ Untitled=A Sketch most N\u00e9vtelen (Untitled)
-#: Sketch.java:724
-Sketch\ is\ read-only=A Sketch csak olvashat\u00f3
+#: Sketch.java:720
+!Sketch\ is\ read-only=
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=T\u00fal nagy a Sketch\: m\u00e9ret cs\u00f6kkent\u00e9s\u00e9hez a http\://www.arduino.cc/en/Guide/Troubleshooting\#size oldalon tal\u00e1lhat\u00f3ak tippek.
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
-#: Editor.java:503
-Sketchbook=SketchBook
-
-#: Base.java:257
-Sketchbook\ folder\ disappeared=A SketchBook mappa el\u00e9rhetetlen
-
-#: Preferences.java:299
-Sketchbook\ location\:=SketchBook helye\:
-
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=N\u00e9h\u00e1ny file csak olvashat\u00f3, \u00edgy m\u00e1s helyre ment\u00e9s ut\u00e1n\n\u00fajra meg kell pr\u00f3b\u00e1lni.\n\n
-
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=N\u00e9h\u00e1ny file csak olvashat\u00f3, \u00edgy el kell menteni a\nSketch-et egy m\u00e1sik mapp\u00e1ba.
-
-#: Sketch.java:461
+#: ../../../processing/app/Sketch.java:1639
#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Hiba\: Sketch (vagy mappa) m\u00e1r l\u00e9tezik "{0}" n\u00e9ven.
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
-#: Preferences.java:111
-Spanish=Spanyol
-
-#: Base.java:537
-Sunshine=Napf\u00e9ny
-
-#: Preferences.java:83
-!System\ Default=
-
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
-
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A 'BYTE' kulcssz\u00f3 nem t\u00e1mogatott.
-
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A Client oszt\u00e1ly \u00faj neve\: EthernetClient
-
-#: debug/Compiler.java:477
-The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A Server f\u00fcggv\u00e9nyoszt\u00e1ly EthernetServer n\u00e9vre hallgat.
-
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Az Udp oszt\u00e1ly \u00faj neve\: EthernetUdp.
-
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=A hiba\u00fczenetet k\u00f6vet\u0151en az Arduino megfelel\u0151en m\u0171k\u00f6dik.
-
-#: Editor.java:2100
-#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=A "{0}" file-nak a(z) {1} mapp\u00e1n bel\u00fcl kell lennie.\nMi legyen?\nMappa l\u00e9trehoz\u00e1sa, file mozgat\u00e1sa \u00e9s folytat\u00e1s?
-
-#: Base.java:1202
-#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A "{0}" k\u00f6nyvt\u00e1r nem haszn\u00e1lhat\u00f3.\nA neve az angol abc bet\u0171it \u00e9s sz\u00e1mokat tartalmazhat\n(sz\u00f3k\u00f6z nem lehet benne \u00e9s nem kezd\u0151dhet sz\u00e1mmal).
-
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=A f\u0151-file nem tartalmazhat kiterjeszt\u00e9st.\n(Tal\u00e1n itt az id\u0151, hogy megismerje a\n"val\u00f3di" programoz\u00e1si k\u00f6rnyezetet)
-
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=A n\u00e9v nem kezd\u0151dhet peri\u00f3dus-jellel.
-
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=A kiv\u00e1lasztott Sketch nem \u00e9rhet\u0151 el.\nA SketchBook men\u00fc friss\u00edt\u00e9s\u00e9hez az Arduino\n\u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges.
-
-#: Base.java:1125
-#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=A "{0}" Sketch nem haszn\u00e1lhat\u00f3.\nA Sketch neve csak angol abc bet\u0171it, sz\u00e1mokat\ntartalmazhat, sz\u00f3k\u00f6z n\u00e9lk\u00fcl \u00e9s az els\u0151 bet\u0171je nem lehet sz\u00e1m.\nA hib\u00e1s Sketch-et t\u00e1vol\u00edtsd el\na(z) {1} mapp\u00e1b\u00f3l\!
-
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A Sketch mapp\u00e1ja elveszett.\nA Sketch \u00fajrament\u00e9sre ker\u00fcl,\na k\u00f3d egyes r\u00e9szei megsemmis\u00fclhettek.
-
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=A Sketch neve m\u00f3dos\u00edt\u00e1sra ker\u00fclt. Az elnevez\u00e9se csak\nASCII bet\u0171ket, sz\u00e1mokat tartalmazhat (de nem kezd\u0151dhet sz\u00e1mmal).\nValamint a n\u00e9v hossza nem haladhatja meg a 64 karaktert.
+#: Editor.java:510
+!Sketchbook=
#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A SketchBook mappa nem \u00e9rhet\u0151 el.\nAz alap\u00e9rtelmezett hely lesz kiv\u00e1lasztva, \u00e9s\nitt l\u00e9trehozva a sketch mappa.
+Sketchbook\ folder\ disappeared=A SketchBook mappa el\u00e9rhetetlen
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=A file m\u00e1r m\u00e1sol\u00e1sra ker\u00fclt a mapp\u00e1ba\nahonnan hozz\u00e1 pr\u00f3b\u00e1lta adni.\nM\u00e9g mindig nem v\u00e9grehajthat\u00f3.
+#: Preferences.java:315
+Sketchbook\ location\:=SketchBook helye\:
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=N\u00e9h\u00e1ny file csak olvashat\u00f3, \u00edgy m\u00e1s helyre ment\u00e9s ut\u00e1n\\n\u00fajra meg kell pr\u00f3b\u00e1lni.
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+Spanish=Spanyol
+
+#: Base.java:540
+Sunshine=Napf\u00e9ny
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+Tamil=Tamil
+
+#: debug/Compiler.java:414
+The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A 'BYTE' kulcssz\u00f3 nem t\u00e1mogatott.
+
+#: debug/Compiler.java:426
+The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A Client oszt\u00e1ly \u00faj neve\: EthernetClient
+
+#: debug/Compiler.java:420
+The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A Server f\u00fcggv\u00e9nyoszt\u00e1ly EthernetServer n\u00e9vre hallgat.
+
+#: debug/Compiler.java:432
+The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Az Udp oszt\u00e1ly \u00faj neve\: EthernetUdp.
+
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=A hiba\u00fczenetet k\u00f6vet\u0151en az Arduino megfelel\u0151en m\u0171k\u00f6dik.
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A "{0}" k\u00f6nyvt\u00e1r nem haszn\u00e1lhat\u00f3.\\nA neve az angol abc bet\u0171it \u00e9s sz\u00e1mokat tartalmazhat\\n(sz\u00f3k\u00f6z nem lehet benne \u00e9s nem kezd\u0151dhet sz\u00e1mmal).
+
+#: Sketch.java:374
+The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=A f\u0151-file nem tartalmazhat kiterjeszt\u00e9st.\\n(Tal\u00e1n itt az id\u0151, hogy megismerje a\\n"val\u00f3di" programoz\u00e1si k\u00f6rnyezetet)"
+
+#: Sketch.java:356
+The\ name\ cannot\ start\ with\ a\ period.=A n\u00e9v nem kezd\u0151dhet peri\u00f3dus-jellel.
+
+#: Base.java:1412
+The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=A kiv\u00e1lasztott Sketch nem \u00e9rhet\u0151 el.\\nA SketchBook men\u00fc friss\u00edt\u00e9s\u00e9hez az Arduino\\n\u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges.
+
+#: Base.java:1430
+#, java-format
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=A "{0}" Sketch nem haszn\u00e1lhat\u00f3.\\nA Sketch neve csak angol abc bet\u0171it, sz\u00e1mokat\\ntartalmazhat, sz\u00f3k\u00f6z n\u00e9lk\u00fcl \u00e9s az els\u0151 bet\u0171je nem lehet sz\u00e1m.\\nA hib\u00e1s Sketch-et t\u00e1vol\u00edtsd el\\na(z) {1} mapp\u00e1b\u00f3l\!
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A SketchBook mappa nem \u00e9rhet\u0151 el.\\nAz alap\u00e9rtelmezett hely lesz kiv\u00e1lasztva, \u00e9s\\nitt l\u00e9trehozva a sketch mappa.
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
+#: Base.java:535
Time\ for\ a\ Break=Itt az id\u0151 sz\u00fcnetet tartani
-#: Editor.java:656
-Tools=Eszk\u00f6z\u00f6k
+#: Editor.java:663
+!Tools=
-#: Editor.java:1057
-Troubleshooting=Hibaelh\u00e1r\u00edt\u00e1s
+#: Editor.java:1070
+!Troubleshooting=
#: ../../../processing/app/Preferences.java:117
!Turkish=
@@ -1009,7 +1065,7 @@ Troubleshooting=Hibaelh\u00e1r\u00edt\u00e1s
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1017,214 +1073,213 @@ Troubleshooting=Hibaelh\u00e1r\u00edt\u00e1s
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=Hib\u00e1s kiv\u00e9tel t\u00edpus\: {0}
+!Uncaught\ exception\ type\:\ {0}=
-#: Editor.java:1119 Editor.java:1341
-Undo=M\u00e9gse
+#: Editor.java:1133 Editor.java:1355
+!Undo=
#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Nem ismert platform, ind\u00edt\u00e1s nem lehets\u00e9ges.\nAz URL vagy mappa megnyit\u00e1s\u00e1hoz a preferences.txt-ben a\n"launcher\=/path/to/app" sor hozz\u00e1ad\u00e1sa sz\u00fcks\u00e9ges
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
#: UpdateCheck.java:111
-Update=Friss\u00edt\u00e9s
+!Update=
-#: Preferences.java:412
+#: Preferences.java:428
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Sketch friss\u00edt\u00e9se az \u00faj kiterjeszt\u00e9ssel (.pde -> .ino)
-#: Editor.java:538 EditorToolbar.java:41
-Upload=Felt\u00f6lt\u00e9s
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Felt\u00f6lt\u00e9s programoz\u00f3val
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=Felt\u00f6lt\u00e9s megszak\u00edtva.
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=Felt\u00f6lt\u00e9s alappanelre...
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
-#: Sketch.java:1661
-Uploading...=Felt\u00f6lt\u00e9s...
+#: Sketch.java:1622
+!Uploading...=
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Kiv\u00e1laszt\u00e1s haszn\u00e1lata keres\u00e9shez
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
-#: Preferences.java:393
+#: Preferences.java:409
Use\ external\ editor=K\u00fcls\u0151 szerkeszt\u0151 haszn\u00e1lata
#: EditorToolbar.java:41 EditorToolbar.java:46
-Verify=Ellen\u0151rz\u00e9s
+!Verify=
-#: Editor.java:602
-Verify\ /\ Compile=Ellen\u0151rz\u00e9s / Ford\u00edt\u00e1s
+#: Editor.java:609
+!Verify\ /\ Compile=
-#: Preferences.java:384
+#: Preferences.java:400
Verify\ code\ after\ upload=K\u00f3d ellen\u0151rz\u00e9s felt\u00f6lt\u00e9s ut\u00e1n
-#: Editor.java:1091
-Visit\ Arduino.cc=arduino.cc honlap megnyit\u00e1sa
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
-#: Base.java:1842
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
Warning=Figyelmeztet\u00e9s
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=A Wire.receive() \u00faj neve\: Wire.read().
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
Wire.send()\ has\ been\ renamed\ Wire.write().=A Wire.send() \u00faj neve\: Wire.write().
#: FindReplace.java:105
-Wrap\ Around=Teljesen sz\u00f6vegben
+!Wrap\ Around=
#: debug/Uploader.java:213
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Nem megfelel\u0151 mikrokontroller lett kiv\u00e1lasztva. Pontos\u00edtani az Eszk\u00f6z\u00f6k > Alappanelek men\u00fcben lehet.
-#: UpdateCheck.java:108 Preferences.java:76
-Yes=Igen
+#: Preferences.java:77 UpdateCheck.java:108
+!Yes=
-#: Sketch.java:1078
-You\ can't\ fool\ me=Ne bolondozzon velem
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nem lehet azonos n\u00e9ven a .cpp \u00e1llom\u00e1ny, mint a Sketch.
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nem nevezhet\u0151 \u00e1t a Sketch, mert l\u00e9tezik a "{0}"\nnev\u0171 .cpp \u00e1llom\u00e1ny.
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Sketch nem menthet\u0151, mint "{0}"\nmert m\u00e1r van ilyen .cpp \u00e1llom\u00e1ny.
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sketch nem menthet\u0151 a mapp\u00e1ba.\n\u00cdgy egy v\u00e9gtelen t\u00f6rt\u00e9nett\u00e9 alakulna.
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
-#: Base.java:1602
-You\ forgot\ your\ sketchbook=Felejtsd el a SketchBook-ot
+#: Base.java:1888
+You\ forgot\ your\ sketchbook=Felejtsd el a SketchBook-odat
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Meghaladtad az egy napra jut\u00f3 \u00faj Sketch-ek l\u00e9trehoz\u00e1si\n sz\u00e1m\u00e1t. Nem k\u00e9ne s\u00e9t\u00e1lni egyet - pihen\u00e9s\u00fcl?
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Meghaladtad az egy napra jut\u00f3 \u00faj Sketch-ek l\u00e9trehoz\u00e1si\\n\nsz\u00e1mot. Nem k\u00e9ne s\u00e9t\u00e1lni egyet - pihen\u00e9s\u00fcl?
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
!ZIP\ files\ or\ folders=
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" nem megfelel\u0151 kiterjeszt\u00e9s.
+".{0}"\ is\ not\ a\ valid\ extension.=\ ".{0}" nem megfelel\u0151 kiterjeszt\u00e9s.
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=A {0} nem felismerhet\u0151 karaktert tartalmaz. Ha a k\u00f3d r\u00e9gebbi verzi\u00f3j\u00fa Processing-gel k\u00e9sz\u00fclt, akkor az Eszk\u00f6z\u00f6k -> Bet\u00f6lt\u00e9skor autoform\u00e1z\u00e1s men\u00fcpont megoldja az UTF-8 k\u00f3dol\u00e1st. Ha m\u00e9gsem, akkor a hib\u00e1s karaktert ki kell t\u00f6r\u00f6lni az \u00e1llom\u00e1nyb\u00f3l.
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAz Arduino-0019 \u00f3ta az Ethernet f\u00fcggv\u00e9nyek kapcsol\u00f3dnak az SPI f\u00fcggv\u00e9nyekhez.\nEz \u00edgy haszn\u00e1lhat\u00f3, vagy m\u00e1sik f\u00fcggv\u00e9ny alkalmazhat\u00f3 az SPI kezel\u00e9s\u00e9re.\n\n
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nAz Arduino 1.0 alatt a 'BYTE' kulcssz\u00f3 nem t\u00e1mogatott.\nHelyette a Serial.write() haszn\u00e1lhat\u00f3.\n\n
+#: debug/Compiler.java:415
+\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nAz Arduino 1.0 alatt a 'BYTE' kulcssz\u00f3 nem t\u00e1mogatott.\nHelyette a Serial.write() haszn\u00e1lhat\u00f3.\\n\\n
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nAz Arduino 1.0-ban az Ethernet f\u00fcggv\u00e9ny Client oszt\u00e1ly \u00faj neve\: EthernetClient.\n\n
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nAz Arduino 1.0-ban, az Ethernet f\u00fcggv\u00e9ny Server oszt\u00e1lya EthernetServer-re v\u00e1ltozott.\n\n
+#: debug/Compiler.java:421
+\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nA Server f\u00fcggv\u00e9nyoszt\u00e1ly EthernetServer n\u00e9vre hallgat.\n\n
-#: ../../../processing/app/debug/Compiler.java:451
-!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+#: debug/Compiler.java:433
+\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nAz Arduino 1.0-ban az Ethernet f\u00fcggv\u00e9ny Udp oszt\u00e1ly \u00faj neve\: EthernetUdp.\n\n
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nAz Arduino 1.0-ban a Wire.receive() funkci\u00f3 \u00fan neve\: Wire.read(), az egy\u00e9b f\u00fcggv\u00e9nyekkel anal\u00f3g m\u00f3don.\n\n
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nAz Arduino 1.0-ban a Wire.send() funkci\u00f3 \u00fan neve\: Wire.write(), az egy\u00e9b f\u00fcggv\u00e9nyekkel anal\u00f3g m\u00f3don.\n\n
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
-!baud=
+#: SerialMonitor.java:130 SerialMonitor.java:133
+baud=baud
-#: Preferences.java:373
-compilation\ =ford\u00edt\u00e1skor
+#: Preferences.java:389
+compilation\ =ford\u00edt\u00e1skor
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
-createNewFile()\ returned\ false=a createNewFile() hib\u00e1t jelzett
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
+#: Base.java:2090
environment=k\u00f6rnyezet
-#: Editor.java:1094
-http\://arduino.cc/=http\://arduino.cc/
+#: Editor.java:1108
+!http\://arduino.cc/=
#: ../../../processing/app/debug/Compiler.java:49
!http\://github.com/arduino/Arduino/issues=
#: UpdateCheck.java:118
-http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
+!http\://www.arduino.cc/en/Main/Software=
#: UpdateCheck.java:53
-http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
+!http\://www.arduino.cc/latest.txt=
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=hib\u00e1s fontm\u00e9ret kihagy\u00e1sa\: {0}
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
-name\ is\ null=a n\u00e9v\: \u00fcres(nincs megadva)
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer t\u00fal kicsi {0} byte befogad\u00e1s\u00e1ra \u00e9s ide\u00e9rtve a {1} karaktert
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: bels\u0151 hiba... K\u00f3d nem tal\u00e1lhat\u00f3
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
-#: Editor.java:923
-serialMenu\ is\ null=\u00dcres a serialMen\u00fc
+#: Editor.java:932
+!serialMenu\ is\ null=
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=kiv\u00e1lasztott {0} port nem el\u00e9rhet\u0151 vagy az alappanel nincs csatlakoztatva
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
+#: Preferences.java:391
upload=felt\u00f6lt\u00e9skor
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.={0} file a Sketch-hez hozz\u00e1ad\u00e1sra ker\u00fclt.
+!{0}\ files\ added\ to\ the\ sketch.=
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
{0}\ returned\ {1}={0} eredm\u00e9nye {1}
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
-{0}.html={0}.html
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_hy.po b/app/src/processing/app/i18n/Resources_hy.po
new file mode 100644
index 000000000..1c4dadb50
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_hy.po
@@ -0,0 +1,1857 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+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: 2013-09-10 10:35+0000\n"
+"Last-Translator: cmaglie Closing the last open sketch will quit Arduino."
+msgstr ""
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr ""
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr ""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr ""
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr ""
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr ""
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr ""
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr "Արդուինոյի մասին"
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr "Ավելացնել նիշք․․․"
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr ""
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr ""
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr ""
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr "Արաբերեն"
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr ""
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr ""
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr ""
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr ""
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr ""
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr ""
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr ""
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr ""
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr ""
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr ""
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr ""
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr ""
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr ""
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr "Զննել"
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr ""
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr ""
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr "Չեղարկել"
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr ""
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr "Կատալոներեն"
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr ""
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr "Փակել"
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr ""
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr ""
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr ""
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr ""
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr "Պատճենել"
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr ""
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr ""
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr ""
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr ""
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr ""
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr ""
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr ""
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr ""
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr "{0}-ն չեղավ ջնջել"
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr ""
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr ""
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr ""
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr ""
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr ""
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr ""
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr ""
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr ""
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr ""
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr ""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr ""
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr ""
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr ""
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr "{0}-ն չեղավ փոխարինել"
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr ""
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr ""
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr ""
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr ""
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr ""
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr "Դանիերեն"
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr ""
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr ""
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr ""
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr ""
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr "Չհիշել"
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr ""
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr ""
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr ""
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr ""
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr "Հոլանդերեն"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr "Խմբագրել"
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
+msgid "English"
+msgstr "Անգլերեն"
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr "Միջավայր"
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr "Սխալ"
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr ""
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr ""
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr ""
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr ""
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr ""
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr ""
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr ""
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr ""
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr ""
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr "Էստոներեն"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr "Օրինակներ"
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr ""
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr ""
+
+#: Editor.java:491
+msgid "File"
+msgstr "Նիշք"
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr ""
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr "Գտնել"
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr "Գտնել մյուսը"
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr "Գտնել նախկինը"
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr ""
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr "Գտնել․․․"
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr ""
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr ""
+
+#: Preferences.java:95
+msgid "French"
+msgstr "Ֆրանսերեն"
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr "Հաճախ տրվող հարցեր"
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr "Գալիսերեն"
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr ""
+
+#: Preferences.java:97
+msgid "German"
+msgstr "Գերմաներեն"
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr "Հունարեն"
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr ""
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr ""
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr ""
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr ""
+
+#: Editor.java:1015
+msgid "Help"
+msgstr "Օգնություն"
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr ""
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr ""
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr ""
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr "Հունգարերեն"
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr ""
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr ""
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr ""
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr ""
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr ""
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr "Ինդոնեզերեն"
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr ""
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr "Իտալերեն"
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr "Ճապոներեն"
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr "Կորեերեն"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "Լատվերեն"
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr "Լիտվաներեն"
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr ""
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr ""
+
+#: Base.java:2112
+msgid "Message"
+msgstr "Հաղորդագրություն"
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr ""
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr ""
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr "Տեղափոխել"
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr "Նոր"
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr "Նոր խմբագրիչ պատուհան"
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr ""
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr ""
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr "Ոչ"
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr ""
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr ""
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr ""
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr ""
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr ""
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr ""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr ""
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr "Չէ"
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr ""
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr "Լավ"
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr ""
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr "Բացել"
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr ""
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr ""
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr "Բացել այլ պատուհանում"
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr "Բացել․․․"
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr ""
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr "Փակցնել"
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr "Պարսկերեն"
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr ""
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr "Լեհերեն"
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr ""
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr "Նախկին"
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr ""
+
+#: Editor.java:571
+msgid "Print"
+msgstr ""
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr ""
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr ""
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr ""
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr ""
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr ""
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr ""
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr ""
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr ""
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr "Ծրագրավորող"
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr "Լքել"
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr ""
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr ""
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr ""
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr "Փոխարինել"
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr "Փոխարինել և գտնել"
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr "Բոլորը փոխարինել"
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr ""
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr ""
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr ""
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr "Հիշել"
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr "Հիշել որպես․․․"
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr ""
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr ""
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr ""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr ""
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr "Հիշում․․․"
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr ""
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr "Ընտրել բոլորը"
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr ""
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr ""
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr "Ուղարկել"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr ""
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr ""
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr ""
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr ""
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr ""
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr ""
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr ""
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr ""
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr ""
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr ""
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr ""
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr ""
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr ""
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr ""
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr ""
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr ""
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr ""
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr "Համակարգի լռելյայն"
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr ""
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr ""
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr ""
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr ""
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr ""
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr ""
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr ""
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr ""
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr ""
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr ""
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr ""
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr ""
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr ""
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr ""
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr ""
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr ""
+
+#: Editor.java:663
+msgid "Tools"
+msgstr "Գործիքներ"
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr ""
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr "Հետ շրջել"
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr ""
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr "Թարմացում"
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr "Ներբեռնել"
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr ""
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr ""
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr "Ներբեռնում․․․"
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr ""
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr "Ստուգել"
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr ""
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr ""
+
+#: Base.java:2128
+msgid "Warning"
+msgstr "Ուշադրություն"
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr ""
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr ""
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr ""
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr ""
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr "Այո"
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr ""
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr ""
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr ""
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr ""
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr ""
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr ""
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr ""
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr ""
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr ""
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr ""
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr "միջավայր"
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr ""
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr ""
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr ""
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr ""
+
+#: Base.java:2080
+msgid "index.html"
+msgstr ""
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr ""
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr ""
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr ""
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr ""
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr ""
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr ""
+
+#: Preferences.java:391
+msgid "upload"
+msgstr ""
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr ""
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr ""
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr ""
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_hy.properties b/app/src/processing/app/i18n/Resources_hy.properties
new file mode 100644
index 000000000..76e55dae7
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_hy.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+About\ Arduino=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0575\u056b \u0574\u0561\u057d\u056b\u0576
+
+#: Editor.java:650
+Add\ File...=\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u056b\u0577\u0584\u2024\u2024\u2024
+
+#: Base.java:963
+!Add\ Library...=
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
+
+#: Preferences.java:85
+Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576
+
+#: Preferences.java:86
+!Aragonese=
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+Browse=\u0536\u0576\u0576\u0565\u056c
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+Cancel=\u0549\u0565\u0572\u0561\u0580\u056f\u0565\u056c
+
+#: Sketch.java:455
+!Cannot\ Rename=
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+Catalan=\u053f\u0561\u057f\u0561\u056c\u0578\u0576\u0565\u0580\u0565\u0576
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+Close=\u0553\u0561\u056f\u0565\u056c
+
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
+
+#: EditorConsole.java:152
+!Console\ Error=
+
+#: Editor.java:1157 Editor.java:2707
+Copy=\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c
+
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+Could\ not\ delete\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u057b\u0576\u057b\u0565\u056c
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+!Could\ not\ remove\ old\ version\ of\ {0}=
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+Could\ not\ replace\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+!Cut=
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+Danish=\u0534\u0561\u0576\u056b\u0565\u0580\u0565\u0576
+
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
+
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+Don't\ Save=\u0549\u0570\u056b\u0577\u0565\u056c
+
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
+
+#: Editor.java:2564
+!Done\ printing.=
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+Dutch=\u0540\u0578\u056c\u0561\u0576\u0564\u0565\u0580\u0565\u0576
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+Edit=\u053d\u0574\u0562\u0561\u0563\u0580\u0565\u056c
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+English=\u0531\u0576\u0563\u056c\u0565\u0580\u0565\u0576
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+Environment=\u0544\u056b\u057b\u0561\u057e\u0561\u0575\u0580
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=\u054d\u056d\u0561\u056c
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+!Error\ opening\ serial\ port\ ''{0}''.=
+
+#: Preferences.java:277
+!Error\ reading\ preferences=
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+!Error\ while\ printing.=
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+Estonian=\u0537\u057d\u057f\u0578\u0576\u0565\u0580\u0565\u0576
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+Examples=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+File=\u0546\u056b\u0577\u0584
+
+#: Preferences.java:94
+!Filipino=
+
+#: FindReplace.java:124 FindReplace.java:127
+Find=\u0533\u057f\u0576\u0565\u056c
+
+#: Editor.java:1249
+Find\ Next=\u0533\u057f\u0576\u0565\u056c \u0574\u0575\u0578\u0582\u057d\u0568
+
+#: Editor.java:1259
+Find\ Previous=\u0533\u057f\u0576\u0565\u056c \u0576\u0561\u056d\u056f\u056b\u0576\u0568
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+Find...=\u0533\u057f\u0576\u0565\u056c\u2024\u2024\u2024
+
+#: FindReplace.java:80
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+French=\u0556\u0580\u0561\u0576\u057d\u0565\u0580\u0565\u0576
+
+#: Editor.java:1097
+Frequently\ Asked\ Questions=\u0540\u0561\u0573\u0561\u056d \u057f\u0580\u057e\u0578\u0572 \u0570\u0561\u0580\u0581\u0565\u0580
+
+#: Preferences.java:96
+Galician=\u0533\u0561\u056c\u056b\u057d\u0565\u0580\u0565\u0576
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+German=\u0533\u0565\u0580\u0574\u0561\u0576\u0565\u0580\u0565\u0576
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+Greek=\u0540\u0578\u0582\u0576\u0561\u0580\u0565\u0576
+
+#: Base.java:2085
+!Guide_Environment.html=
+
+#: Base.java:2071
+!Guide_MacOSX.html=
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+!Guide_Windows.html=
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+Help=\u0555\u0563\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576
+
+#: Preferences.java:99
+!Hindi=
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+Hungarian=\u0540\u0578\u0582\u0576\u0563\u0561\u0580\u0565\u0580\u0565\u0576
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+!Import\ Library...=
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
+
+#: Preferences.java:101
+Indonesian=\u053b\u0576\u0564\u0578\u0576\u0565\u0566\u0565\u0580\u0565\u0576
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+Italian=\u053b\u057f\u0561\u056c\u0565\u0580\u0565\u0576
+
+#: Preferences.java:103
+Japanese=\u0543\u0561\u057a\u0578\u0576\u0565\u0580\u0565\u0576
+
+#: Preferences.java:104
+Korean=\u053f\u0578\u0580\u0565\u0565\u0580\u0565\u0576
+
+#: Preferences.java:105
+Latvian=\u053c\u0561\u057f\u057e\u0565\u0580\u0565\u0576
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+Lithuaninan=\u053c\u056b\u057f\u057e\u0561\u0576\u0565\u0580\u0565\u0576
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+Message=\u0540\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+Moving=\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+New=\u0546\u0578\u0580
+
+#: EditorToolbar.java:46
+New\ Editor\ Window=\u0546\u0578\u0580 \u056d\u0574\u0562\u0561\u0563\u0580\u056b\u0579 \u057a\u0561\u057f\u0578\u0582\u0570\u0561\u0576
+
+#: EditorHeader.java:292
+!New\ Tab=
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+!Next\ Tab=
+
+#: Preferences.java:78 UpdateCheck.java:108
+No=\u0548\u0579
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+Nope=\u0549\u0567
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=\u053c\u0561\u057e
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+Open=\u0532\u0561\u0581\u0565\u056c
+
+#: Editor.java:2688
+!Open\ URL=
+
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
+
+#: EditorToolbar.java:46
+Open\ in\ Another\ Window=\u0532\u0561\u0581\u0565\u056c \u0561\u0575\u056c \u057a\u0561\u057f\u0578\u0582\u0570\u0561\u0576\u0578\u0582\u0574
+
+#: Base.java:903 Editor.java:501
+Open...=\u0532\u0561\u0581\u0565\u056c\u2024\u2024\u2024
+
+#: Editor.java:563
+!Page\ Setup=
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+Paste=\u0553\u0561\u056f\u0581\u0576\u0565\u056c
+
+#: Preferences.java:109
+Persian=\u054a\u0561\u0580\u057d\u056f\u0565\u0580\u0565\u0576
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+!Please\ install\ JDK\ 1.5\ or\ later=
+
+#: Preferences.java:110
+Polish=\u053c\u0565\u0570\u0565\u0580\u0565\u0576
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
+
+#: FindReplace.java:123 FindReplace.java:128
+Previous=\u0546\u0561\u056d\u056f\u056b\u0576
+
+#: EditorHeader.java:326
+!Previous\ Tab=
+
+#: Editor.java:571
+!Print=
+
+#: Editor.java:2571
+!Printing\ canceled.=
+
+#: Editor.java:2547
+!Printing...=
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+!Problem\ Opening\ URL=
+
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+Programmer=\u053e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572
+
+#: Base.java:783 Editor.java:593
+Quit=\u053c\u0584\u0565\u056c
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+!Rename=
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+Replace=\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c
+
+#: FindReplace.java:122 FindReplace.java:129
+Replace\ &\ Find=\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c \u0587 \u0563\u057f\u0576\u0565\u056c
+
+#: FindReplace.java:120 FindReplace.java:131
+Replace\ All=\u0532\u0578\u056c\u0578\u0580\u0568 \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+!Replace\ with\:=
+
+#: Preferences.java:113
+!Romanian=
+
+#: Preferences.java:114
+!Russian=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+Save=\u0540\u056b\u0577\u0565\u056c
+
+#: Editor.java:537
+Save\ As...=\u0540\u056b\u0577\u0565\u056c \u0578\u0580\u057a\u0565\u057d\u2024\u2024\u2024
+
+#: Editor.java:2317
+!Save\ Canceled.=
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
+
+#: Editor.java:2270 Editor.java:2308
+Saving...=\u0540\u056b\u0577\u0578\u0582\u0574\u2024\u2024\u2024
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+Select\ All=\u0538\u0576\u057f\u0580\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+!Settings\ issues=
+
+#: Editor.java:641
+!Show\ Sketch\ Folder=
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+!Sketch=
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
+
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
+
+#: Sketch.java:720
+!Sketch\ is\ read-only=
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+!Sketchbook\ folder\ disappeared=
+
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+System\ Default=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+!Time\ for\ a\ Break=
+
+#: Editor.java:663
+Tools=\u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+Undo=\u0540\u0565\u057f \u0577\u0580\u057b\u0565\u056c
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+Update=\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+Upload=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+Uploading...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u2024\u2024\u2024
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+Verify=\u054d\u057f\u0578\u0582\u0563\u0565\u056c
+
+#: Editor.java:609
+!Verify\ /\ Compile=
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
+Warning=\u0548\u0582\u0577\u0561\u0564\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+Yes=\u0531\u0575\u0578
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+environment=\u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+!index.html=
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+!platforms.html=
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_id.properties b/app/src/processing/app/i18n/Resources_id.properties
deleted file mode 100644
index 8341db885..000000000
--- a/app/src/processing/app/i18n/Resources_id.properties
+++ /dev/null
@@ -1,1230 +0,0 @@
-# Indonesian translations for the Arduino IDE.
-# Copyright (C) 2012
-# This file is distributed under the same license as the Arduino IDE package.
-# Rininta Andari Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Menutup sketsa aktif yang terakhir akan menghentikan Arduino.
-
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Jika anda tidak menyimpan, perubahan anda akan hilang.
-
-#: Sketch.java:402
-#, java-format
-A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Sebuah berkas bernama "{0}" sudah ada di "{1}"
-
-#: Editor.java:2122
-#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Sebuah map bernama "{0}" sudah ada. Tidak dapat membuka sketsa.
-
-#: ../../../processing/app/Base.java:2894
-#, java-format
-!A\ library\ named\ {0}\ already\ exists=
-
-#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Sebuah versi baru Arduino telah tersedia,\napakah anda ingin mengunjungi halaman unduh Arduino?
-
-#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Sebuah masalah muncul ketika mencoba membuka\nberkas yang digunakan untuk menyimpan keluaran konsol.
-
-#: Editor.java:1102
-About\ Arduino=Tentang Arduino
-
-#: Editor.java:643
-Add\ File...=Tambah Berkas...
-
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
-
-#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Sebuah kesalahan muncul ketika mencoba memperbaiki pengkodean berkas.\nJangan mencoba menyimpan sketsa ini karena dapat menimpa\nversi lama. Gunakan Buka untuk kembali membuka sketsa dan coba lagi.\n
-
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Kesalahan tak dikenal muncul ketika mencoba memuat \nkode spesifik platform untuk mesin anda.
-
-#: Preferences.java:84
-!Arabic=
-
-#: Preferences.java:85
-!Aragonese=
-
-#: tools/Archiver.java:48
-Archive\ Sketch=Arsipkan Sketsa
-
-#: tools/Archiver.java:109
-Archive\ sketch\ as\:=Arsipkan sketsa sebagai\:
-
-#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=Pengarsipan sketsa dibatalkan.
-
-#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Pengarsipan sketsa telah dibatalkan karena\nsketsa tidak dapat menyimpan dengan benar.
-
-#: ../../../processing/app/I18n.java:83
-!Arduino\ ARM\ (32-bits)\ Boards=
-
-#: ../../../processing/app/I18n.java:82
-!Arduino\ AVR\ Boards=
-
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino tidak dapat berfungsi karena tidak bisa\nmembuat sebuah map untuk menyimpan pengaturan anda.
-
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino tidak dapat berjalan karena tidak bisa\nmembuat sebuah map untuk menyimpan buku sketsa anda.
-
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino membutuhkan JDK lengkap (tidak hanya JRE)\nuntuk dapat berjalan. Harap pasang JDK 1.5 atau yang lebih baru.\nInformasi lebih lanjut dapat ditemukan di referensi.
-
-#: ../../../processing/app/EditorStatus.java:471
-!Arduino\:\ =
-
-#: Sketch.java:592
-#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Apakah anda yakin ingin menghapus "{0}"?
-
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Apakah anda yakin ingin menghapus sketsa ini?
-
-#: tools/AutoFormat.java:91
-Auto\ Format=Format Otomatis
-
-#: tools/AutoFormat.java:931
-Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kurawal kiri.
-
-#: tools/AutoFormat.java:922
-Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kiri.
-
-#: tools/AutoFormat.java:928
-Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kurawal kanan.
-
-#: tools/AutoFormat.java:919
-Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kanan.
-
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=Format Otomatis selesai.
-
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=Asosiasikan otomatis berkas .ino dengan Arduino
-
-#: SerialMonitor.java:110
-Autoscroll=Scroll otomatis
-
-#: Editor.java:2572
-#, java-format
-Bad\ error\ line\:\ {0}=Baris kesalahan buruk\: {0}
-
-#: Editor.java:2089
-Bad\ file\ selected=Berkas buruk dipilih
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Editor.java:682
-Board=Papan
-
-#: ../../../processing/app/debug/TargetBoard.java:42
-#, java-format
-!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
-
-#: ../../../processing/app/EditorStatus.java:472
-!Board\:\ =
-
-#: SerialMonitor.java:112
-Both\ NL\ &\ CR=Keduanya NL & CR
-
-#: Preferences.java:80
-Browse=Navigasi
-
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=Map Bangun hilang atau tidak dapat ditulis
-
-#: ../../../processing/app/Preferences.java:80
-!Bulgarian=
-
-#: Editor.java:699
-Burn\ Bootloader=Bakar Bootloader
-
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Membakar bootloader ke Papan I/O (ini akan berlangsung beberapa saat)...
-
-#: ../../../processing/app/Base.java:368
-!Can't\ open\ source\ sketch\!=
-
-#: ../../../processing/app/Preferences.java:92
-!Canadian\ French=
-
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
-Cancel=Batalkan
-
-#: Sketch.java:459
-Cannot\ Rename=Tidak dapat mengubah nama
-
-#: SerialMonitor.java:112
-Carriage\ return=Bawaan kembali
-
-#: Preferences.java:86
-Catalan=Bahasa Katalan
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=Periksa pembaruan ketika program dimulai
-
-#: Preferences.java:87
-Chinese\ Simplified=Bahasa Cina Sederhana
-
-#: Preferences.java:88
-!Chinese\ Traditional=
-
-#: Editor.java:514 Editor.java:1977
-Close=Tutup
-
-#: Editor.java:1194 Editor.java:2702
-Comment/Uncomment=Beri komentar/Tidak beri komentar
-
-#: debug/Uploader.java:54 debug/Compiler.java:43
-#, java-format
-Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kesalahan kompilator, harap kirim kode ini ke {0}
-
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Menyusun sketsa...
-
-#: EditorConsole.java:152
-Console\ Error=Kesalahan Konsol
-
-#: Editor.java:1143 Editor.java:2660
-Copy=Salin
-
-#: Editor.java:1163 Editor.java:2676
-Copy\ as\ HTML=Salin sebagai HTML
-
-#: ../../../processing/app/EditorStatus.java:456
-!Copy\ error=
-
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=Salin untuk Forum
-
-#: Sketch.java:1093
-#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Tidak dapat menambahkan ''{0}'' ke sketsa.
-
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=Tidak dapat menyalin ke lokasi yang tepat.
-
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=Tidak dapat membuat map sketsa.
-
-#: Editor.java:2159
-Could\ not\ create\ the\ sketch.=Tidak dapat membuat sketsa.
-
-#: Sketch.java:621
-#, java-format
-Could\ not\ delete\ "{0}".=Tidak dapat menghapus "{0}".
-
-#: Sketch.java:1070
-#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Tidak dapat menghapus berkas ''{0}'' yang ada.
-
-#: Base.java:2247 Base.java:2270
-#, java-format
-Could\ not\ delete\ {0}=Tidak dapat menghapus {0}
-
-#: ../../../processing/app/debug/TargetPlatform.java:74
-#, java-format
-!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
-
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
-#, java-format
-!Could\ not\ find\ tool\ {0}=
-
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
-#, java-format
-!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-
-#: Base.java:1648
-#, java-format
-Could\ not\ open\ the\ URL\n{0}=Tidak dapat membuka URL\n{0}
-
-#: Base.java:1672
-#, java-format
-Could\ not\ open\ the\ folder\n{0}=Tidak dapat membuka map\n{0}
-
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Tidak dapat kembali menyimpan sketsa dengan benar. Anda mungkin berada dalam kesulitan pada saat ini,\ndan mungkin sudah saatnya untuk menyalin dan menyisipkan kode anda ke editor teks lain.
-
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=Tidak dapat kembali menyimpan sketsa
-
-#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Tidak dapat membaca pengaturan tema warna.Anda harus memasang ulang Processing.
-
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Tidak dapat membaca pengaturan standar.\nAnda harus memasang ulang Arduino.
-
-#: Preferences.java:242
-#, java-format
-Could\ not\ read\ preferences\ from\ {0}=Tidak dapat membaca preferensi dari {0}
-
-#: Base.java:2196
-#, java-format
-Could\ not\ remove\ old\ version\ of\ {0}=Tidak dapat menghilangkan versi lama {0}
-
-#: Sketch.java:487 Sketch.java:532
-#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=Tidak dapat mengubah nama "{0}" ke "{1}"
-
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=Tidak dapat mengubah nama sketsa. (0)
-
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=Tidak dapat mengubah nama sketsa. (1)
-
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=Tidak dapat mengubah nama sketsa. (2)
-
-#: Base.java:2206
-#, java-format
-Could\ not\ replace\ {0}=Tidak dapat menggantikan {0}
-
-#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=Tidak dapat mengarsipkan sketsa
-
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=Tidak dapat menentukan ukuran program\: {0}
-
-#: Sketch.java:620
-Couldn't\ do\ it=Tidak dapat melakukannya
-
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
-!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
-
-#: ../../../processing/app/Preferences.java:82
-!Croatian=
-
-#: Editor.java:1135 Editor.java:2652
-Cut=Potong
-
-#: ../../../processing/app/Preferences.java:83
-!Czech=
-
-#: Preferences.java:89
-Danish=Bahasa Denmark
-
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Kurangi Indentasi
-
-#: Sketch.java:595 EditorHeader.java:314
-Delete=Hapus
-
-#: debug/Uploader.java:203
-!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
-
-#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=Hapus semua perubahan dan muat ulang sketsa?
-
-#: Editor.java:2017
-Don't\ Save=Jangan Simpan
-
-#: Editor.java:2228 Editor.java:2264
-Done\ Saving.=Selesai Menyimpan.
-
-#: Editor.java:2463
-Done\ burning\ bootloader.=Selesai membakar bootloader.
-
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=Selesai menyusun.
-
-#: Editor.java:2517
-Done\ printing.=Selesai mencetak.
-
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=Selesai mengunggah.
-
-#: Preferences.java:90
-Dutch=Bahasa Belanda
-
-#: Editor.java:1116
-Edit=Edit
-
-#: Preferences.java:354
-Editor\ font\ size\:\ =Editor ukuran huruf\:
-
-#: Preferences.java:337
-!Editor\ language\:\ =
-
-#: Preferences.java:91
-English=Bahasa Inggris
-
-#: Editor.java:1049
-Environment=Lingkungan
-
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
-Error=Kesalahan
-
-#: Sketch.java:1069 Sketch.java:1092
-Error\ adding\ file=Kesalahan dalam menambahkan file
-
-#: debug/Compiler.java:426
-Error\ compiling.=Kesalahan dalam menyusun.
-
-#: Base.java:1433
-Error\ getting\ the\ Arduino\ data\ folder.=Kesalahan dalam mendapatkan map data Arduino.
-
-#: Serial.java:567
-#, java-format
-Error\ inside\ Serial.{0}()=Kesalahan di dalam Serial.{0}()
-
-#: ../../../processing/app/Base.java:1232
-!Error\ loading\ libraries=
-
-#: ../../../processing/app/debug/TargetPlatform.java:95
-#: ../../../processing/app/debug/TargetPlatform.java:106
-#: ../../../processing/app/debug/TargetPlatform.java:117
-#, java-format
-!Error\ loading\ {0}=
-
-#: Serial.java:154
-#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=Kesalahan dalam membuka serial port ''{0}''.
-
-#: Preferences.java:261
-Error\ reading\ preferences=Kesalahan dalam membaca preferensi
-
-#: Preferences.java:263
-#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Kesalahan dalam membaca berkas preferensi. Harap hapus (atau pindahkan)\n{0} dan mulai ulang Arduino.
-
-#: ../../../cc/arduino/packages/DiscoveryManager.java:25
-!Error\ starting\ discovery\ method\:\ =
-
-#: ../../../processing/app/Serial.java:125
-#, java-format
-!Error\ touching\ serial\ port\ ''{0}''.=
-
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=Kesalahan ketika membakar bootloader.
-
-#: ../../../processing/app/Editor.java:2555
-!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
-
-#: SketchCode.java:83
-#, java-format
-Error\ while\ loading\ code\ {0}=Kesalahan ketika memuat kode {0}
-
-#: Editor.java:2520
-Error\ while\ printing.=Kesalahan ketika mencetak.
-
-#: ../../../processing/app/Editor.java:2409
-#: ../../../processing/app/Editor.java:2449
-!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-
-#: Preferences.java:92
-!Estonian=
-
-#: Editor.java:509
-Examples=Contoh
-
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=Ekspor dibatalkan, perubahan harus disimpan terlebih dahulu.
-
-#: Base.java:1814
-FAQ.html=FAQ.html
-
-#: Editor.java:484
-File=Berkas
-
-#: Preferences.java:94
-Filipino=Bahasa Filipina
-
-#: FindReplace.java:124 FindReplace.java:127
-Find=Cari
-
-#: Editor.java:1235
-Find\ Next=Cari Berikutnya
-
-#: Editor.java:1245
-Find\ Previous=Cari Sebelumnya
-
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=Cari di Referensi
-
-#: Editor.java:1220
-Find...=Cari...
-
-#: FindReplace.java:80
-Find\:=Cari\:
-
-#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
-#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=Perbaiki Pengkodean & Muat Ulang
-
-#: ../../../processing/app/Base.java:2057
-!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
-!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-
-#: Preferences.java:93
-French=Bahasa Perancis
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Pertanyaan yang Sering Diajukan
-
-#: Preferences.java:95
-Galician=Bahasa Galisia
-
-#: ../../../processing/app/Preferences.java:94
-!Georgian=
-
-#: Preferences.java:96
-German=Bahasa Jerman
-
-#: Editor.java:1041
-Getting\ Started=Memulai
-
-#: Preferences.java:97
-Greek=Bahasa Yunani
-
-#: Base.java:1799
-Guide_Environment.html=Guide_Environment.html
-
-#: Base.java:1785
-Guide_MacOSX.html=Guide_MacOSX.html
-
-#: Base.java:1809
-Guide_Troubleshooting.html=Guide_Troubleshooting.html
-
-#: Base.java:1787
-Guide_Windows.html=Guide_Windows.html
-
-#: ../../../processing/app/Preferences.java:95
-!Hebrew=
-
-#: Editor.java:1002
-Help=Bantuan
-
-#: ../../../processing/app/Preferences.java:98
-!Hindi=
-
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Bagaimana jika simpan sketsa terlebih dahulu \nsebelum mencoba untuk mengubah namanya?
-
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=Anda Borges sekali
-
-#: Preferences.java:98
-Hungarian=Bahasa Hungaria
-
-#: FindReplace.java:96
-Ignore\ Case=Abaikan Kasus
-
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Mengabaikan nama perpustakaan buruk
-
-#: Base.java:1132
-Ignoring\ sketch\ with\ bad\ name=Mengabaikan sketsa dengan nama buruk
-
-#: Editor.java:629
-Import\ Library...=Impor Perpustakaan...
-
-#: ../../../processing/app/Sketch.java:736
-!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Tambah Indentasi
-
-#: Preferences.java:99
-!Indonesian=
-
-#: ../../../processing/app/Base.java:1204
-#, java-format
-!Invalid\ library\ found\ in\ {0}\:\ {1}=
-
-#: Preferences.java:100
-Italian=Bahasa Italia
-
-#: Preferences.java:101
-Japanese=Bahasa Jepang
-
-#: Preferences.java:102
-!Korean=
-
-#: Preferences.java:103
-Latvian=Bahasa Latvia
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
-
-#: Preferences.java:104
-!Lithuaninan=
-
-#: ../../../processing/app/Sketch.java:1660
-!Low\ memory\ available,\ stability\ problems\ may\ occur=
-
-#: ../../../processing/app/Preferences.java:106
-!Marathi=
-
-#: Base.java:1826
-Message=Pesan
-
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Membutuhkan */ di akhir sebuah /* komentar */
-
-#: Preferences.java:433
-More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Preferensi lebih lanjut dapat diedit langsung pada berkas
-
-#: Editor.java:2109
-Moving=Memindahkan
-
-#: Sketch.java:286
-Name\ for\ new\ file\:=Nama untuk berkas baru\:
-
-#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
-!Network\ upload\ using\ programmer\ not\ supported=
-
-#: Editor.java:486 EditorToolbar.java:41
-New=Baru
-
-#: EditorToolbar.java:46
-New\ Editor\ Window=Jendela Editor Baru
-
-#: EditorHeader.java:292
-New\ Tab=Label Baru
-
-#: SerialMonitor.java:112
-Newline=Baris baru
-
-#: EditorHeader.java:340
-Next\ Tab=Label Berikutnya
-
-#: UpdateCheck.java:108 Preferences.java:77
-No=Tidak
-
-#: debug/Compiler.java:79
-No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Tidak ada papan yang dipilih; harap pilih sebuah papan dari menu Peralatan > Papan.
-
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
-No\ changes\ necessary\ for\ Auto\ Format.=Tidak diperlukan perubahan untuk Format Otomatis.
-
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=Tidak ada berkas yang ditambahkan ke sketsa.
-
-#: Platform.java:167
-No\ launcher\ available=Tidak ada peluncur yang tersedia
-
-#: SerialMonitor.java:112
-No\ line\ ending=Tidak ada akhir baris
-
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Sungguh, sekarang waktunya anda menghirup udara segar.
-
-#: Editor.java:1823
-#, java-format
-No\ reference\ available\ for\ "{0}"=Tidak ada referensi yang tersedia untuk "{0}"
-
-#: ../../../processing/app/Base.java:309
-!No\ valid\ configured\ cores\ found\!\ Exiting...=
-
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Kesalahan tidak fatal ketika mengatur penampilan.
-
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-Nope=Tidak
-
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
-#: ../../../processing/app/Preferences.java:108
-!Norwegian\ Bokm\u00e5l=
-
-#: ../../../processing/app/Sketch.java:1656
-!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=OK
-
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=Satu berkas ditambahkan ke sketsa.
-
-#: EditorToolbar.java:41
-Open=Buka
-
-#: Editor.java:2641
-Open\ URL=Buka URL
-
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=Buka sebuah sketsa Arduino...
-
-#: EditorToolbar.java:46
-Open\ in\ Another\ Window=Buka di Jendela Lain
-
-#: Editor.java:494 Base.java:903
-Open...=Buka...
-
-#: Editor.java:556
-Page\ Setup=Pengaturan Halaman
-
-#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
-!Password\:=
-
-#: Editor.java:1175 Editor.java:2684
-Paste=Rekat
-
-#: Preferences.java:105
-Persian=Bahasa Persia
-
-#: debug/Compiler.java:465
-Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Harap impor perpustakaan SPI dari menu Sketsa > Impor Perpustakaan.
-
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=Harap pasang JDK 1.5 atau yang lebih baru
-
-#: Preferences.java:106
-!Polish=
-
-#: ../../../processing/app/Editor.java:718
-!Port=
-
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
-
-#: Editor.java:576 Preferences.java:279
-Preferences=Preferensi
-
-#: FindReplace.java:123 FindReplace.java:128
-Previous=Sebelumnya
-
-#: EditorHeader.java:326
-Previous\ Tab=Label Sebelumnya
-
-#: Editor.java:564
-Print=Cetak
-
-#: Editor.java:2524
-Printing\ canceled.=Mencetak dibatalkan.
-
-#: Editor.java:2500
-Printing...=Mencetak...
-
-#: Base.java:1671
-Problem\ Opening\ Folder=Masalah Dalam Membuka Map
-
-#: Base.java:1647
-Problem\ Opening\ URL=Masalah Dalam Membuka URL
-
-#: Base.java:220
-Problem\ Setting\ the\ Platform=Masalah Dalam Mengatur Platform
-
-#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
-!Problem\ accessing\ board\ folder\ /www/sd=
-
-#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
-!Problem\ accessing\ files\ in\ folder\ =
-
-#: Base.java:1432
-Problem\ getting\ data\ folder=Masalah dalam mendapatkan map data
-
-#: Sketch.java:1465
-#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=Masalah dalam memindahkan {0} ke map bangun
-
-#: debug/Uploader.java:209
-!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
-
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=Masalah dengan pengubahan nama
-
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing hanya dapat membuka sketsanya sendiri\ndan berkas lainnya yang berakhir dengan .ino atau .pde
-
-#: ../../../processing/app/I18n.java:86
-!Processor=
-
-#: Editor.java:695
-Programmer=Programmer
-
-#: Editor.java:586 Base.java:782
-Quit=Keluar
-
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=Ulang
-
-#: Editor.java:1065
-Reference=Referensi
-
-#: EditorHeader.java:300
-Rename=Ubah Nama
-
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
-Replace=Ganti
-
-#: FindReplace.java:122 FindReplace.java:129
-Replace\ &\ Find=Ganti & Cari
-
-#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=Ganti Semua
-
-#: Sketch.java:1047
-#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=Ganti versi {0} yang ada?
-
-#: FindReplace.java:81
-Replace\ with\:=Ganti dengan\:
-
-#: Preferences.java:109
-Romanian=Bahasa Rumania
-
-#: Preferences.java:110
-!Russian=
-
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
-Save=Simpan
-
-#: Editor.java:530
-Save\ As...=Simpan Sebagai...
-
-#: Editor.java:2270
-Save\ Canceled.=Penyimpanan Dibatalkan.
-
-#: Editor.java:2420
-Save\ changes\ before\ export?=Simpan perubahan sebelum ekspor?
-
-#: Editor.java:1973
-#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Simpan perubahan ke "{0}"?
-
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Simpan map sketsa sebagai...
-
-#: Editor.java:2223 Editor.java:2261
-Saving...=Menyimpan...
-
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=Pilih (atau buat baru) map untuk sketsa...
-
-#: Editor.java:1184 Editor.java:2692
-Select\ All=Pilih Semua
-
-#: ../../../processing/app/Base.java:2845
-!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Pilih sebuah gambar atau berkas data lain untuk disalin ke sketsa anda
-
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=Pilih lokasi buku sketsa baru
-
-#: ../../../processing/app/debug/Compiler.java:146
-!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
-
-#: SerialMonitor.java:93
-Send=Kirim
-
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Serial Monitor
-
-#: Serial.java:147
-#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serial port ''{0}'' telah digunakan. Coba hentikan semua program yang mungkin menggunakannya.
-
-#: ../../../processing/app/Serial.java:121
-#, java-format
-!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-
-#: Serial.java:167
-#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serial port ''{0}'' tidak ditemukan. Apakah anda telah memilih yang tepat dari menu Peralatan > Serial Port?
-
-#: Editor.java:2296
-#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Serial port {0} tidak ditemukan.\nUlang unggah dengan serial port lain?
-
-#: Base.java:1440
-Settings\ issues=Masalah pengaturan
-
-#: Editor.java:634
-Show\ Sketch\ Folder=Tampilkan Map Sketsa
-
-#: ../../../processing/app/EditorStatus.java:468
-!Show\ verbose\ output\ during\ compilation=
-
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =Tampilkan keluaran yang berlebihan ketika\:
-
-#: Editor.java:600
-Sketch=Sketsa
-
-#: Sketch.java:1796
-Sketch\ Disappeared=Sketsa Hilang
-
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=Sketsa Tidak Ada
-
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=Sketsa Hanya-Baca
-
-#: Sketch.java:298
-Sketch\ is\ Untitled=Sketsa tidak berjudul
-
-#: Sketch.java:724
-Sketch\ is\ read-only=Sketsa hanya-baca
-
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketsa terlalu besar; lihat http\://www.arduino.cc/en/Guide/Troubleshooting\#size untuk saran tentang menguranginya.
-
-#: Editor.java:503
-Sketchbook=Buku Sketsa
-
-#: Base.java:257
-Sketchbook\ folder\ disappeared=Map Buku Sketsa hilang
-
-#: Preferences.java:299
-Sketchbook\ location\:=Lokasi buku sketsa\:
-
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Beberapa berkas ditandai "hanya-baca", jadi anda harus\nkembali menyimpan sketsa di lokasi lain,\ndan coba lagi.
-
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Beberapa berkas ditandai "hanya-baca", jadi anda harus\nkembali menyimpan sketsa ini di lokasi lain.
-
-#: Sketch.java:461
-#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Maaf, sebuah sketsa (atau map) bernama "{0}" sudah ada.
-
-#: Preferences.java:111
-Spanish=Bahasa Spanyol
-
-#: Base.java:537
-Sunshine=Cuaca cerah
-
-#: Preferences.java:83
-!System\ Default=
-
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
-
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Kata kunci 'BYTE' tidak lagi didukung.
-
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Kelas Client telah diubah namanya menjadi EthernetClient.
-
-#: debug/Compiler.java:477
-The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Kelas Server telah diubah namanya menjadi EthernetServer.
-
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Kelas Udp telah diubah namanya menjadi EthernetUdp.
-
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Pesan kesalahan akan muncul, bagaimanapun Arduino akan berjalan dengan baik.
-
-#: Editor.java:2100
-#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Berkas "{0}" harus berada di dalam\nsebuah map sketsa bernama "{1}".\nBuatkan map ini, pindahkan berkas, dan lanjutkan?
-
-#: Base.java:1202
-#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Perpustakaan "{0}" tidak dapat digunakan.\nNama perpustakaan hanya dapat terdiri dari huruf dan angka dasar.\n(hanya ASCII dan tanpa spasi, dan tidak dapat diawali dengan sebuah angka).\n
-
-#: Sketch.java:378
-!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
-
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=Nama tidak dapat diawali dengan sebuah periode.
-
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Sketsa yang dipilih tidak lagi ada.\nAnda mungkin perlu memulai ulang Arduino untuk memperbaharui\nmenu buku sketsa.
-
-#: Base.java:1125
-#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Sketsa "{0}" tidak dapat digunakan.\nNama sketsa hanya dapat terdiri dari huruf dan angka dasar\n(hanya ASCII tanpa spasi, dan tidak dapat diawali dengan sebuah angka).\nUntuk menghilangkan pesan ini, hapus sketsa dari\n{1}
-
-#: Sketch.java:1797
-!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
-
-#: Sketch.java:2060
-!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
-
-#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Map sketsa tidak lagi ada.\nArduino akan beralih ke lokasi buku sketsa\nstandar, dan membuat sebuah map buku sketsa baru jika\ndiperlukan. Arduino kemudian akan berhenti berbicara tentang\ndirinya sendiri dari sudut orang ketiga.
-
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Berkas ini telah disalin ke\nlokasi darimana anda mencoba untuk menambahkannya.\nSaya bukan tidak melakukan apa-apa.
-
-#: ../../../processing/app/EditorStatus.java:467
-!This\ report\ would\ have\ more\ information\ with=
-
-#: Base.java:532
-Time\ for\ a\ Break=Waktu untuk Istirahat
-
-#: Editor.java:656
-Tools=Peralatan
-
-#: Editor.java:1057
-Troubleshooting=Pemecahan masalah
-
-#: ../../../processing/app/Preferences.java:117
-!Turkish=
-
-#: ../../../processing/app/Editor.java:2507
-!Type\ board\ password\ to\ access\ its\ console=
-
-#: ../../../processing/app/Sketch.java:1673
-!Type\ board\ password\ to\ upload\ a\ new\ sketch=
-
-#: ../../../processing/app/Preferences.java:118
-!Ukrainian=
-
-#: ../../../processing/app/Editor.java:2524
-#: ../../../processing/app/NetworkMonitor.java:145
-!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
-
-#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
-
-#: ../../../processing/app/Editor.java:2526
-!Unable\ to\ connect\:\ wrong\ password?=
-
-#: ../../../processing/app/Editor.java:2512
-!Unable\ to\ open\ serial\ monitor=
-
-#: Sketch.java:1433
-#, java-format
-Uncaught\ exception\ type\:\ {0}=Jenis pengecualian\: {0} tidak tertangkap
-
-#: Editor.java:1119 Editor.java:1341
-Undo=Batalkan
-
-#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Platform tanpa spesifikasi, tidak ada peluncur yang tersedia.\nUntuk mengaktifkan pembukaan URL atau map, tambahkan sebuah baris \n"launcher\=/path/to/app" ke preferences.txt
-
-#: UpdateCheck.java:111
-Update=Pembaruan
-
-#: Preferences.java:412
-Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Perbaharui berkas sketsa ke ekstensi baru ketika menyimpan (.pde -> .ino)
-
-#: Editor.java:538 EditorToolbar.java:41
-Upload=Unggah
-
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Unggah Menggunakan Programmer
-
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=Unggah dibatalkan.
-
-#: ../../../processing/app/Sketch.java:1678
-!Upload\ cancelled=
-
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=Mengunggah ke Papan I/O...
-
-#: Sketch.java:1661
-Uploading...=Mengunggah...
-
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Gunakan Pilihan Untuk Pencarian
-
-#: Preferences.java:393
-Use\ external\ editor=Gunakan editor eksternal
-
-#: EditorToolbar.java:41 EditorToolbar.java:46
-Verify=Periksa
-
-#: Editor.java:602
-Verify\ /\ Compile=Memeriksa / Menyusun
-
-#: Preferences.java:384
-Verify\ code\ after\ upload=Periksa kode setelah unggah
-
-#: Editor.java:1091
-Visit\ Arduino.cc=Kunjungi Arduino.cc
-
-#: Base.java:1842
-Warning=Peringatan
-
-#: debug/Compiler.java:501
-Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() telah diubah namanya menjadi Wire.read().
-
-#: debug/Compiler.java:495
-Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() telah diubah namanya menjadi Wire.write().
-
-#: FindReplace.java:105
-Wrap\ Around=Membungkus
-
-#: debug/Uploader.java:213
-!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
-
-#: UpdateCheck.java:108 Preferences.java:76
-Yes=Ya
-
-#: Sketch.java:1078
-You\ can't\ fool\ me=Anda tidak dapat membodohi saya
-
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Anda tidak dapat memiliki sebuah berkas .cpp dengan nama yang sama dengan sketsa.
-
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Anda tidak dapat mengubah nama sketsa ke "{0}"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama tersebut.
-
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Anda tidak dapat menyimpan sketsa sebagai "{0}"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama tersebut.
-
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Anda tidak dapat menyimpan sketsa kedalam sebuah map\ndi dalam dirinya sendiri. Ini akan memakan waktu selamanya.
-
-#: Base.java:1602
-You\ forgot\ your\ sketchbook=Anda melupakan buku sketsa anda
-
-#: ../../../processing/app/AbstractMonitor.java:92
-!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Anda telah mencapai batas pemberian nama otomatis sketsa baru\nuntuk hari ini. Bagaimana jika anda pergi jalan-jalan sebagai gantinya?
-
-#: ../../../processing/app/Base.java:2847
-!ZIP\ files\ or\ folders=
-
-#: ../../../processing/app/Base.java:2870
-!Zip\ doesn't\ contain\ a\ library=
-
-#: Sketch.java:368
-#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" bukan ekstensi yang sah.
-
-#: SketchCode.java:258
-#, java-format
-!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
-
-#: debug/Compiler.java:466
-\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nPada Arduino 0019, perpustakaan Ethernet tergantung pada perpustakaan SPI.\nTampaknya anda menggunakannya atau perpustakaan lain yang tergantung pada perpustakaan SPI.\n\n
-
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nPada Arduino 1.0, kata kunci 'BYTE' tidak lagi didukung.\nHarap gunakan Serial.write() sebagai gantinya.\n\n
-
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nPada Arduino 1.0, kelas Client dalam perpustakaan Ethernet telah diubah namanya menjadi EthernetClient.\n\n
-
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nPada Arduino 1.0, kelas Server dalam perpustakaan Ethernet telah diubah namanya menjadi EthernetServer.\n\n
-
-#: ../../../processing/app/debug/Compiler.java:451
-!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nPada Arduino 1.0, fungsi Wire.receive() telah diubah namanya menjadi Wire.read() demi konsistensi dengan perpustakaan lain.\n\n
-
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nPada Arduino 1.0, fungsi Wire.send() telah diubah namanya menjadi Wire.write() demi konsistensi dengan perpustakaan lain.\n\n
-
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
-!baud=
-
-#: Preferences.java:373
-compilation\ =susunan
-
-#: ../../../processing/app/NetworkMonitor.java:111
-!connected\!=
-
-#: Sketch.java:544
-createNewFile()\ returned\ false=createNewFile() kembali salah
-
-#: ../../../processing/app/EditorStatus.java:469
-!enabled\ in\ File\ >\ Preferences.=
-
-#: Base.java:1804
-environment=lingkungan
-
-#: Editor.java:1094
-http\://arduino.cc/=http\://arduino.cc/
-
-#: ../../../processing/app/debug/Compiler.java:49
-!http\://github.com/arduino/Arduino/issues=
-
-#: UpdateCheck.java:118
-http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
-
-#: UpdateCheck.java:53
-http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-
-#: Base.java:1789
-http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-
-#: Preferences.java:609
-#, java-format
-ignoring\ invalid\ font\ size\ {0}=mengabaikan ukuran huruf tidak sah {0}
-
-#: Base.java:1794
-index.html=index.html
-
-#: Editor.java:927 Editor.java:934
-name\ is\ null=name is null
-
-#: Base.java:1804
-platforms.html=platforms.html
-
-#: Serial.java:424
-#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Penyangga byte readBytesUntil() terlalu kecil untuk {0} bytes sampai dengan dan termasuk char {1}
-
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: kesalahan internal.. tidak dapat menemukan kode
-
-#: Editor.java:923
-serialMenu\ is\ null=serialMenu is null
-
-#: debug/Uploader.java:199
-#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=serial port yang dipilih {0} tidak ada atau papan anda tidak terhubung
-
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
-upload=unggah
-
-#: Editor.java:373
-#, java-format
-{0}\ files\ added\ to\ the\ sketch.={0} berkas ditambahkan ke sketsa.
-
-#: debug/Compiler.java:422
-#, java-format
-{0}\ returned\ {1}={0} kembali {1}
-
-#: Editor.java:2166
-#, java-format
-{0}\ |\ Arduino\ {1}={0} | Arduino {1}
-
-#: Editor.java:1826
-#, java-format
-{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_id.po b/app/src/processing/app/i18n/Resources_in.po
similarity index 51%
rename from app/src/processing/app/i18n/Resources_id.po
rename to app/src/processing/app/i18n/Resources_in.po
index 67f157801..88dc4c704 100644
--- a/app/src/processing/app/i18n/Resources_id.po
+++ b/app/src/processing/app/i18n/Resources_in.po
@@ -4,72 +4,65 @@
# Rininta Andari Closing the last open sketch will quit Arduino."
-msgstr ""
-" Menutup sketsa aktif yang terakhir akan menghentikan Arduino."
+msgstr ""
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr ""
-" Jika anda tidak "
-"menyimpan, perubahan anda akan hilang."
+msgstr ""
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "Sebuah berkas bernama \"{0}\" sudah ada di \"{1}\""
+msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr "Sebuah map bernama \"{0}\" sudah ada. Tidak dapat membuka sketsa."
+msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -78,74 +71,64 @@ msgstr ""
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr ""
-"Sebuah versi baru Arduino telah tersedia,\n"
-"apakah anda ingin mengunjungi halaman unduh Arduino?"
+msgstr ""
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr ""
-"Sebuah masalah muncul ketika mencoba membuka\n"
-"berkas yang digunakan untuk menyimpan keluaran konsol."
-
-#: Editor.java:1102
-msgid "About Arduino"
-msgstr "Tentang Arduino"
-
-#: Editor.java:643
-msgid "Add File..."
-msgstr "Tambah Berkas..."
-
-#: ../../../processing/app/Base.java:1102
-msgid "Add Library..."
msgstr ""
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr ""
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Tambah pustaka..."
+
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"Sebuah kesalahan muncul ketika mencoba memperbaiki pengkodean berkas.\n"
-"Jangan mencoba menyimpan sketsa ini karena dapat menimpa\n"
-"versi lama. Gunakan Buka untuk kembali membuka sketsa dan coba lagi.\n"
+msgstr ""
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "Kesalahan tak dikenal muncul ketika mencoba memuat \n"
-"kode spesifik platform untuk mesin anda."
-
-#: Preferences.java:84
-msgid "Arabic"
msgstr ""
#: Preferences.java:85
+msgid "Arabic"
+msgstr ""
+
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Arsipkan Sketsa"
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Arsipkan sketsa sebagai:"
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Pengarsipan sketsa dibatalkan."
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"Pengarsipan sketsa telah dibatalkan karena\n"
-"sketsa tidak dapat menyimpan dengan benar."
+msgstr ""
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -155,129 +138,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"Arduino tidak dapat berfungsi karena tidak bisa\n"
-"membuat sebuah map untuk menyimpan pengaturan anda."
+msgstr ""
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
-"Arduino tidak dapat berjalan karena tidak bisa\n"
-"membuat sebuah map untuk menyimpan buku sketsa anda."
+msgstr ""
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr ""
-"Arduino membutuhkan JDK lengkap (tidak hanya JRE)\n"
-"untuk dapat berjalan. Harap pasang JDK 1.5 atau yang lebih baru.\n"
-"Informasi lebih lanjut dapat ditemukan di referensi."
+msgstr ""
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Apakah anda yakin ingin menghapus \"{0}\"?"
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Apakah anda yakin ingin menghapus sketsa ini?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Format Otomatis"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kurawal kiri."
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kiri."
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kurawal kanan."
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kanan."
+msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "Format Otomatis selesai."
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Asosiasikan otomatis berkas .ino dengan Arduino"
+msgstr ""
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Scroll otomatis"
-
-#: Editor.java:2572
-#, java-format
-msgid "Bad error line: {0}"
-msgstr "Baris kesalahan buruk: {0}"
-
-#: Editor.java:2089
-msgid "Bad file selected"
-msgstr "Berkas buruk dipilih"
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
msgstr ""
-#: Editor.java:682
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Papan"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "Keduanya NL & CR"
+msgstr ""
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Navigasi"
+msgstr ""
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "Map Bangun hilang atau tidak dapat ditulis"
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "Bakar Bootloader"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Membakar bootloader ke Papan I/O (ini akan berlangsung beberapa saat)..."
+msgstr ""
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -287,103 +279,119 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
-msgstr "Batalkan"
+msgstr ""
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr "Tidak dapat mengubah nama"
+msgstr ""
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Bawaan kembali"
-
-#: Preferences.java:86
-msgid "Catalan"
-msgstr "Bahasa Katalan"
-
-#: Preferences.java:403
-msgid "Check for updates on startup"
-msgstr "Periksa pembaruan ketika program dimulai"
+msgstr ""
#: Preferences.java:87
-msgid "Chinese Simplified"
-msgstr "Bahasa Cina Sederhana"
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
-msgstr "Tutup"
+msgstr ""
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "Beri komentar/Tidak beri komentar"
+msgstr ""
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Kesalahan kompilator, harap kirim kode ini ke {0}"
+msgstr ""
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Menyusun sketsa..."
+msgstr ""
#: EditorConsole.java:152
msgid "Console Error"
-msgstr "Kesalahan Konsol"
+msgstr ""
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
-msgstr "Salin"
+msgstr ""
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "Salin sebagai HTML"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Salin untuk Forum"
+msgstr ""
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "Tidak dapat menambahkan ''{0}'' ke sketsa."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "Tidak dapat menyalin ke lokasi yang tepat."
+msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "Tidak dapat membuat map sketsa."
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr "Tidak dapat membuat sketsa."
+msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Tidak dapat menghapus \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Tidak dapat menghapus berkas ''{0}'' yang ada."
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "Tidak dapat menghapus {0}"
+msgstr ""
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -400,97 +408,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
-"Tidak dapat membuka URL\n"
-"{0}"
+msgstr ""
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"Tidak dapat membuka map\n"
-"{0}"
+msgstr ""
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
-"Tidak dapat kembali menyimpan sketsa dengan benar. Anda mungkin berada dalam kesulitan pada saat ini,\n"
-"dan mungkin sudah saatnya untuk menyalin dan menyisipkan kode anda ke editor teks lain."
+msgstr ""
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "Tidak dapat kembali menyimpan sketsa"
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr ""
-"Tidak dapat membaca pengaturan tema warna."
-"Anda harus memasang ulang Processing."
+msgstr ""
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
-"Tidak dapat membaca pengaturan standar.\n"
-"Anda harus memasang ulang Arduino."
+msgstr ""
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "Tidak dapat membaca preferensi dari {0}"
+msgstr ""
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "Tidak dapat menghilangkan versi lama {0}"
+msgstr ""
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "Tidak dapat mengubah nama \"{0}\" ke \"{1}\""
+msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "Tidak dapat mengubah nama sketsa. (0)"
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Tidak dapat mengubah nama sketsa. (1)"
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Tidak dapat mengubah nama sketsa. (2)"
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr "Tidak dapat menggantikan {0}"
+msgstr ""
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Tidak dapat mengarsipkan sketsa"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Tidak dapat menentukan ukuran program: {0}"
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "Tidak dapat melakukannya"
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -501,27 +499,27 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
-msgstr "Potong"
+msgstr ""
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
-msgstr "Bahasa Denmark"
+msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Kurangi Indentasi"
+msgstr ""
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr "Hapus"
+msgstr ""
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
@@ -529,78 +527,86 @@ msgstr ""
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Hapus semua perubahan dan muat ulang sketsa?"
+msgstr ""
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "Jangan Simpan"
+msgstr ""
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
-msgstr "Selesai Menyimpan."
+msgstr ""
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "Selesai membakar bootloader."
+msgstr ""
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
-msgstr "Selesai menyusun."
+msgstr ""
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
-msgstr "Selesai mencetak."
+msgstr ""
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
-msgstr "Selesai mengunggah."
-
-#: Preferences.java:90
-msgid "Dutch"
-msgstr "Bahasa Belanda"
-
-#: Editor.java:1116
-msgid "Edit"
-msgstr "Edit"
-
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr "Editor ukuran huruf: "
-
-#: Preferences.java:337
-msgid "Editor language: "
msgstr ""
#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
msgid "English"
-msgstr "Bahasa Inggris"
+msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
-msgstr "Lingkungan"
+msgstr ""
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
-msgstr "Kesalahan"
+msgstr "Error"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr "Kesalahan dalam menambahkan file"
+msgstr ""
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Kesalahan dalam menyusun."
+msgstr ""
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "Kesalahan dalam mendapatkan map data Arduino."
+msgstr "Error saat mengambil folder data Arduino"
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "Kesalahan di dalam Serial.{0}()"
+msgstr ""
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
@@ -613,36 +619,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr "Kesalahan dalam membuka serial port ''{0}''."
+msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
-msgstr "Kesalahan dalam membaca preferensi"
+msgstr ""
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"Kesalahan dalam membaca berkas preferensi. Harap hapus (atau pindahkan)\n"
-"{0} dan mulai ulang Arduino."
+msgstr ""
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Kesalahan ketika membakar bootloader."
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -651,167 +655,185 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Kesalahan ketika memuat kode {0}"
+msgstr ""
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "Kesalahan ketika mencetak."
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
-msgstr "Contoh"
+msgstr ""
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Ekspor dibatalkan, perubahan harus disimpan terlebih dahulu."
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
-msgstr "FAQ.html"
+msgstr ""
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
-msgstr "Berkas"
+msgstr ""
#: Preferences.java:94
msgid "Filipino"
-msgstr "Bahasa Filipina"
+msgstr ""
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
-msgstr "Cari"
+msgstr ""
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Cari Berikutnya"
+msgstr ""
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Cari Sebelumnya"
+msgstr ""
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Cari di Referensi"
+msgstr ""
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Cari..."
+msgstr ""
#: FindReplace.java:80
msgid "Find:"
-msgstr "Cari:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr "Perbaiki Pengkodean & Muat Ulang"
-
-#: ../../../processing/app/Base.java:2057
-msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
-msgid "French"
-msgstr "Bahasa Perancis"
-
-#: Editor.java:1083
-msgid "Frequently Asked Questions"
-msgstr "Pertanyaan yang Sering Diajukan"
-
#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
msgid "Galician"
-msgstr "Bahasa Galisia"
+msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
-msgid "German"
-msgstr "Bahasa Jerman"
-
-#: Editor.java:1041
-msgid "Getting Started"
-msgstr "Memulai"
-
#: Preferences.java:97
+msgid "German"
+msgstr ""
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
-msgstr "Bahasa Yunani"
+msgstr ""
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
-msgstr "Guide_Environment.html"
+msgstr ""
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
-msgstr "Guide_MacOSX.html"
+msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
-msgstr "Guide_Troubleshooting.html"
+msgstr ""
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
-msgstr "Guide_Windows.html"
+msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
-msgstr "Bantuan"
+msgstr ""
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"Bagaimana jika simpan sketsa terlebih dahulu \n"
-"sebelum mencoba untuk mengubah namanya?"
+msgstr ""
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "Anda Borges sekali"
+msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
-msgstr "Bahasa Hungaria"
+msgstr ""
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr "Abaikan Kasus"
+msgstr ""
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Mengabaikan nama perpustakaan buruk"
+msgstr "Mengabaikan nama pustaka yang salah"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
-msgstr "Mengabaikan sketsa dengan nama buruk"
+msgstr ""
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Impor Perpustakaan..."
+msgstr ""
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -824,11 +846,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Tambah Indentasi"
+msgstr ""
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -837,27 +859,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
-msgid "Italian"
-msgstr "Bahasa Italia"
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr "Bahasa Jepang"
-
#: Preferences.java:102
-msgid "Korean"
+msgid "Italian"
msgstr ""
#: Preferences.java:103
-msgid "Latvian"
-msgstr "Bahasa Latvia"
-
-#: ../../../processing/app/Base.java:2903
-msgid "Library added to your libraries. Check \"Import library\" menu"
+msgid "Japanese"
msgstr ""
#: Preferences.java:104
+msgid "Korean"
+msgstr ""
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -865,111 +887,106 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
-msgstr "Pesan"
+msgstr "Pesan"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Membutuhkan */ di akhir sebuah /* komentar */"
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr "Preferensi lebih lanjut dapat diedit langsung pada berkas"
+msgstr ""
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
-msgstr "Memindahkan"
+msgstr ""
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Nama untuk berkas baru:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
-msgstr "Baru"
+msgstr ""
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Jendela Editor Baru"
+msgstr ""
#: EditorHeader.java:292
msgid "New Tab"
-msgstr "Label Baru"
+msgstr ""
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Baris baru"
+msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr "Label Berikutnya"
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
-msgstr "Tidak"
+msgstr ""
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Tidak ada papan yang dipilih; harap pilih sebuah papan dari menu Peralatan > Papan."
+msgstr ""
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
-msgstr "Tidak diperlukan perubahan untuk Format Otomatis."
+msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "Tidak ada berkas yang ditambahkan ke sketsa."
+msgstr ""
#: Platform.java:167
msgid "No launcher available"
-msgstr "Tidak ada peluncur yang tersedia"
+msgstr ""
#: SerialMonitor.java:112
msgid "No line ending"
-msgstr "Tidak ada akhir baris"
+msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "Sungguh, sekarang waktunya anda menghirup udara segar."
+msgstr ""
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "Tidak ada referensi yang tersedia untuk \"{0}\""
+msgstr ""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Kesalahan tidak fatal ketika mengatur penampilan."
+msgstr ""
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
-msgstr "Tidak"
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
@@ -982,60 +999,60 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr "OK"
+msgstr ""
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "Satu berkas ditambahkan ke sketsa."
+msgstr ""
#: EditorToolbar.java:41
msgid "Open"
-msgstr "Buka"
+msgstr ""
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
-msgstr "Buka URL"
+msgstr ""
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Buka sebuah sketsa Arduino..."
+msgstr "Buka sebuah sketch Arduino"
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Buka di Jendela Lain"
+msgstr ""
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
-msgstr "Buka..."
+msgstr "Buka..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Pengaturan Halaman"
+msgstr ""
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "Rekat"
+msgstr ""
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
-msgstr "Bahasa Persia"
+msgstr ""
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Harap impor perpustakaan SPI dari menu Sketsa > Impor Perpustakaan."
+msgstr ""
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
-msgstr "Harap pasang JDK 1.5 atau yang lebih baru"
+msgstr "Mohon instal JDK 1.5 atau lebih baru"
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1043,45 +1060,53 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "Preferensi"
+msgstr ""
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
-msgstr "Sebelumnya"
+msgstr ""
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Label Sebelumnya"
+msgstr ""
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "Cetak"
+msgstr ""
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr "Mencetak dibatalkan."
+msgstr ""
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Mencetak..."
+msgstr ""
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr "Masalah Dalam Membuka Map"
+msgstr ""
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "Masalah Dalam Membuka URL"
+msgstr ""
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "Masalah Dalam Mengatur Platform"
+msgstr "Masalah Pengaturan Platform"
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1091,135 +1116,133 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "Masalah dalam mendapatkan map data"
+msgstr "Masalah saat mengambil folder data"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Masalah dalam memindahkan {0} ke map bangun"
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr ""
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Masalah dengan pengubahan nama"
+msgstr ""
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
-"Processing hanya dapat membuka sketsanya sendiri\n"
-"dan berkas lainnya yang berakhir dengan .ino atau .pde"
+msgstr ""
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "Programmer"
+msgstr ""
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
-msgstr "Keluar"
+msgstr "Keluar"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Ulang"
+msgstr ""
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "Referensi"
+msgstr ""
#: EditorHeader.java:300
msgid "Rename"
-msgstr "Ubah Nama"
+msgstr ""
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
-msgstr "Ganti"
+msgstr ""
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr "Ganti & Cari"
+msgstr ""
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "Ganti Semua"
+msgstr ""
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Ganti versi {0} yang ada?"
+msgstr ""
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Ganti dengan:"
+msgstr ""
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr "Bahasa Rumania"
+msgstr ""
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
-msgstr "Simpan"
+msgstr ""
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Simpan Sebagai..."
+msgstr ""
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "Penyimpanan Dibatalkan."
+msgstr ""
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "Simpan perubahan sebelum ekspor?"
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Simpan perubahan ke \"{0}\"? "
+msgstr ""
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Simpan map sketsa sebagai..."
+msgstr ""
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "Menyimpan..."
+msgstr ""
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Pilih (atau buat baru) map untuk sketsa..."
+msgstr ""
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Pilih Semua"
+msgstr ""
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Pilih sebuah gambar atau berkas data lain untuk disalin ke sketsa anda"
+msgstr ""
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Pilih lokasi buku sketsa baru"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1227,209 +1250,202 @@ msgstr ""
#: SerialMonitor.java:93
msgid "Send"
-msgstr "Kirim"
+msgstr ""
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "Serial Monitor"
+msgstr ""
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr ""
-"Serial port ''{0}'' telah digunakan. Coba hentikan semua program yang mungkin "
-"menggunakannya."
+msgstr ""
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr ""
-"Serial port ''{0}'' tidak ditemukan. Apakah anda telah memilih yang tepat dari menu Peralatan > "
-"Serial Port?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"Serial port {0} tidak ditemukan.\n"
-"Ulang unggah dengan serial port lain?"
+msgstr ""
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Masalah pengaturan"
+msgstr "Mengatur masalah"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Tampilkan Map Sketsa"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Tampilkan keluaran yang berlebihan ketika: "
+msgstr ""
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr "Sketsa"
+msgstr ""
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "Sketsa Hilang"
+msgstr ""
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "Sketsa Tidak Ada"
+msgstr "Sketch tidak ditemukan"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr "Sketsa Hanya-Baca"
+msgstr ""
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "Sketsa tidak berjudul"
+msgstr ""
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "Sketsa hanya-baca"
+msgstr ""
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr ""
-"Sketsa terlalu besar; lihat http://www.arduino.cc/en/Guide/Troubleshooting#size untuk "
-"saran tentang menguranginya."
+msgstr ""
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
-msgstr "Buku Sketsa"
+msgstr ""
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "Map Buku Sketsa hilang"
+msgstr "Folder sketchbook tidak ada"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "Lokasi buku sketsa:"
+msgstr ""
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"Beberapa berkas ditandai \"hanya-baca\", jadi anda harus\n"
-"kembali menyimpan sketsa di lokasi lain,\n"
-"dan coba lagi."
+msgstr ""
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
-"Beberapa berkas ditandai \"hanya-baca\", jadi anda harus\n"
-"kembali menyimpan sketsa ini di lokasi lain."
+msgstr ""
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Maaf, sebuah sketsa (atau map) bernama \"{0}\" sudah ada."
+msgstr ""
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
-msgstr "Bahasa Spanyol"
+msgstr ""
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr "Cuaca cerah"
+msgstr ""
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr "Kata kunci 'BYTE' tidak lagi didukung."
+msgstr ""
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "Kelas Client telah diubah namanya menjadi EthernetClient."
+msgstr ""
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr "Kelas Server telah diubah namanya menjadi EthernetServer."
+msgstr ""
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "Kelas Udp telah diubah namanya menjadi EthernetUdp."
+msgstr ""
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "Pesan kesalahan akan muncul, bagaimanapun Arduino akan berjalan dengan baik."
+msgstr ""
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
-"Berkas \"{0}\" harus berada di dalam\n"
-"sebuah map sketsa bernama \"{1}\".\n"
-"Buatkan map ini, pindahkan berkas, dan lanjutkan?"
+msgstr ""
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
-"Perpustakaan \"{0}\" tidak dapat digunakan.\n"
-"Nama perpustakaan hanya dapat terdiri dari huruf dan angka dasar.\n"
-"(hanya ASCII dan tanpa spasi, dan tidak dapat diawali dengan sebuah angka).\n"
+msgstr ""
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
msgstr ""
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr "Nama tidak dapat diawali dengan sebuah periode."
+msgstr ""
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"Sketsa yang dipilih tidak lagi ada.\n"
-"Anda mungkin perlu memulai ulang Arduino untuk memperbaharui\n"
-"menu buku sketsa."
+msgstr ""
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1437,66 +1453,53 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-"Sketsa \"{0}\" tidak dapat digunakan.\n"
-"Nama sketsa hanya dapat terdiri dari huruf dan angka dasar\n"
-"(hanya ASCII tanpa spasi, dan tidak dapat diawali dengan sebuah angka).\n"
-"Untuk menghilangkan pesan ini, hapus sketsa dari\n"
-"{1}"
+msgstr ""
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
msgstr ""
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
msgstr ""
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr ""
-"Map sketsa tidak lagi ada.\n"
-"Arduino akan beralih ke lokasi buku sketsa\n"
-"standar, dan membuat sebuah map buku sketsa baru jika\n"
-"diperlukan. Arduino kemudian akan berhenti berbicara tentang\n"
-"dirinya sendiri dari sudut orang ketiga."
+msgstr ""
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
-"Berkas ini telah disalin ke\n"
-"lokasi darimana anda mencoba untuk menambahkannya.\n"
-"Saya bukan tidak melakukan apa-apa."
+msgstr ""
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr "Waktu untuk Istirahat"
+msgstr ""
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "Peralatan"
+msgstr ""
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "Pemecahan masalah"
+msgstr ""
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
@@ -1520,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1531,96 +1534,97 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Jenis pengecualian: {0} tidak tertangkap"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "Batalkan"
+msgstr ""
#: Platform.java:168
msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"Platform tanpa spesifikasi, tidak ada peluncur yang tersedia.\n"
-"Untuk mengaktifkan pembukaan URL atau map, tambahkan sebuah baris \n"
-"\"launcher=/path/to/app\" ke preferences.txt"
+msgstr ""
#: UpdateCheck.java:111
msgid "Update"
-msgstr "Pembaruan"
+msgstr ""
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr "Perbaharui berkas sketsa ke ekstensi baru ketika menyimpan (.pde -> .ino)"
+msgstr ""
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
-msgstr "Unggah"
+msgstr ""
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Unggah Menggunakan Programmer"
+msgstr ""
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "Unggah dibatalkan."
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Mengunggah ke Papan I/O..."
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Mengunggah..."
+msgstr ""
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Gunakan Pilihan Untuk Pencarian"
+msgstr ""
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr "Gunakan editor eksternal"
+msgstr ""
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr "Periksa"
+msgstr ""
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Memeriksa / Menyusun"
+msgstr ""
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr "Periksa kode setelah unggah"
+msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "Kunjungi Arduino.cc"
+msgstr ""
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr "Peringatan"
+msgstr "Peringatan"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
-msgstr "Wire.receive() telah diubah namanya menjadi Wire.read()."
+msgstr ""
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "Wire.send() telah diubah namanya menjadi Wire.write()."
+msgstr ""
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "Membungkus"
+msgstr ""
#: debug/Uploader.java:213
msgid ""
@@ -1628,71 +1632,63 @@ msgid ""
"> Board menu?"
msgstr ""
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
-msgstr "Ya"
+msgstr ""
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
-msgstr "Anda tidak dapat membodohi saya"
+msgstr ""
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "Anda tidak dapat memiliki sebuah berkas .cpp dengan nama yang sama dengan sketsa."
+msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Anda tidak dapat mengubah nama sketsa ke \"{0}\"\n"
-"karena sketsa telah memiliki sebuah berkas .cpp dengan nama tersebut."
+msgstr ""
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"Anda tidak dapat menyimpan sketsa sebagai \"{0}\"\n"
-"karena sketsa telah memiliki sebuah berkas .cpp dengan nama tersebut."
+msgstr ""
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"Anda tidak dapat menyimpan sketsa kedalam sebuah map\n"
-"di dalam dirinya sendiri. Ini akan memakan waktu selamanya."
+msgstr ""
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr "Anda melupakan buku sketsa anda"
+msgstr "Anda lupa sketchbook Anda"
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
-"Anda telah mencapai batas pemberian nama otomatis sketsa baru\n"
-"untuk hari ini. Bagaimana jika anda pergi jalan-jalan sebagai gantinya?"
+msgstr ""
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" bukan ekstensi yang sah."
+msgstr ""
#: SketchCode.java:258
#, java-format
@@ -1703,116 +1699,84 @@ msgid ""
"todelete the bad characters to get rid of this warning."
msgstr ""
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
-msgstr ""
-"\n"
-"Pada Arduino 0019, perpustakaan Ethernet tergantung pada perpustakaan SPI.\n"
-"Tampaknya anda menggunakannya atau perpustakaan lain yang tergantung pada perpustakaan "
-"SPI.\n"
-"\n"
+msgstr ""
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr ""
-"\n"
-"Pada Arduino 1.0, kata kunci 'BYTE' tidak lagi didukung.\n"
-"Harap gunakan Serial.write() sebagai gantinya.\n"
-"\n"
+msgstr ""
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Pada Arduino 1.0, kelas Client dalam perpustakaan Ethernet telah diubah namanya "
-"menjadi EthernetClient.\n"
-"\n"
-
-#: debug/Compiler.java:478
-msgid ""
-"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"Pada Arduino 1.0, kelas Server dalam perpustakaan Ethernet telah diubah namanya "
-"menjadi EthernetServer.\n"
-"\n"
-
-#: ../../../processing/app/debug/Compiler.java:451
-msgid ""
-"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
-msgstr ""
-"\n"
-"Pada Arduino 1.0, fungsi Wire.receive() telah diubah namanya menjadi Wire.read() "
-"demi konsistensi dengan perpustakaan lain.\n"
-"\n"
+msgstr ""
-#: debug/Compiler.java:496
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
-msgstr ""
-"\n"
-"Pada Arduino 1.0, fungsi Wire.send() telah diubah namanya menjadi Wire.write() demi "
-"konsistensi dengan perpustakaan lain.\n"
-"\n"
+msgstr ""
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "susunan "
+msgstr ""
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr "createNewFile() kembali salah"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr "lingkungan"
+msgstr ""
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
-msgstr "http://arduino.cc/"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
@@ -1820,81 +1784,74 @@ msgstr ""
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
-msgstr "http://www.arduino.cc/en/Main/Software"
+msgstr ""
#: UpdateCheck.java:53
msgid "http://www.arduino.cc/latest.txt"
-msgstr "http://www.arduino.cc/latest.txt"
+msgstr ""
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
-msgstr "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "mengabaikan ukuran huruf tidak sah {0}"
+msgstr ""
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
-msgstr "index.html"
+msgstr ""
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "name is null"
+msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
-msgstr "platforms.html"
+msgstr ""
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr ""
-"Penyangga byte readBytesUntil() terlalu kecil untuk {0} bytes sampai dengan dan "
-"termasuk char {1}"
+msgstr ""
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: kesalahan internal.. tidak dapat menemukan kode"
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "serialMenu is null"
+msgstr ""
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
-msgstr ""
-"serial port yang dipilih {0} tidak ada atau papan anda tidak terhubung"
-
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
msgstr ""
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
-msgstr "unggah"
+msgstr ""
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "{0} berkas ditambahkan ke sketsa."
+msgstr ""
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr "{0} kembali {1}"
+msgstr ""
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr "{0} | Arduino {1}"
+msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_in.properties b/app/src/processing/app/i18n/Resources_in.properties
new file mode 100644
index 000000000..6a4bc2cf1
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_in.properties
@@ -0,0 +1,1285 @@
+# Indonesian translations for the Arduino IDE.
+# Copyright (C) 2012
+# This file is distributed under the same license as the Arduino IDE package.
+# Rininta Andari Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+!About\ Arduino=
+
+#: Editor.java:650
+!Add\ File...=
+
+#: Base.java:963
+Add\ Library...=Tambah pustaka...
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
+
+#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
+!Aragonese=
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+!Browse=
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
+
+#: Sketch.java:455
+!Cannot\ Rename=
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+!Close=
+
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
+
+#: EditorConsole.java:152
+!Console\ Error=
+
+#: Editor.java:1157 Editor.java:2707
+!Copy=
+
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+!Could\ not\ delete\ {0}=
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+!Could\ not\ remove\ old\ version\ of\ {0}=
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+!Could\ not\ replace\ {0}=
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+!Cut=
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+!Danish=
+
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
+
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+!Don't\ Save=
+
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
+
+#: Editor.java:2564
+!Done\ printing.=
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+!Dutch=
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+!Edit=
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+!English=
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=Error
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+Error\ getting\ the\ Arduino\ data\ folder.=Error saat mengambil folder data Arduino
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+!Error\ opening\ serial\ port\ ''{0}''.=
+
+#: Preferences.java:277
+!Error\ reading\ preferences=
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+!Error\ while\ printing.=
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+!Estonian=
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+!Examples=
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+!File=
+
+#: Preferences.java:94
+!Filipino=
+
+#: FindReplace.java:124 FindReplace.java:127
+!Find=
+
+#: Editor.java:1249
+!Find\ Next=
+
+#: Editor.java:1259
+!Find\ Previous=
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+!Find...=
+
+#: FindReplace.java:80
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+!German=
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+!Greek=
+
+#: Base.java:2085
+!Guide_Environment.html=
+
+#: Base.java:2071
+Guide_MacOSX.html=Guide_MacOSX.html
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+Guide_Windows.html=Guide_Windows.html
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+!Help=
+
+#: Preferences.java:99
+!Hindi=
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+!Hungarian=
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Mengabaikan nama pustaka yang salah
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+!Import\ Library...=
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
+
+#: Preferences.java:101
+!Indonesian=
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+!Italian=
+
+#: Preferences.java:103
+!Japanese=
+
+#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+!Lithuaninan=
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+Message=Pesan
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+!Moving=
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+!New=
+
+#: EditorToolbar.java:46
+!New\ Editor\ Window=
+
+#: EditorHeader.java:292
+!New\ Tab=
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+!Next\ Tab=
+
+#: Preferences.java:78 UpdateCheck.java:108
+!No=
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+!Open=
+
+#: Editor.java:2688
+!Open\ URL=
+
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=Buka sebuah sketch Arduino
+
+#: EditorToolbar.java:46
+!Open\ in\ Another\ Window=
+
+#: Base.java:903 Editor.java:501
+Open...=Buka...
+
+#: Editor.java:563
+!Page\ Setup=
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+!Paste=
+
+#: Preferences.java:109
+!Persian=
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=Mohon instal JDK 1.5 atau lebih baru
+
+#: Preferences.java:110
+!Polish=
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
+
+#: FindReplace.java:123 FindReplace.java:128
+!Previous=
+
+#: EditorHeader.java:326
+!Previous\ Tab=
+
+#: Editor.java:571
+!Print=
+
+#: Editor.java:2571
+!Printing\ canceled.=
+
+#: Editor.java:2547
+!Printing...=
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+!Problem\ Opening\ URL=
+
+#: Base.java:227
+Problem\ Setting\ the\ Platform=Masalah Pengaturan Platform
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+Problem\ getting\ data\ folder=Masalah saat mengambil folder data
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+!Programmer=
+
+#: Base.java:783 Editor.java:593
+Quit=Keluar
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+!Rename=
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
+
+#: FindReplace.java:122 FindReplace.java:129
+!Replace\ &\ Find=
+
+#: FindReplace.java:120 FindReplace.java:131
+!Replace\ All=
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+!Replace\ with\:=
+
+#: Preferences.java:113
+!Romanian=
+
+#: Preferences.java:114
+!Russian=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
+
+#: Editor.java:537
+!Save\ As...=
+
+#: Editor.java:2317
+!Save\ Canceled.=
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
+
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+!Send=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+Settings\ issues=Mengatur masalah
+
+#: Editor.java:641
+!Show\ Sketch\ Folder=
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+!Sketch=
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=Sketch tidak ditemukan
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
+
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
+
+#: Sketch.java:720
+!Sketch\ is\ read-only=
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada
+
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+!Time\ for\ a\ Break=
+
+#: Editor.java:663
+!Tools=
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+!Undo=
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+!Update=
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+!Uploading...=
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+!Verify=
+
+#: Editor.java:609
+!Verify\ /\ Compile=
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
+Warning=Peringatan
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+!Yes=
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+You\ forgot\ your\ sketchbook=Anda lupa sketchbook Anda
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+!environment=
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+!index.html=
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+!platforms.html=
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_it_IT.po b/app/src/processing/app/i18n/Resources_it_IT.po
index 049f98353..73338c404 100644
--- a/app/src/processing/app/i18n/Resources_it_IT.po
+++ b/app/src/processing/app/i18n/Resources_it_IT.po
@@ -11,8 +11,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: 2012-11-08 11:04+0000\n"
-"Last-Translator: mmichielin Closing the last open sketch will quit Arduino."
-msgstr ""
-" 마지막에 연 스케치를 닫으면 아두이노를 종료합니니다."
+msgstr " 마지막에 연 스케치를 닫으면 아두이노를 종료합니니다."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr ""
-" 만약 저장하지 않으면"
-"변경된 사항은 손실됩니다."
+msgstr " 만약 저장하지 않으면 변경된 사항은 손실됩니다."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
msgstr "\"{0}\" 파일 이름이 \"{1}\"에 이미 존재합니다."
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
msgstr " \"{0}\" 폴더 이름이 존재합니다. 스케치를 열수 없습니다."
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
-msgstr ""
+msgstr "라이브러리 이름 {0}이 이미 존재합니다"
#: UpdateCheck.java:103
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr "새로운 버젼의 아두이노가 다운로드 가능합니다,\n"
-"아두이노 다운로드 페이지로 방문할까요?"
+msgstr "새로운 버젼의 아두이노가 다운로드 가능합니다,\n아두이노 다운로드 페이지를 방문할까요?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr ""
-"콘솔 출력을 저장하는데 사용된 파일을 여는 중에\n"
-"문제가 발생했습니다."
+msgstr "콘솔 출력을 저장하는데 사용된 파일을 여는 중에\n문제가 발생했습니다."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
msgstr "아두이노 정보"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "파일 추가..."
+msgstr "파일 추가…"
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
-msgstr ""
+msgstr "라이브러리 추가…"
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
-"파일 인코딩 문제를 해결하는 동안 오류가 발생했습니다.\n"
-"이전 버젼을 덮어쓸 수 있으므로 이 스케치 저장하지 마십시요.\n"
-"열기 메뉴를 사용하여 스케치를 다시 열고 다시 시도하십시요.\n"
+msgstr "파일 인코딩 문제를 해결하는 동안 오류가 발생했습니다.\n이전 버젼을 덮어쓸 수 있으므로 이 스케치 저장하지 마십시요.\n열기 메뉴를 사용하여 스케치를 다시 열고 다시 시도하십시요.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr ""
-"플랫폼에 특정한 코드를 로드하는 동안\n"
-"알수 없는 에러가 발생했습니니다."
-
-#: Preferences.java:84
-msgid "Arabic"
-msgstr ""
+msgstr "플랫폼에 특정한 코드를 로드하는 동안\n알수 없는 에러가 발생했습니니다."
#: Preferences.java:85
+msgid "Arabic"
+msgstr "아랍어"
+
+#: Preferences.java:86
msgid "Aragonese"
-msgstr ""
+msgstr "아라곤어"
#: tools/Archiver.java:48
msgid "Archive Sketch"
@@ -143,244 +128,267 @@ msgstr "스케치 보관 취소"
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"스케치가 제대로 저장되지 않아서 스케치를 보관하는 것이\n"
-"취소되었습니다."
+msgstr "스케치가 제대로 저장되지 않아서 스케치를 보관하는 것이\n취소되었습니다."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
-msgstr ""
+msgstr "아두이노 ARM (32-비트) 보드"
#: ../../../processing/app/I18n.java:82
msgid "Arduino AVR Boards"
-msgstr ""
+msgstr "아두이노 AVR 보드"
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
-"설정을 저장하기 위한 폴더를 생성하지 못해서\n"
-"아두이노를 실행할 수 없습니다."
+msgstr "설정을 저장하기 위한 폴더를 생성하지 못해서\n아두이노를 실행할 수 없습니다."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
-"스케치를 저장하기 위한 폴더를 생성하지 못해서\n"
-"아두이노를 실행할 수 없습니다."
+msgstr "스케치를 저장하기 위한 폴더를 생성하지 못해서\n아두이노를 실행할 수 없습니다."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr ""
-"아두이노를 실행하려면 단지 JRE뿐 아니라 전체 JDK가 필요합니니다.\n"
-"JDK 1.5이상을 설치하시기 바랍니다.\n"
-"자세한 내용은 레퍼런스에서 찾을 수 있습니니다."
+msgstr "아두이노를 실행하려면 단지 JRE뿐 아니라 전체 JDK가 필요합니니다.\nJDK 1.5이상을 설치하시기 바랍니다.\n자세한 내용은 레퍼런스에서 찾을 수 있습니니다."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
-msgstr ""
+msgstr "아두이노:"
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
msgstr "정말로 \"{0}\"를 삭제하시겠습니까?"
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
msgstr "정말로 스케치를 삭제하시겠습니까?"
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr "아르메니안"
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr "오스트리아어"
+
#: tools/AutoFormat.java:91
msgid "Auto Format"
msgstr "자동 포맷"
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
msgid "Auto Format Canceled: Too many left curly braces."
msgstr "자동 포맷 취소: 너무 많은 왼 중괄호"
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
msgid "Auto Format Canceled: Too many left parentheses."
msgstr "자동 포맷 취소: 너무 많은 왼 괄호"
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
msgid "Auto Format Canceled: Too many right curly braces."
msgstr "자동 포맷 취소: 너무 많은 오른 중괄호"
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
msgid "Auto Format Canceled: Too many right parentheses."
msgstr "자동 포맷 취소: 너무 많은 오른 괄호"
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
msgstr "자동 포맷 완료"
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr ".ino파일을 아두이노와 자동으로 연결합니니다."
+msgstr ".ino파일을 아두이노와 자동으로 연결합니다."
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Autoscroll"
+msgstr "자동 스크롤"
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
msgstr "잘못된 오류 라인: {0}"
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
msgstr "잘못된 파일이 선택됐습니다"
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr "벨로루시어"
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
msgstr "보드"
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
-msgstr ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr "보드 {0}:{1}:{2} 이 ''build.board'' 설정에서 정의되지 않음. 자동 설정 : {3}"
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
-msgstr ""
+msgstr "보드:"
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr "보스니아어"
#: SerialMonitor.java:112
msgid "Both NL & CR"
msgstr "Both NL & CR"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
msgstr "찾아보기"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "빌드 폴더가 사라졌거나 사용할 수 없습니다"
+msgstr "빌드 폴더가 사라졌거나 저장할 수 없습니다"
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
-msgstr ""
+msgstr "불가리어"
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr "버마어(미얀마)"
+
+#: Editor.java:708
msgid "Burn Bootloader"
msgstr "부트로더 굽기"
-#: Editor.java:2457
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "I/O 보드에 부트로더 굽기 (이것은 시간이 걸릴 수 있습니다)..."
+msgstr "I/O 보드에 부트로더 굽기 (이것은 시간이 걸릴 수 있습니다)…"
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
-msgstr ""
+msgstr "소스 스케치를 열 수 없음 !"
#: ../../../processing/app/Preferences.java:92
msgid "Canadian French"
-msgstr ""
+msgstr "캐나다 프랑스어"
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "취소"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
msgstr "이름을 바꿀 수 없습니다"
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Carriage return"
+msgstr "캐리지 리턴"
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
-msgstr ""
+msgstr "카탈로니아어"
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
msgstr "시작시 업데이트 확인"
-#: Preferences.java:87
-msgid "Chinese Simplified"
-msgstr ""
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr "중국어(중국)"
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr "중국어(홍콩)"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr "중국어(대만)"
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr "중국어(대만)(Big5)"
#: Preferences.java:88
-msgid "Chinese Traditional"
-msgstr ""
+msgid "Chinese Simplified"
+msgstr "중국어 간체"
-#: Editor.java:514 Editor.java:1977
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr "중국어 번체"
+
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "닫기"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
msgstr "주석추가/주석삭제"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
msgstr "컴파일 에러,이 코드를 {0}로 제출해 주시기 바랍니다"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "스케치 컴파일..."
+msgstr "스케치를 컴파일 중…"
#: EditorConsole.java:152
msgid "Console Error"
msgstr "콘솔 오류"
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "복사"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
msgstr "HTML로 복사"
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
-msgstr ""
+msgstr "복사 에러"
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "포럼을 위해 복사"
+msgstr "포럼용으로 복사"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
msgstr "''{0}''를 스케치에 추가할 수 없습니다."
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
msgstr "지정한 위치로 파일을 복사할 수 없습니다."
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
msgstr "스케치 폴더를 생성할 수 없습니다."
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
msgstr "스케치를 생성할 수 없습니다."
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
msgstr "\"{0}\"를 삭제할 수 없습니다."
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
msgstr "''{0}'' 파일을 삭제할 수 없습니다."
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
msgstr "{0}를 삭제할 수 없습니다"
@@ -388,45 +396,39 @@ msgstr "{0}를 삭제할 수 없습니다"
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
-msgstr ""
+msgstr "{0}에서 boards.txt 파일을 찾을 수 없음. pre-1.5 인가요?"
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
#, java-format
msgid "Could not find tool {0}"
-msgstr ""
+msgstr "툴 {0}을 찾을 수 없음"
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
#, java-format
msgid "Could not find tool {0} from package {1}"
-msgstr ""
+msgstr "패키지 {1}에서 툴 {0}를 찾을 수 없음"
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
-"URL {0}를\n"
-"열 수 없습니다.\n"
+msgstr "URL {0}를\n열 수 없습니다."
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"폴더 {0}를\n"
-"열 수 없습니다.\n"
+msgstr "폴더 {0}를\n열 수 없습니다."
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
-"스케치를 제대로 다시 저장할 수 없습니다. 문제가 있어서 아마도 다른 텍스트 에디터에,\n"
-"복사하여 붙여넣을 수 있습니다."
+msgstr "스케치를 제대로 다시 저장할 수 없습니다. 문제가 있어서 아마도 다른 텍스트 에디터에,\n 복사하여 붙여넣을 수 있습니다."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
msgstr "재 저장을 할 수 없습니다"
@@ -434,46 +436,42 @@ msgstr "재 저장을 할 수 없습니다"
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr ""
-"컬러 테마를 읽을 수 없습니다.\n"
-"프로세싱을 다시 설치해야 합니다."
+msgstr "컬러 테마를 읽을 수 없습니다.\n프로세싱을 다시 설치해야 합니다."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
-"기본 설정을 읽을 수 없습니다.\n"
-"아두이노를 다시 설치해야 합니다."
+msgstr "기본 설정을 읽을 수 없습니다.\n아두이노를 다시 설치해야 합니다."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
msgstr "{0}로 부터 환경설정을 읽을 수 없습니다"
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
msgstr "{0}의 이전 버젼을 삭제할 수 없습니다"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
msgstr "\"{0}\" 를 \"{1}\"로 이름을 바꿀 수 없습니다."
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
msgstr "스케치 이름을 바꿀 수 없습니다. (0)"
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
msgstr "스케치 이름을 바꿀 수 없습니다. (1)"
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
msgstr "스케치 이름을 바꿀 수 없습니다. (2)"
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
msgstr "{0}를 바꿀 수 없습니다"
@@ -482,338 +480,360 @@ msgstr "{0}를 바꿀 수 없습니다"
msgid "Couldn't archive sketch"
msgstr "스케치를 보관 할 수 없습니다"
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
msgstr "프로그램의 사이즈를 결정할 수 없습니다: {0}"
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
msgstr "할 수 없습니다."
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
"after initiating the upload."
-msgstr ""
+msgstr "선택한 포트에 보드를 찾을 수 없습니다. 올바른 포트를 선택했는지 확인하세요. 만약 맞다면 보드에 새로 업로드를 하고 보드의 리셋버튼을 누르세요."
#: ../../../processing/app/Preferences.java:82
msgid "Croatian"
-msgstr ""
+msgstr "크로아티아어"
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
msgstr "잘라내기"
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
-msgstr ""
+msgstr "체코어"
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
-msgstr ""
+msgstr "덴마크어"
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "들여쓰기 삭제"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
msgstr "삭제"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr ""
-"디바이스가 응답하지 않습니다. 올바른 시리얼 포트가 선택이 되었는지 확인하거나"
-"데이터를 내보내기 전에 보드를 리셋하기 바랍니다."
+msgstr "디바이스가 응답하지 않습니다. 올바른 시리얼 포트가 선택이 되었는지 확인하거나 데이터를 내보내기 전에 보드를 리셋하기 바랍니다."
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
msgstr "모든 변경을 취소하고 스케치를 다시 로드하나요?"
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
msgstr "저장하지 않습니다"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
-msgstr "저장 완료"
+msgstr "저장 완료."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
msgstr "부트로더 굽기 완료"
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
msgstr "컴파일 완료"
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
msgstr "인쇄 완료"
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
msgstr "업로드 완료"
-#: Preferences.java:90
+#: Preferences.java:91
msgid "Dutch"
-msgstr ""
+msgstr "네델란드어"
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr "네덜란드어(네덜란드)"
+
+#: Editor.java:1130
msgid "Edit"
msgstr "편집"
-#: Preferences.java:354
+#: Preferences.java:370
msgid "Editor font size: "
msgstr "에디터 글꼴 크기: "
-#: Preferences.java:337
+#: Preferences.java:353
msgid "Editor language: "
-msgstr ""
+msgstr "에디터 언어: "
-#: Preferences.java:91
+#: Preferences.java:92
msgid "English"
-msgstr ""
+msgstr "영어"
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr "영어(영국)"
+
+#: Editor.java:1062
msgid "Environment"
msgstr "환경"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "에러"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
msgstr "파일 추가 오류"
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "컴파일 오류 발생"
+msgstr "컴파일 오류 발생."
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
msgstr "아두이노 데이터 폴더를 가져올 때 에러 발생"
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "Serial.{0}() 내부 에러"
+msgstr "시리얼 내부 에러.{0}()"
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
-msgstr ""
+msgstr "라이브러리 불러오기 에러"
#: ../../../processing/app/debug/TargetPlatform.java:95
#: ../../../processing/app/debug/TargetPlatform.java:106
#: ../../../processing/app/debug/TargetPlatform.java:117
#, java-format
msgid "Error loading {0}"
-msgstr ""
+msgstr "{0} 불러오기 에러"
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
msgstr "시리얼 포트 ''{0}'' 를 여는데 에러 발생"
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr "환경설정을 읽는 중 오류"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
-"환경설정을 읽는 중 오류. {0}을 삭제(또는 이동)하고\n"
-"아두이노를 다시 시작합니다."
+msgstr "환경설정을 읽는 중 오류. {0}을 삭제(또는 이동)하고\n아두이노를 다시 시작합니다."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
-msgstr ""
+msgstr "디스커버리 방법을 할때 오류:"
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
-msgstr ""
+msgstr "시리얼 포트 ''{0}'' 동작중 에러 발생."
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
msgstr "부트로더 굽는중 에러발생"
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
-msgstr ""
+msgstr "부트로더를 구울때 오류: 설정 값'{0}' 이 없음"
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
msgstr "코드 {0}를 로딩하는 중 에러"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "인쇄하는 중에 오류 발생했습니다."
+msgstr "인홰하는 중에 오류 발생했습니다."
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
-msgstr ""
+msgstr "업로드 오류: 설정 값'{0}' 이 없음"
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
-msgstr ""
+msgstr "에스토니아어"
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr "에스토니아어(에스토니아)"
+
+#: Editor.java:516
msgid "Examples"
msgstr "예제"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "내보내기 취소, 변경사항은 먼저 저장되야 합니다."
+msgstr "내보내기 취소, 변경 사항은 먼저 저장되야 합니다."
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
msgstr "파일"
#: Preferences.java:94
msgid "Filipino"
-msgstr ""
+msgstr "필리핀어"
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
msgstr "찾기"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
msgstr "다음 찾기"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
msgstr "이전 찾기"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
msgstr "참조에서 찾기"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "찾기..."
+msgstr "찾기…"
#: FindReplace.java:80
msgid "Find:"
msgstr "찾기:"
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr "종료"
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
msgstr "인코딩 수정 & 새로 고침"
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
-msgstr ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr "라이브러리 설치를 위해서 다음 사이트를 참고하세요: http://arduino.cc/en/Guide/Libraries\n"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
-msgstr ""
+msgstr "1200bps를 사용하여 포트를 리셋합니다."
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
-msgstr ""
+msgstr "프랑스어"
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
msgstr "자주 묻는 질문"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
-msgstr ""
+msgstr "갈리시아어"
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
-msgstr ""
+msgstr "조지안어"
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
-msgstr ""
+msgstr "독일어"
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
msgstr "시작하기"
-#: Preferences.java:97
-msgid "Greek"
-msgstr ""
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr "전역 변수는 ({2}%%)의 동적 메모리중 {0}바이트를 사용, {3}바이트의 지역변수가 남은. 최대는 {1} 바이트. "
-#: Base.java:1799
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr "전역 변수는 {0} 바이트의 동적 메모리를 사용."
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr "그리스어"
+
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
-msgstr ""
+msgstr "히브리어"
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "도움말"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
-msgstr ""
+msgstr "힌디어"
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
-"스케치를 다른 이름으로 바꾸기 전에 \n"
-"저장하는 것은 어떤가요?"
+msgstr "스케치를 다른 이름으로 바꾸기 전에 \n저장하는 것은 어떤가요?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
msgstr "How very Borges of you"
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
-msgstr ""
+msgstr "헝가리어"
#: FindReplace.java:96
msgid "Ignore Case"
msgstr "대소문자 무시"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
msgstr "잘못된 라이브러리 이름을 무시"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "잘못된 이름의 스케치를 무시"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "라이브러리 가져오기..."
+msgstr "라이브러리 가져오기…"
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -824,88 +844,82 @@ msgid ""
"disable this in the Preferences dialog.\n"
"\n"
"Save sketch and update its extension?"
-msgstr ""
+msgstr "아두이노 1.0에서 기본 파일 확장자가 .pde에서 .ino로 바뀌었습니다. \n새로운 스케치 (다른 이름으로 저장하는 것을 포함해서)는 새로운 확장자를 \n사용합니다. 기존의 확장자는 저장이 될때 업데이트되지만 설정에서 이것을 \n바꿀 수 있습니다. \n\n스케치를 저장하고 파일 확장자를 바꾸겠습니까?"
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
msgstr "들여쓰기 추가"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
-msgstr ""
+msgstr "인도네시아어"
#: ../../../processing/app/Base.java:1204
#, java-format
msgid "Invalid library found in {0}: {1}"
-msgstr ""
-
-#: Preferences.java:100
-msgid "Italian"
-msgstr ""
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr ""
+msgstr "잘못된 라이브러리가 {0}에서 발견: {1}"
#: Preferences.java:102
-msgid "Korean"
-msgstr ""
+msgid "Italian"
+msgstr "이탈리아어"
#: Preferences.java:103
-msgid "Latvian"
-msgstr ""
-
-#: ../../../processing/app/Base.java:2903
-msgid "Library added to your libraries. Check \"Import library\" menu"
-msgstr ""
+msgid "Japanese"
+msgstr "일본어"
#: Preferences.java:104
+msgid "Korean"
+msgstr "한국어"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr "라트비아어"
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr "라이브러리가 추가됐습니다. \"Import library\" 메뉴를 확인하세"
+
+#: Preferences.java:106
msgid "Lithuaninan"
-msgstr ""
+msgstr "리투아니아어"
#: ../../../processing/app/Sketch.java:1660
msgid "Low memory available, stability problems may occur"
-msgstr ""
+msgstr "메모리 부족, 안정성 문제가 생길 수 있습니다."
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
-msgstr ""
+msgstr "마라티어"
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "메시지"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
msgstr "/* 주석 */의 끝에 */ 누락"
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr "추가적인 환경 설정은 직접 파일에서 편집할 수 있습니다"
+msgstr "추가적인 환경 설정은 파일에서 직접 편집할 수 있습니다"
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
msgstr "이동"
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
msgstr "새로운 파일을 위한 이름:"
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr "네팔어"
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
-msgstr ""
+msgstr "프로그래머를 사용한 네트워크 업로드는 지원하지 않음"
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "새 파일"
@@ -919,25 +933,25 @@ msgstr "새 탭"
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Newline"
+msgstr "새 줄"
#: EditorHeader.java:340
msgid "Next Tab"
msgstr "다음 탭"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "아니요"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
msgstr "보드가 선택되지 않았습니다; 툴>보드 메뉴에서 보드를 선택하시기 바랍니다."
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr "자동 포맷을 위해 변경이 필요없습니다."
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
msgstr "스케치에 파일이 추가되지 않았습니다."
@@ -949,109 +963,118 @@ msgstr "런처를 사용할 수 없습니다"
msgid "No line ending"
msgstr "No line ending"
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
msgstr "당신의 신선한 공기를 위한 시간입니다."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "\"{0}\" 가 참조에존재하지 않습니다."
+msgstr "\"{0}\" 가 잠조에 존재하지 않습니다."
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
-msgstr ""
+msgstr "유효한 코어 설정이 없습니다. 종료중…"
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr "폴더 {0}에 유효한 하드웨어 정의가 발견되지 않음."
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr "GUI 동작을 설정할때 에러가 발생을 했지만 치명적이지는 않습니다."
+msgstr "GUI 동작을 설정할 때 에러가 발생을 했지만 치명적이지는 않습니다."
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
msgstr "아니요"
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
-
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
-msgstr ""
+msgstr "노르웨이 브크몰어"
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
"for tips on reducing your footprint."
-msgstr ""
+msgstr "메모리가 충분하지 않음; 메모리를 줄이기 위한 팁을 위해 참고 http://www.arduino.cc/en/Guide/Troubleshooting#size"
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
msgstr "확인"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "스케치에 1개의 파일이 추가되었습니다."
+msgstr "파일이 스케치에 추가됐습니다."
#: EditorToolbar.java:41
msgid "Open"
msgstr "열기"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "URL 열기"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "아두이노 스케치를 여세요..."
+msgstr "아두이노 스케치를 여세요…"
#: EditorToolbar.java:46
msgid "Open in Another Window"
msgstr "다른 창에서 열기"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
-msgstr "열기..."
+msgstr "열기…"
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
msgstr "페이지 설정"
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
-msgstr ""
+msgstr "패스워드:"
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
msgstr "붙여넣기"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
-msgstr ""
+msgstr "페르시아어"
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
msgstr "스케치 > 라이브러리 가져오기 메뉴에서 SPI 라이브러리를 가져오시기 바랍니다."
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
-msgstr "JDK 1.5 이상을 설치하시기 바랍니다."
+msgstr "JDK 1.5이상을 설치하시기 바랍니다."
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
-msgstr ""
+msgstr "폴란드어"
#: ../../../processing/app/Editor.java:718
msgid "Port"
-msgstr ""
+msgstr "포트"
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
-msgstr ""
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr "포루투칼어"
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr "포루투칼어(브라질)"
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr "포루투칼어(포루투칼)"
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "환경 설정"
+msgstr "환경설정"
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
@@ -1061,84 +1084,80 @@ msgstr "이전"
msgid "Previous Tab"
msgstr "이전 탭"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
msgstr "인쇄"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
msgstr "인쇄가 취소되었습니다."
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "인쇄..."
+msgstr "인쇄…"
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
msgstr "폴더를 열때 문제 발생"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
msgstr "URL을 열때 문제 발생"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
msgstr "플랫폼 설정 문제"
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
-msgstr ""
+msgstr "보드 폴더 /www/sd 접근시 문제"
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
msgid "Problem accessing files in folder "
-msgstr ""
+msgstr "폴더내 파일 접근시 문제"
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
msgstr "데이터 폴더를 가져오는데 문제 발생"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
msgstr "빌드 폴더로 {0}를 이동할때 문제 발생"
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
-msgstr ""
-"보드에 업로딩중에 문제 발생. http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload 를 참고하세요."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr "보드에 업로딩중에 문제 발생. 다음을 참고하세요.http://www.arduino.cc/en/Guide/Troubleshooting#upload"
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "이름바꾸기 문제"
+msgstr "이름 바꾸기 문제"
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
-"프로세싱은 자체 스케치와 .ino 나 .pde로 끝나는 파일을\n"
-"열수 있습니니다. "
+msgstr "프로세싱은 자체 스케치와 .ino 나 .pde로 끝나는 파일을\n열수 있습니니다. "
#: ../../../processing/app/I18n.java:86
msgid "Processor"
-msgstr ""
+msgstr "프로세서"
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
msgstr "프로그래머"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "종료"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
msgstr "다시 실행"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
msgstr "참조"
@@ -1146,7 +1165,7 @@ msgstr "참조"
msgid "Rename"
msgstr "이름 바꾸기"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "바꾸기"
@@ -1156,287 +1175,277 @@ msgstr "바꾸기 & 찾기"
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "모두 바꾸기"
+msgstr "전부 바꾸기"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
msgstr "{0}의 기존 버전을 교체하시겠습니까?"
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "대체:"
+msgstr "다음 내용으로 바꾸기:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr ""
+msgstr "루마니아어"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
-msgstr ""
+msgstr "러시아어"
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "저장"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "다른 이름으로 저장..."
+msgstr "다른 이름으로 저장…"
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "저장 취소"
+msgstr "저장 취소."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "내보내기전에 변경내용을 저장하시겠습니까?"
+msgstr "내보내기전에 변경 내용을 저장하시겠습니까?"
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
msgstr "변경 사항을 \"{0}\"? 에 저장하시겠습니까? "
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "스케치 폴더를 다른이름으로 저장..."
+msgstr "스케치 폴더를 다른 이름으로 저장…"
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "저장..."
+msgstr "저장…"
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "스케치를 위한 폴더를 선택(또는 새로 만들기)..."
+msgstr "스케치를 위한 폴더를 선택(또는 새로 만들기)…"
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
msgstr "모두 선택"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
-msgstr ""
+msgstr "추가하려는 zip 파일 또는 라이브러리를 포함하는 폴더를 선택하세요"
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
msgstr "스케치에 복사하기위해 이미지 또는 다른 데이터 파일을 선택"
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "새로운 스케치북 위치를 선택"
+msgstr "새로운 스케치북 위치를 선택하세요"
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
-msgstr ""
+msgstr "선택된 보드가 '{0}' 코어(인스톨 되지 않은)를 의존합니다"
#: SerialMonitor.java:93
msgid "Send"
-msgstr "Send"
+msgstr "전송"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
msgstr "시리얼 모니터"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr ""
-"시리얼 포트 ''{0}'' 가 이미 사용되고 있습니다. 이 포트를 사용하는 다른 프로그램을 "
-"종료하십시요. "
+msgstr "시리얼 포트 ''{0}'' 가 이미 사용되고 있습니다. 이 포트를 사용하는 다른 프로그램을 종료하십시요. "
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
-msgstr ""
+msgstr "시리얼 포트 ''{0}'' 가 이미 사용되고 있습니다. 이 포트를 사용하는 다른 프로그램을 종료하십시요. "
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr ""
-"시리얼 포트 ''{0}''를 찾을 수 없습니다. Tools > Serial Port 메뉴에서 올바른 포트를"
-"선택했나요?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr "시리얼 포트 ''{0}''를 찾을 수 없습니다. 툴 > 시리얼 포트 메뉴에서 올바른 포트를선택했나요?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
-"시리얼 포트 {0} 를 찾을 수 없습니다.\n"
-"다른 시리얼 포트로 업로드를 다시 시도하시겠습니까?"
+msgstr "시리얼 포트 {0} 를 찾을 수 없습니다.\n다른 시리얼 포트로 업로드를 다시 시도하시겠습니까?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
msgstr "설정 문제"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
msgstr "스케치 폴더 보이기"
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
-msgstr ""
+msgstr "컴파일하는 동안 상세 출력 보이기"
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
msgstr "다음 동작중 자세한 출력 보이기: "
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
msgstr "스케치"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
msgstr "스케치가 사라졌습니다"
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
msgstr "스케치가 존재하지 않습니다"
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
msgstr "스케치가 읽기 전용입니다"
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
msgstr "스케치가 제목이 없습니다"
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
msgstr "스케치는 읽기전용입니다"
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr ""
-"스케치가 너무 큼; http://www.arduino.cc/en/Guide/Troubleshooting#size"
-"이것을 줄이기 위한 도움말"
+msgstr "스케치가 너무 큼; 이것을 줄이기 위해 다음을 참고하세요. http://www.arduino.cc/en/Guide/Troubleshooting#size"
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr "스케치는 프로그램 저장 공간 ({2}%%) 중 {0} 바이트를 사용. 최대 {1} 바이트."
+
+#: Editor.java:510
msgid "Sketchbook"
msgstr "스케치북"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
msgstr "스케치북 폴더가 사라졌습니니다."
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
msgstr "스케치북 위치: "
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr "슬로베니아어"
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
-"파일이 \"읽기 전용\" 으로 표시됩니다. 따라서 \n"
-"다른 장소에 스케치를 다시 저장을 하고\n"
-"다시 시도하십시요."
+msgstr "파일이 \"읽기 전용\" 으로 표시됩니다. 따라서 \n다른 장소에 스케치를 다시 저장을 하고\n다시 시도하십시요."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
-"파일이 \"읽기 전용\" 으로 표시됩니다.\n"
-"다른 장소에 스케치를 다시 저장을 해야 합니다."
+msgstr "파일이 \"읽기 전용\" 으로 표시됩니다.\n다른 장소에 스케치를 다시 저장을 해야 합니다."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
msgstr "죄송합니다, \"{0}\"이름의 스케치(또는 폴더)가 이미 존재합니다."
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
-msgstr ""
+msgstr "스페인어"
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
msgstr "햇살"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr "스웨덴어"
+
+#: Preferences.java:84
msgid "System Default"
-msgstr ""
+msgstr "시스템 기본설정"
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
-msgstr ""
+msgstr "타밀어"
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr "'BYTE' 키워드는 더이상 지원되지 않습니니다."
+msgstr "'BYTE' 키워드는 더 이상 지원되지 않습니니다."
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
msgstr "Client 클래스는 EthernetClient로 이름이 변경되었습니다."
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
msgstr "Server 클래스는 EthernetServer로 이름이 변경되었습니다."
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
msgstr "Udp 클래스는 EthernetUdp로 이름이 변경되었습니다."
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
msgstr "에러 메시지는 다음에 표시됩니다. 하지만 아두이노는 이상 없이 동작합니다."
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
-"\"{0}\" 파일은 스케치 폴더 \"{1}\" 에 있어야 합니다.\n"
-"a sketch folder named .\n"
-"이 폴더를 생성하고 파일을 이동하고 계속하시겠습니까?"
+msgstr "\"{0}\" 파일은 스케치 폴더 \"{1}\" 에 있어야 합니다.\n이 폴더를 생성하고 파일을 이동하고 계속하시겠습니까?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
-"라이브러리 \"{0}\"를 사용할 수 없습니다.\n"
-"라이브러리 이름은 기본 문자와 숫자를 포함해야 합니다\n"
-"(숫자로 시작할 수 없으며 스페이스 없는 아스키문자를 사용하세요).\n"
+msgstr "라이브러리 \"{0}\"를 사용할 수 없습니다.\n라이브러리 이름은 기본 문자와 숫자를 포함해야 합니다\n(숫자로 시작하지 않는 스페이스 없는 아스키문자를 사용해야합니다)"
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr ""
-"메인 파일은 확장자를 사용할 수 없습니다.\n"
-"(\"real\" 프로그래밍 환경으로 전환하는\n"
-" 시간일 수도 있습니다.)"
+msgstr "메인 파일은 확장자를 사용할 수 없습니다.\n(\"real\" 프로그래밍 환경으로 전환하는\n 시간일 수도 있습니다.)"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
msgstr "이름은 마침표로 시작할 수 없습니다."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
-"선택한 스케치가 더 이상 존재하지 않습니니다.\n"
-"스케체북 메뉴를 업데이트하기 위해 아두이노를\n"
-"다시 시작해야 할 수도 있습니다."
+msgstr "선택한 스케치가 더 이상 존재하지 않습니니다.\n스케체북 메뉴를 업데이트하기 위해 아두이노를\n다시 시작해야 할 수도 있습니다."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1444,110 +1453,93 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
-" 스케치 \"{0}\" 를 사용할 수 없습니다.\n"
-"스케치 이름은 기본 문자와 숫자를 포함해야 합니다\n"
-"(숫자로 시작할 수 없으며 스페이스 없는 아스키문자를 사용하세요).\n"
-"이 메시지를 제거하려면 {1}에서 스케치를 제거하세요\n"
+msgstr "스케치 \"{0}\" 를 사용할 수 없습니다.\n스케치 이름은 기본 문자와 숫자를 포함해야 합니다\n(숫자로 시작하지 않는 스페이스 없는 아스키문자를 사용해야합니다).\n이 메시지를 제거하려면\n{1}에서 스케치를 제거하세요"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
-"스케치 폴더가 사라졌습니다\n"
-" 같은 장소에 다시 저장을 시도합니다,\n"
-"하지만 코드를 제외한 나머지 부분은 잃어버립니다."
+msgstr "스케치 폴더가 사라졌습니다\n같은 장소에 다시 저장을 시도합니다,\n하지만 코드를 제외한 나머지 부분은 잃어버립니다."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
-"스케치 이름을 변경해야 합니다. 스케치 이름은 아스키 문자나\n"
-" 숫자(하지만 숫자로 시장할 수 없습니다)만 가능합니다.\n"
-"그리고 64자 미만이여야 합니다."
+msgstr "스케치 이름을 변경해야 합니다. 스케치 이름은 아스키 문자나\n숫자(하지만 숫자로 시작할 수 없습니다)만 가능합니다.\n그리고 64자 미만이여야 합니다."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr ""
-"스케치북 폴더가 더 이상 존재하지 않습니다.\n"
-"아두이노는 기본 스케치북 위치으로 전환합니다.\n"
-"필요한면 새로운 스케치북 폴더를 만드세요\n"
-"그러면 아두이노는 더 이상 얘기하지 않을겁니다.\n"
+msgstr "스케치북 폴더가 더 이상 존재하지 않습니다.\n아두이노는 기본 스케치북 위치로 전환합니다\n그리고 필요하면 새로운 스케치북 폴더를 만들겁니다\n그러면 아두이노는 더 이상 이 문제에 대해\n얘기하지 않을겁니다."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
-"이 파일은 이미 당신이 추가하려는\n"
-"장소에 복사되었습니다.\n"
-"더 이상 진행 할 수 없습니다.\n"
+msgstr "이 파일은 이미 당신이 추가하려는\n장소에 복사되었습니다.\n더 이상 진행 할 수 없습니다."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
-msgstr ""
+msgstr "이 리포트는 많은 정보를 포함합니다"
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
msgstr "휴식 시간"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
msgstr "도구"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
msgstr "문제해결"
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
-msgstr ""
+msgstr "터키어"
#: ../../../processing/app/Editor.java:2507
msgid "Type board password to access its console"
-msgstr ""
+msgstr "콘솔에 접근하기 위해 보드의 패스워드를 입력하시오"
#: ../../../processing/app/Sketch.java:1673
msgid "Type board password to upload a new sketch"
-msgstr ""
+msgstr "새로운 스케치를 업로드하기 위해 보드의 패스워드를 입력하시오"
#: ../../../processing/app/Preferences.java:118
msgid "Ukrainian"
-msgstr ""
+msgstr "우크라이아어"
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
msgid "Unable to connect: is the sketch using the bridge?"
-msgstr ""
+msgstr "연결할 수 없음: 스케치가 브릿지를 사용하나요?"
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
-msgstr ""
+msgid "Unable to connect: retrying"
+msgstr "연결할 수 없음: 재시도"
#: ../../../processing/app/Editor.java:2526
msgid "Unable to connect: wrong password?"
-msgstr ""
+msgstr "연결할 수 없음: 패스워드 확인"
#: ../../../processing/app/Editor.java:2512
msgid "Unable to open serial monitor"
-msgstr ""
+msgstr "시리얼 모니터를 열 수 없음"
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
msgstr "해결할 수 없는 예외상황 발생: {0}"
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
msgstr "취소"
@@ -1556,48 +1548,45 @@ msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
-"지정되지 않은 플랫폼, 런처를 사용할 수 없습니다.\n"
-"URL 또는 폴더를 사용하려면,\n"
-"\"launcher=/path/to/app\" 라인을 preferences.txt에 추가합니다."
+msgstr "지정되지 않은 플랫폼, 런처를 사용할 수 없습니다.\nURL 또는 폴더를 사용하려면,\n\"launcher=/path/to/app\" 라인을 preferences.txt에 추가합니다."
#: UpdateCheck.java:111
msgid "Update"
msgstr "업데이트"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
msgstr "스케치 파일을 저장할때 새로운 확장자(.pde -> .ino)로 업데이트"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "업로드"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
msgstr "프로그래머를 이용해 업로드"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "업로드 취소"
+msgstr "업로드 취소."
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
-msgstr ""
+msgstr "업로드 취소"
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "I/O 보드에 업로드..."
+msgstr "I/O 보드에 업로드…"
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "업로딩..."
+msgstr "업로딩…"
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "찾기위해 선택된 부분을 사용"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
msgstr "외부 에디터 사용"
@@ -1605,103 +1594,98 @@ msgstr "외부 에디터 사용"
msgid "Verify"
msgstr "확인"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
msgstr "확인 / 컴파일"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr ""
+msgstr "업로드 후 코드 검증하기"
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr "베트남어"
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "Arduino.cc를 방문"
+msgstr "Arduino.cc 방문하기"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
msgstr "경고"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive()는 Wire.read()로 이름이 변경되었습니다."
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
msgstr "Wire.send()는 Wire.write()로 이름이 변경되었습니다."
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "자동 줄바꿈"
+msgstr "자동 줄 바꿈"
#: debug/Uploader.java:213
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
-msgstr ""
-"잘못된 마이크로콘트롤러 발견. Tools > Board 메뉴에서 올바른 보드를 선택을 하셨나요?"
+msgstr "잘못된 마이크로콘트롤러 발견. 툴 > 보드 메뉴에서 올바른 보드를 선택을 하셨나요?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "예"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
msgstr "날 속일 생각 말게"
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
msgstr "스케치와 동일한 이름의 .cpp 파일을 가질수 없습니다."
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"스케치가 이미 같은 이름의 .cpp파일을 가지고 있기 때문에"
-"스케치의 이름을 \"{0}\"로 바꿀 수 없습니다\n"
+msgstr "스케치가 이미 같은 이름의 .cpp 파일을 가지고 있기 때문에\n스케치의 이름을 \"{0}\"로 바꿀 수 없습니다."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
-"스케치가 이미 같은 이름의 .cpp파일을 가지고 있기 때문에"
-"스케치의 이름을 \"{0}\"로 바꿀 수 없습니다\n"
+msgstr "스케치가 이미 같은 이름의 .cpp파일을 가지고 있기 때문에\n스케치의 이름을 \"{0}\"로 저장할 수 없습니다."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
-"스케치를 그 자체의 폴더에 저장할 수 없습니다.\n"
-"무한 반복될 수 있습니다."
+msgstr "스케치를 그 자체의 폴더에 저장할 수 없습니다.\n무한 반복될 수 있습니다."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
msgstr "스케치북을 잊었습니다"
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
-msgstr ""
+msgstr "{0}를 입력했지만 아무것도 전달되지 않았습니다. 줄바꿈을 선택했나요?"
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
-"새로운 스케치의 자동 네이밍의 한계에 도달했습니다.\n"
-"산책을 하시는 것이 어떤가요?"
+msgstr "새로운 스케치의 자동 네이밍의 한계에 도달했습니다.\n산책을 하시는 것이 어떤가요?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
-msgstr ""
+msgstr "ZIP 파일 또는 폴더"
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
-msgstr ""
+msgstr "Zip 파일이 라이브러리를 포함하고 있지않습니다"
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
msgstr "\".{0}\" 는 확장자로 사용할 수 없습니다."
@@ -1713,124 +1697,90 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr ""
-"\"{0}\"에 인식할 수 없는 문자가 포함되어 있습니다. 만약 이 코드가"
-"이전 버전의 프로세싱으로 만들어졌다면, Tools -> Fix Encoding & Reload 로"
-" UTF-8 인토딩으로 업데이트 할 수 있습니다."
-"아니면 잘못된 문자를 삭제하여 이 경고를 제거할 수 있습니다."
+msgstr "\"{0}\"에 인식할 수 없는 문자가 포함되어 있습니다. 만약 이 코드가이전 버전의 프로세싱으로 만들어졌다면, 툴 -> 인코딩 수정 & 다시 로드 로 UTF-8 인토딩으로 업데이트 할 수 있습니다.아니면 잘못된 문자를 삭제하여 이 경고를 제거할 수 있습니다."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
-"\n"
-msgstr ""
-"\n"
-"아두이노 0019 경우, 이더넷 라이브러리는 SPI라이브러리에 의존합니다.\n"
-"이 사이브러리를 사용하거나 SPI 라이브러리에 의존적인\n"
-"다른 라이브러리를 사용하는 것 같습니다."
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
+msgstr "\n아두이노 0019 경우, 이더넷 라이브러리는 SPI라이브러리에 의존합니다.\n이 사이브러리를 사용하거나 SPI 라이브러리에 의존적인\n다른 라이브러리를 사용하는 것 같습니다.\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr ""
-"\n"
-"아두이노 1.0 경우, 'BYTE' 키워드는 더 이상 지원하지 않습니니다.\n"
-"대신 Serial.write()를 사용하시기 바랍니다.\n"
-"\n"
+msgstr "\n아두이노 1.0 경우, 'BYTE' 키워드는 더 이상 지원하지 않습니니다.\n대신 Serial.write()를 사용하시기 바랍니다.\n\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"아두이노 1.0 경우, 이더넷 라이브러리의 Client 클래스는 EthernetClient로 이름이 변경되었습니다"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
+msgstr "\n아두이노 1.0 경우, 이더넷 라이브러리의 Client 클래스는 EthernetClient로 이름이 변경되었습니다\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"아두이노 1.0 경우, 이더넷 라이브러리의 Server 클래스는 EthernetServer로 이름이 변경되었습니다"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
+msgstr "\n아두이노 1.0 경우, 이더넷 라이브러리의 Server 클래스는 EthernetServer로 이름이 변경되었습니다.\n\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
-msgstr ""
+msgstr "\n아두이노 1.0 경우, 이더넷 라이브러리의 Udp 클래스는 EthernetClient로 이름이 변경되었습니다\n"
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"아두이노 1.0 경우, Wire.receive()함수는 다른 라이브러리와의 일관성을 위해 "
-"Wire.read()로 이름이 변경되었습니다"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
+msgstr "\n아두이노 1.0 경우, Wire.receive()함수는 다른 라이브러리와의 일관성을 위해 Wire.read()로 이름이 변경되었습니다\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
-"\n"
-msgstr ""
-"\n"
-"아두이노 1.0 경우, Wire.send()함수는 다른 라이브러리와의 일관성을 위해 "
-"Wire.write()로 이름이 변경되었습니다"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
+msgstr "\n아두이노 1.0 경우, Wire.send()함수는 다른 라이브러리와의 일관성을 위해 Wire.write()로 이름이 변경되었습니다\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
-msgstr ""
+msgstr "보드 레이트"
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
msgstr "컴파일 "
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
-msgstr ""
+msgstr "연결!"
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
msgstr "createNewFile()가 false를 반환했습니다"
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
-msgstr ""
+msgstr "파일 > 설정에 사용가능하게 됨"
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr "환경"
+msgstr "환경설정"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
-msgstr ""
+msgstr "http://github.com/arduino/Arduino/issues"
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
@@ -1840,75 +1790,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "잘못된 글꼴크기 {0}를 무시"
+msgstr "잘못된 글꼴 크기 {0}를 무시"
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name 이 null입니다."
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr ""
-"char {1}을 포함 {0} 바이트를 위한 readBytesUntil() 바이트 버퍼가"
-" 너무 작습니니다."
+msgstr "char {1}을 포함 {0} 바이트를 위한 readBytesUntil() 바이트 버퍼가 너무 작습니니다."
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
msgstr "removeCode: 내부 에러.. 코드를 찾을 수 없습니다"
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu가 Null입니다"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
-msgstr ""
-"선택돤 시리얼 포트(0)는 존재하지 않거나 해당 보드가 연결되지 않았습니다."
+msgstr "선택돤 시리얼 포트{0}는 존재하지 않거나 해당 보드가 연결되지 않았습니다."
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
msgstr "업로드"
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
msgstr "스케치에 {0}파일이 추가되었습니다."
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
msgstr "{0} 가 {1}를 리턴했습니다"
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
msgstr "{0} | 아두이노 {1}"
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_ko_KR.properties b/app/src/processing/app/i18n/Resources_ko_KR.properties
index 05ff61e89..650c8d476 100644
--- a/app/src/processing/app/i18n/Resources_ko_KR.properties
+++ b/app/src/processing/app/i18n/Resources_ko_KR.properties
@@ -3,67 +3,67 @@
# This file is distributed under the same license as the PACKAGE package.
# Jinbuhm Kim Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \ub9c8\uc9c0\ub9c9\uc5d0 \uc5f0 \uc2a4\ucf00\uce58\ub97c \ub2eb\uc73c\uba74 \uc544\ub450\uc774\ub178\ub97c \uc885\ub8cc\ud569\ub2c8\ub2c8\ub2e4.
+#: Base.java:773
+\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \ub9c8\uc9c0\ub9c9\uc5d0 \uc5f0 \uc2a4\ucf00\uce58\ub97c \ub2eb\uc73c\uba74 \uc544\ub450\uc774\ub178\ub97c \uc885\ub8cc\ud569\ub2c8\ub2c8\ub2e4.
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= \ub9cc\uc57d \uc800\uc7a5\ud558\uc9c0 \uc54a\uc73c\uba74\ubcc0\uacbd\ub41c \uc0ac\ud56d\uc740 \uc190\uc2e4\ub429\ub2c8\ub2e4.
+#: Editor.java:2053
+\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= \ub9cc\uc57d \uc800\uc7a5\ud558\uc9c0 \uc54a\uc73c\uba74 \ubcc0\uacbd\ub41c \uc0ac\ud56d\uc740 \uc190\uc2e4\ub429\ub2c8\ub2e4.
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"="{0}" \ud30c\uc77c \uc774\ub984\uc774 "{1}"\uc5d0 \uc774\ubbf8 \uc874\uc7ac\ud569\ub2c8\ub2e4.
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\ "{0}" \ud3f4\ub354 \uc774\ub984\uc774 \uc874\uc7ac\ud569\ub2c8\ub2e4. \uc2a4\ucf00\uce58\ub97c \uc5f4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
-!A\ library\ named\ {0}\ already\ exists=
+A\ library\ named\ {0}\ already\ exists=\ub77c\uc774\ube0c\ub7ec\ub9ac \uc774\ub984 {0}\uc774 \uc774\ubbf8 \uc874\uc7ac\ud569\ub2c8\ub2e4
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\uc0c8\ub85c\uc6b4 \ubc84\uc83c\uc758 \uc544\ub450\uc774\ub178\uac00 \ub2e4\uc6b4\ub85c\ub4dc \uac00\ub2a5\ud569\ub2c8\ub2e4,\n\uc544\ub450\uc774\ub178 \ub2e4\uc6b4\ub85c\ub4dc \ud398\uc774\uc9c0\ub85c \ubc29\ubb38\ud560\uae4c\uc694?
+A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\uc0c8\ub85c\uc6b4 \ubc84\uc83c\uc758 \uc544\ub450\uc774\ub178\uac00 \ub2e4\uc6b4\ub85c\ub4dc \uac00\ub2a5\ud569\ub2c8\ub2e4,\n\uc544\ub450\uc774\ub178 \ub2e4\uc6b4\ub85c\ub4dc \ud398\uc774\uc9c0\ub97c \ubc29\ubb38\ud560\uae4c\uc694?
#: EditorConsole.java:153
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\ucf58\uc194 \ucd9c\ub825\uc744 \uc800\uc7a5\ud558\ub294\ub370 \uc0ac\uc6a9\ub41c \ud30c\uc77c\uc744 \uc5ec\ub294 \uc911\uc5d0\n\ubb38\uc81c\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.
-#: Editor.java:1102
+#: Editor.java:1116
About\ Arduino=\uc544\ub450\uc774\ub178 \uc815\ubcf4
-#: Editor.java:643
-Add\ File...=\ud30c\uc77c \ucd94\uac00...
+#: Editor.java:650
+Add\ File...=\ud30c\uc77c \ucd94\uac00\u2026
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
+#: Base.java:963
+Add\ Library...=\ub77c\uc774\ube0c\ub7ec\ub9ac \ucd94\uac00\u2026
#: tools/FixEncoding.java:77
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\ud30c\uc77c \uc778\ucf54\ub529 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \ub3d9\uc548 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.\n\uc774\uc804 \ubc84\uc83c\uc744 \ub36e\uc5b4\uc4f8 \uc218 \uc788\uc73c\ubbc0\ub85c \uc774 \uc2a4\ucf00\uce58 \uc800\uc7a5\ud558\uc9c0 \ub9c8\uc2ed\uc2dc\uc694.\n\uc5f4\uae30 \uba54\ub274\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \uc5f4\uace0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2ed\uc2dc\uc694.\n
-#: Base.java:221
+#: Base.java:228
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\ud50c\ub7ab\ud3fc\uc5d0 \ud2b9\uc815\ud55c \ucf54\ub4dc\ub97c \ub85c\ub4dc\ud558\ub294 \ub3d9\uc548\n\uc54c\uc218 \uc5c6\ub294 \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2c8\ub2e4.
-#: Preferences.java:84
-!Arabic=
-
#: Preferences.java:85
-!Aragonese=
+Arabic=\uc544\ub78d\uc5b4
+
+#: Preferences.java:86
+Aragonese=\uc544\ub77c\uace4\uc5b4
#: tools/Archiver.java:48
Archive\ Sketch=\uc2a4\ucf00\uce58 \ubcf4\uad00\ud558\uae30
@@ -78,538 +78,577 @@ Archive\ sketch\ canceled.=\uc2a4\ucf00\uce58 \ubcf4\uad00 \ucde8\uc18c
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\uc2a4\ucf00\uce58\uac00 \uc81c\ub300\ub85c \uc800\uc7a5\ub418\uc9c0 \uc54a\uc544\uc11c \uc2a4\ucf00\uce58\ub97c \ubcf4\uad00\ud558\ub294 \uac83\uc774\n\ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
#: ../../../processing/app/I18n.java:83
-!Arduino\ ARM\ (32-bits)\ Boards=
+Arduino\ ARM\ (32-bits)\ Boards=\uc544\ub450\uc774\ub178 ARM (32-\ube44\ud2b8) \ubcf4\ub4dc
#: ../../../processing/app/I18n.java:82
-!Arduino\ AVR\ Boards=
+Arduino\ AVR\ Boards=\uc544\ub450\uc774\ub178 AVR \ubcf4\ub4dc
-#: Base.java:1441
+#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\uc124\uc815\uc744 \uc800\uc7a5\ud558\uae30 \uc704\ud55c \ud3f4\ub354\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud574\uc11c\n\uc544\ub450\uc774\ub178\ub97c \uc2e4\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Base.java:1603
+#: Base.java:1889
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\uc2a4\ucf00\uce58\ub97c \uc800\uc7a5\ud558\uae30 \uc704\ud55c \ud3f4\ub354\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud574\uc11c\n\uc544\ub450\uc774\ub178\ub97c \uc2e4\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Base.java:233
+#: Base.java:240
Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\uc544\ub450\uc774\ub178\ub97c \uc2e4\ud589\ud558\ub824\uba74 \ub2e8\uc9c0 JRE\ubfd0 \uc544\ub2c8\ub77c \uc804\uccb4 JDK\uac00 \ud544\uc694\ud569\ub2c8\ub2c8\ub2e4.\nJDK 1.5\uc774\uc0c1\uc744 \uc124\uce58\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\n\uc790\uc138\ud55c \ub0b4\uc6a9\uc740 \ub808\ud37c\ub7f0\uc2a4\uc5d0\uc11c \ucc3e\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2c8\ub2e4.
#: ../../../processing/app/EditorStatus.java:471
-!Arduino\:\ =
+Arduino\:\ =\uc544\ub450\uc774\ub178\:
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\uc815\ub9d0\ub85c "{0}"\ub97c \uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
-#: Sketch.java:591
+#: Sketch.java:587
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\uc815\ub9d0\ub85c \uc2a4\ucf00\uce58\ub97c \uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
+#: ../../../processing/app/Preferences.java:137
+Armenian=\uc544\ub974\uba54\ub2c8\uc548
+
+#: ../../../processing/app/Preferences.java:138
+Asturian=\uc624\uc2a4\ud2b8\ub9ac\uc544\uc5b4
+
#: tools/AutoFormat.java:91
Auto\ Format=\uc790\ub3d9 \ud3ec\ub9f7
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\uc790\ub3d9 \ud3ec\ub9f7 \ucde8\uc18c\: \ub108\ubb34 \ub9ce\uc740 \uc67c \uc911\uad04\ud638
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\uc790\ub3d9 \ud3ec\ub9f7 \ucde8\uc18c\: \ub108\ubb34 \ub9ce\uc740 \uc67c \uad04\ud638
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\uc790\ub3d9 \ud3ec\ub9f7 \ucde8\uc18c\: \ub108\ubb34 \ub9ce\uc740 \uc624\ub978 \uc911\uad04\ud638
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\uc790\ub3d9 \ud3ec\ub9f7 \ucde8\uc18c\: \ub108\ubb34 \ub9ce\uc740 \uc624\ub978 \uad04\ud638
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
Auto\ Format\ finished.=\uc790\ub3d9 \ud3ec\ub9f7 \uc644\ub8cc
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=.ino\ud30c\uc77c\uc744 \uc544\ub450\uc774\ub178\uc640 \uc790\ub3d9\uc73c\ub85c \uc5f0\uacb0\ud569\ub2c8\ub2c8\ub2e4.
+#: Preferences.java:439
+Automatically\ associate\ .ino\ files\ with\ Arduino=.ino\ud30c\uc77c\uc744 \uc544\ub450\uc774\ub178\uc640 \uc790\ub3d9\uc73c\ub85c \uc5f0\uacb0\ud569\ub2c8\ub2e4.
#: SerialMonitor.java:110
-Autoscroll=Autoscroll
+Autoscroll=\uc790\ub3d9 \uc2a4\ud06c\ub864
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
Bad\ error\ line\:\ {0}=\uc798\ubabb\ub41c \uc624\ub958 \ub77c\uc778\: {0}
-#: Editor.java:2089
+#: Editor.java:2136
Bad\ file\ selected=\uc798\ubabb\ub41c \ud30c\uc77c\uc774 \uc120\ud0dd\ub410\uc2b5\ub2c8\ub2e4
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+Belarusian=\ubca8\ub85c\ub8e8\uc2dc\uc5b4
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
Board=\ubcf4\ub4dc
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
-!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\ubcf4\ub4dc {0}\:{1}\:{2} \uc774 ''build.board'' \uc124\uc815\uc5d0\uc11c \uc815\uc758\ub418\uc9c0 \uc54a\uc74c. \uc790\ub3d9 \uc124\uc815 \: {3}
#: ../../../processing/app/EditorStatus.java:472
-!Board\:\ =
+Board\:\ =\ubcf4\ub4dc\:
+
+#: ../../../processing/app/Preferences.java:140
+Bosnian=\ubcf4\uc2a4\ub2c8\uc544\uc5b4
#: SerialMonitor.java:112
Both\ NL\ &\ CR=Both NL & CR
-#: Preferences.java:80
+#: Preferences.java:81
Browse=\ucc3e\uc544\ubcf4\uae30
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=\ube4c\ub4dc \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uac70\ub098 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
+#: Sketch.java:1392 Sketch.java:1423
+Build\ folder\ disappeared\ or\ could\ not\ be\ written=\ube4c\ub4dc \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uac70\ub098 \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
#: ../../../processing/app/Preferences.java:80
-!Bulgarian=
+Bulgarian=\ubd88\uac00\ub9ac\uc5b4
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+Burmese\ (Myanmar)=\ubc84\ub9c8\uc5b4(\ubbf8\uc580\ub9c8)
+
+#: Editor.java:708
Burn\ Bootloader=\ubd80\ud2b8\ub85c\ub354 \uad7d\uae30
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=I/O \ubcf4\ub4dc\uc5d0 \ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 (\uc774\uac83\uc740 \uc2dc\uac04\uc774 \uac78\ub9b4 \uc218 \uc788\uc2b5\ub2c8\ub2e4)...
+#: Editor.java:2504
+Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=I/O \ubcf4\ub4dc\uc5d0 \ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 (\uc774\uac83\uc740 \uc2dc\uac04\uc774 \uac78\ub9b4 \uc218 \uc788\uc2b5\ub2c8\ub2e4)\u2026
#: ../../../processing/app/Base.java:368
-!Can't\ open\ source\ sketch\!=
+Can't\ open\ source\ sketch\!=\uc18c\uc2a4 \uc2a4\ucf00\uce58\ub97c \uc5f4 \uc218 \uc5c6\uc74c \!
#: ../../../processing/app/Preferences.java:92
-!Canadian\ French=
+Canadian\ French=\uce90\ub098\ub2e4 \ud504\ub791\uc2a4\uc5b4
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=\ucde8\uc18c
-#: Sketch.java:459
+#: Sketch.java:455
Cannot\ Rename=\uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
#: SerialMonitor.java:112
-Carriage\ return=Carriage return
-
-#: Preferences.java:86
-!Catalan=
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=\uc2dc\uc791\uc2dc \uc5c5\ub370\uc774\ud2b8 \ud655\uc778
+Carriage\ return=\uce90\ub9ac\uc9c0 \ub9ac\ud134
#: Preferences.java:87
-!Chinese\ Simplified=
+Catalan=\uce74\ud0c8\ub85c\ub2c8\uc544\uc5b4
+
+#: Preferences.java:419
+Check\ for\ updates\ on\ startup=\uc2dc\uc791\uc2dc \uc5c5\ub370\uc774\ud2b8 \ud655\uc778
+
+#: ../../../processing/app/Preferences.java:142
+Chinese\ (China)=\uc911\uad6d\uc5b4(\uc911\uad6d)
+
+#: ../../../processing/app/Preferences.java:142
+Chinese\ (Hong\ Kong)=\uc911\uad6d\uc5b4(\ud64d\ucf69)
+
+#: ../../../processing/app/Preferences.java:144
+Chinese\ (Taiwan)=\uc911\uad6d\uc5b4(\ub300\ub9cc)
+
+#: ../../../processing/app/Preferences.java:143
+Chinese\ (Taiwan)\ (Big5)=\uc911\uad6d\uc5b4(\ub300\ub9cc)(Big5)
#: Preferences.java:88
-!Chinese\ Traditional=
+Chinese\ Simplified=\uc911\uad6d\uc5b4 \uac04\uccb4
-#: Editor.java:514 Editor.java:1977
+#: Preferences.java:89
+Chinese\ Traditional=\uc911\uad6d\uc5b4 \ubc88\uccb4
+
+#: Editor.java:521 Editor.java:2024
Close=\ub2eb\uae30
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
Comment/Uncomment=\uc8fc\uc11d\ucd94\uac00/\uc8fc\uc11d\uc0ad\uc81c
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\ucef4\ud30c\uc77c \uc5d0\ub7ec,\uc774 \ucf54\ub4dc\ub97c {0}\ub85c \uc81c\ucd9c\ud574 \uc8fc\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=\uc2a4\ucf00\uce58 \ucef4\ud30c\uc77c...
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=\uc2a4\ucf00\uce58\ub97c \ucef4\ud30c\uc77c \uc911\u2026
#: EditorConsole.java:152
Console\ Error=\ucf58\uc194 \uc624\ub958
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
Copy=\ubcf5\uc0ac
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
Copy\ as\ HTML=HTML\ub85c \ubcf5\uc0ac
#: ../../../processing/app/EditorStatus.java:456
-!Copy\ error=
+Copy\ error=\ubcf5\uc0ac \uc5d0\ub7ec
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=\ud3ec\ub7fc\uc744 \uc704\ud574 \ubcf5\uc0ac
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=\ud3ec\ub7fc\uc6a9\uc73c\ub85c \ubcf5\uc0ac
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}''\ub97c \uc2a4\ucf00\uce58\uc5d0 \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Editor.java:2141
+#: Editor.java:2188
Could\ not\ copy\ to\ a\ proper\ location.=\uc9c0\uc815\ud55c \uc704\uce58\ub85c \ud30c\uc77c\uc744 \ubcf5\uc0ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Editor.java:2132
+#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=\uc2a4\ucf00\uce58 \ud3f4\ub354\ub97c \uc0dd\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Editor.java:2159
+#: Editor.java:2206
Could\ not\ create\ the\ sketch.=\uc2a4\ucf00\uce58\ub97c \uc0dd\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
Could\ not\ delete\ "{0}".="{0}"\ub97c \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
Could\ not\ delete\ the\ existing\ ''{0}''\ file.=''{0}'' \ud30c\uc77c\uc744 \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
Could\ not\ delete\ {0}={0}\ub97c \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
-!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?={0}\uc5d0\uc11c boards.txt \ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc74c. pre-1.5 \uc778\uac00\uc694?
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
#, java-format
-!Could\ not\ find\ tool\ {0}=
+Could\ not\ find\ tool\ {0}=\ud234 {0}\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc74c
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
#, java-format
-!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\ud328\ud0a4\uc9c0 {1}\uc5d0\uc11c \ud234 {0}\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc74c
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=URL {0}\ub97c\n\uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n
+Could\ not\ open\ the\ URL\n{0}=URL {0}\ub97c\n\uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=\ud3f4\ub354 {0}\ub97c\n\uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n
+Could\ not\ open\ the\ folder\n{0}=\ud3f4\ub354 {0}\ub97c\n\uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\uc2a4\ucf00\uce58\ub97c \uc81c\ub300\ub85c \ub2e4\uc2dc \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ubb38\uc81c\uac00 \uc788\uc5b4\uc11c \uc544\ub9c8\ub3c4 \ub2e4\ub978 \ud14d\uc2a4\ud2b8 \uc5d0\ub514\ud130\uc5d0,\n\ubcf5\uc0ac\ud558\uc5ec \ubd99\uc5ec\ub123\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.
+#: Sketch.java:1769
+Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\uc2a4\ucf00\uce58\ub97c \uc81c\ub300\ub85c \ub2e4\uc2dc \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ubb38\uc81c\uac00 \uc788\uc5b4\uc11c \uc544\ub9c8\ub3c4 \ub2e4\ub978 \ud14d\uc2a4\ud2b8 \uc5d0\ub514\ud130\uc5d0,\n \ubcf5\uc0ac\ud558\uc5ec \ubd99\uc5ec\ub123\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.
-#: Sketch.java:1810
+#: Sketch.java:1768
Could\ not\ re-save\ sketch=\uc7ac \uc800\uc7a5\uc744 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
#: Theme.java:52
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\uceec\ub7ec \ud14c\ub9c8\ub97c \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ud504\ub85c\uc138\uc2f1\uc744 \ub2e4\uc2dc \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4.
-#: Preferences.java:210
+#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\uae30\ubcf8 \uc124\uc815\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub97c \ub2e4\uc2dc \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4.
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
Could\ not\ read\ preferences\ from\ {0}={0}\ub85c \ubd80\ud130 \ud658\uacbd\uc124\uc815\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
-#: Base.java:2196
+#: Base.java:2482
#, java-format
Could\ not\ remove\ old\ version\ of\ {0}={0}\uc758 \uc774\uc804 \ubc84\uc83c\uc744 \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}" \ub97c "{1}"\ub85c \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Sketch.java:479
+#: Sketch.java:475
Could\ not\ rename\ the\ sketch.\ (0)=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. (0)
-#: Sketch.java:500
+#: Sketch.java:496
Could\ not\ rename\ the\ sketch.\ (1)=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. (1)
-#: Sketch.java:507
+#: Sketch.java:503
Could\ not\ rename\ the\ sketch.\ (2)=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. (2)
-#: Base.java:2206
+#: Base.java:2492
#, java-format
Could\ not\ replace\ {0}={0}\ub97c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
#: tools/Archiver.java:74
Couldn't\ archive\ sketch=\uc2a4\ucf00\uce58\ub97c \ubcf4\uad00 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
-#: Sketch.java:1689
+#: Sketch.java:1647
Couldn't\ determine\ program\ size\:\ {0}=\ud504\ub85c\uadf8\ub7a8\uc758 \uc0ac\uc774\uc988\ub97c \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4\: {0}
-#: Sketch.java:620
+#: Sketch.java:616
Couldn't\ do\ it=\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
-!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+#: debug/BasicUploader.java:209
+Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=\uc120\ud0dd\ud55c \ud3ec\ud2b8\uc5d0 \ubcf4\ub4dc\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc62c\ubc14\ub978 \ud3ec\ud2b8\ub97c \uc120\ud0dd\ud588\ub294\uc9c0 \ud655\uc778\ud558\uc138\uc694. \ub9cc\uc57d \ub9de\ub2e4\uba74 \ubcf4\ub4dc\uc5d0 \uc0c8\ub85c \uc5c5\ub85c\ub4dc\ub97c \ud558\uace0 \ubcf4\ub4dc\uc758 \ub9ac\uc14b\ubc84\ud2bc\uc744 \ub204\ub974\uc138\uc694.
#: ../../../processing/app/Preferences.java:82
-!Croatian=
+Croatian=\ud06c\ub85c\uc544\ud2f0\uc544\uc5b4
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
Cut=\uc798\ub77c\ub0b4\uae30
#: ../../../processing/app/Preferences.java:83
-!Czech=
+Czech=\uccb4\ucf54\uc5b4
-#: Preferences.java:89
-!Danish=
+#: Preferences.java:90
+Danish=\ub374\ub9c8\ud06c\uc5b4
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\ub4e4\uc5ec\uc4f0\uae30 \uc0ad\uc81c
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
Delete=\uc0ad\uc81c
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\ub514\ubc14\uc774\uc2a4\uac00 \uc751\ub2f5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc62c\ubc14\ub978 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8\uac00 \uc120\ud0dd\uc774 \ub418\uc5c8\ub294\uc9c0 \ud655\uc778\ud558\uac70\ub098\ub370\uc774\ud130\ub97c \ub0b4\ubcf4\ub0b4\uae30 \uc804\uc5d0 \ubcf4\ub4dc\ub97c \ub9ac\uc14b\ud558\uae30 \ubc14\ub78d\ub2c8\ub2e4.
+#: debug/Uploader.java:199
+Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\ub514\ubc14\uc774\uc2a4\uac00 \uc751\ub2f5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc62c\ubc14\ub978 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8\uac00 \uc120\ud0dd\uc774 \ub418\uc5c8\ub294\uc9c0 \ud655\uc778\ud558\uac70\ub098 \ub370\uc774\ud130\ub97c \ub0b4\ubcf4\ub0b4\uae30 \uc804\uc5d0 \ubcf4\ub4dc\ub97c \ub9ac\uc14b\ud558\uae30 \ubc14\ub78d\ub2c8\ub2e4.
#: tools/FixEncoding.java:57
Discard\ all\ changes\ and\ reload\ sketch?=\ubaa8\ub4e0 \ubcc0\uacbd\uc744 \ucde8\uc18c\ud558\uace0 \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \ub85c\ub4dc\ud558\ub098\uc694?
-#: Editor.java:2017
+#: Editor.java:2064
Don't\ Save=\uc800\uc7a5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4
-#: Editor.java:2228 Editor.java:2264
-Done\ Saving.=\uc800\uc7a5 \uc644\ub8cc
+#: Editor.java:2275 Editor.java:2311
+Done\ Saving.=\uc800\uc7a5 \uc644\ub8cc.
-#: Editor.java:2463
+#: Editor.java:2510
Done\ burning\ bootloader.=\ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 \uc644\ub8cc
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
Done\ compiling.=\ucef4\ud30c\uc77c \uc644\ub8cc
-#: Editor.java:2517
+#: Editor.java:2564
Done\ printing.=\uc778\uc1c4 \uc644\ub8cc
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
Done\ uploading.=\uc5c5\ub85c\ub4dc \uc644\ub8cc
-#: Preferences.java:90
-!Dutch=
+#: Preferences.java:91
+Dutch=\ub124\ub378\ub780\ub4dc\uc5b4
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+Dutch\ (Netherlands)=\ub124\ub35c\ub780\ub4dc\uc5b4(\ub124\ub35c\ub780\ub4dc)
+
+#: Editor.java:1130
Edit=\ud3b8\uc9d1
-#: Preferences.java:354
+#: Preferences.java:370
Editor\ font\ size\:\ =\uc5d0\ub514\ud130 \uae00\uaf34 \ud06c\uae30\:
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: Preferences.java:353
+Editor\ language\:\ =\uc5d0\ub514\ud130 \uc5b8\uc5b4\:
-#: Preferences.java:91
-!English=
+#: Preferences.java:92
+English=\uc601\uc5b4
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+English\ (United\ Kingdom)=\uc601\uc5b4(\uc601\uad6d)
+
+#: Editor.java:1062
Environment=\ud658\uacbd
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=\uc5d0\ub7ec
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
Error\ adding\ file=\ud30c\uc77c \ucd94\uac00 \uc624\ub958
-#: debug/Compiler.java:426
-Error\ compiling.=\ucef4\ud30c\uc77c \uc624\ub958 \ubc1c\uc0dd
+#: debug/Compiler.java:369
+Error\ compiling.=\ucef4\ud30c\uc77c \uc624\ub958 \ubc1c\uc0dd.
-#: Base.java:1433
+#: Base.java:1674
Error\ getting\ the\ Arduino\ data\ folder.=\uc544\ub450\uc774\ub178 \ub370\uc774\ud130 \ud3f4\ub354\ub97c \uac00\uc838\uc62c \ub54c \uc5d0\ub7ec \ubc1c\uc0dd
-#: Serial.java:567
+#: Serial.java:593
#, java-format
-Error\ inside\ Serial.{0}()=Serial.{0}() \ub0b4\ubd80 \uc5d0\ub7ec
+Error\ inside\ Serial.{0}()=\uc2dc\ub9ac\uc5bc \ub0b4\ubd80 \uc5d0\ub7ec.{0}()
#: ../../../processing/app/Base.java:1232
-!Error\ loading\ libraries=
+Error\ loading\ libraries=\ub77c\uc774\ube0c\ub7ec\ub9ac \ubd88\ub7ec\uc624\uae30 \uc5d0\ub7ec
#: ../../../processing/app/debug/TargetPlatform.java:95
#: ../../../processing/app/debug/TargetPlatform.java:106
#: ../../../processing/app/debug/TargetPlatform.java:117
#, java-format
-!Error\ loading\ {0}=
+Error\ loading\ {0}={0} \ubd88\ub7ec\uc624\uae30 \uc5d0\ub7ec
-#: Serial.java:154
+#: Serial.java:181
#, java-format
Error\ opening\ serial\ port\ ''{0}''.=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}'' \ub97c \uc5ec\ub294\ub370 \uc5d0\ub7ec \ubc1c\uc0dd
-#: Preferences.java:261
+#: Preferences.java:277
Error\ reading\ preferences=\ud658\uacbd\uc124\uc815\uc744 \uc77d\ub294 \uc911 \uc624\ub958
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\ud658\uacbd\uc124\uc815\uc744 \uc77d\ub294 \uc911 \uc624\ub958. {0}\uc744 \uc0ad\uc81c(\ub610\ub294 \uc774\ub3d9)\ud558\uace0\n\uc544\ub450\uc774\ub178\ub97c \ub2e4\uc2dc \uc2dc\uc791\ud569\ub2c8\ub2e4.
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
-!Error\ starting\ discovery\ method\:\ =
+Error\ starting\ discovery\ method\:\ =\ub514\uc2a4\ucee4\ubc84\ub9ac \ubc29\ubc95\uc744 \ud560\ub54c \uc624\ub958\:
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
-!Error\ touching\ serial\ port\ ''{0}''.=
+Error\ touching\ serial\ port\ ''{0}''.=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}'' \ub3d9\uc791\uc911 \uc5d0\ub7ec \ubc1c\uc0dd.
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
Error\ while\ burning\ bootloader.=\ubd80\ud2b8\ub85c\ub354 \uad7d\ub294\uc911 \uc5d0\ub7ec\ubc1c\uc0dd
#: ../../../processing/app/Editor.java:2555
-!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\ubd80\ud2b8\ub85c\ub354\ub97c \uad6c\uc6b8\ub54c \uc624\ub958\: \uc124\uc815 \uac12'{0}' \uc774 \uc5c6\uc74c
#: SketchCode.java:83
#, java-format
Error\ while\ loading\ code\ {0}=\ucf54\ub4dc {0}\ub97c \ub85c\ub529\ud558\ub294 \uc911 \uc5d0\ub7ec
-#: Editor.java:2520
-Error\ while\ printing.=\uc778\uc1c4\ud558\ub294 \uc911\uc5d0 \uc624\ub958 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.
+#: Editor.java:2567
+Error\ while\ printing.=\uc778\ud670\ud558\ub294 \uc911\uc5d0 \uc624\ub958 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
-!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\uc5c5\ub85c\ub4dc \uc624\ub958\: \uc124\uc815 \uac12'{0}' \uc774 \uc5c6\uc74c
-#: Preferences.java:92
-!Estonian=
+#: Preferences.java:93
+Estonian=\uc5d0\uc2a4\ud1a0\ub2c8\uc544\uc5b4
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+Estonian\ (Estonia)=\uc5d0\uc2a4\ud1a0\ub2c8\uc544\uc5b4(\uc5d0\uc2a4\ud1a0\ub2c8\uc544)
+
+#: Editor.java:516
Examples=\uc608\uc81c
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=\ub0b4\ubcf4\ub0b4\uae30 \ucde8\uc18c, \ubcc0\uacbd\uc0ac\ud56d\uc740 \uba3c\uc800 \uc800\uc7a5\ub418\uc57c \ud569\ub2c8\ub2e4.
+#: Editor.java:2482
+Export\ canceled,\ changes\ must\ first\ be\ saved.=\ub0b4\ubcf4\ub0b4\uae30 \ucde8\uc18c, \ubcc0\uacbd \uc0ac\ud56d\uc740 \uba3c\uc800 \uc800\uc7a5\ub418\uc57c \ud569\ub2c8\ub2e4.
-#: Base.java:1814
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
+#: Editor.java:491
File=\ud30c\uc77c
#: Preferences.java:94
-!Filipino=
+Filipino=\ud544\ub9ac\ud540\uc5b4
#: FindReplace.java:124 FindReplace.java:127
Find=\ucc3e\uae30
-#: Editor.java:1235
+#: Editor.java:1249
Find\ Next=\ub2e4\uc74c \ucc3e\uae30
-#: Editor.java:1245
+#: Editor.java:1259
Find\ Previous=\uc774\uc804 \ucc3e\uae30
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
Find\ in\ Reference=\ucc38\uc870\uc5d0\uc11c \ucc3e\uae30
-#: Editor.java:1220
-Find...=\ucc3e\uae30...
+#: Editor.java:1234
+Find...=\ucc3e\uae30\u2026
#: FindReplace.java:80
Find\:=\ucc3e\uae30\:
+#: ../../../processing/app/Preferences.java:147
+Finnish=\uc885\ub8cc
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
Fix\ Encoding\ &\ Reload=\uc778\ucf54\ub529 \uc218\uc815 & \uc0c8\ub85c \uace0\uce68
-#: ../../../processing/app/Base.java:2057
-!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+#: Base.java:1851
+For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\ub77c\uc774\ube0c\ub7ec\ub9ac \uc124\uce58\ub97c \uc704\ud574\uc11c \ub2e4\uc74c \uc0ac\uc774\ud2b8\ub97c \ucc38\uace0\ud558\uc138\uc694\: http\://arduino.cc/en/Guide/Libraries\n
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
-!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-
-#: Preferences.java:93
-!French=
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=\uc790\uc8fc \ubb3b\ub294 \uc9c8\ubb38
+#: debug/BasicUploader.java:80
+Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =1200bps\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud3ec\ud2b8\ub97c \ub9ac\uc14b\ud569\ub2c8\ub2e4.
#: Preferences.java:95
-!Galician=
+French=\ud504\ub791\uc2a4\uc5b4
-#: ../../../processing/app/Preferences.java:94
-!Georgian=
+#: Editor.java:1097
+Frequently\ Asked\ Questions=\uc790\uc8fc \ubb3b\ub294 \uc9c8\ubb38
#: Preferences.java:96
-!German=
+Galician=\uac08\ub9ac\uc2dc\uc544\uc5b4
-#: Editor.java:1041
-Getting\ Started=\uc2dc\uc791\ud558\uae30
+#: ../../../processing/app/Preferences.java:94
+Georgian=\uc870\uc9c0\uc548\uc5b4
#: Preferences.java:97
-!Greek=
+German=\ub3c5\uc77c\uc5b4
-#: Base.java:1799
+#: Editor.java:1054
+Getting\ Started=\uc2dc\uc791\ud558\uae30
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=\uc804\uc5ed \ubcc0\uc218\ub294 ({2}%%)\uc758 \ub3d9\uc801 \uba54\ubaa8\ub9ac\uc911 {0}\ubc14\uc774\ud2b8\ub97c \uc0ac\uc6a9, {3}\ubc14\uc774\ud2b8\uc758 \uc9c0\uc5ed\ubcc0\uc218\uac00 \ub0a8\uc740. \ucd5c\ub300\ub294 {1} \ubc14\uc774\ud2b8.
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\uc804\uc5ed \ubcc0\uc218\ub294 {0} \ubc14\uc774\ud2b8\uc758 \ub3d9\uc801 \uba54\ubaa8\ub9ac\ub97c \uc0ac\uc6a9.
+
+#: Preferences.java:98
+Greek=\uadf8\ub9ac\uc2a4\uc5b4
+
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
+#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
+#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
-!Hebrew=
+Hebrew=\ud788\ube0c\ub9ac\uc5b4
-#: Editor.java:1002
+#: Editor.java:1015
Help=\ub3c4\uc6c0\ub9d0
-#: ../../../processing/app/Preferences.java:98
-!Hindi=
+#: Preferences.java:99
+Hindi=\ud78c\ub514\uc5b4
-#: Sketch.java:299
+#: Sketch.java:295
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\uc2a4\ucf00\uce58\ub97c \ub2e4\ub978 \uc774\ub984\uc73c\ub85c \ubc14\uafb8\uae30 \uc804\uc5d0 \n\uc800\uc7a5\ud558\ub294 \uac83\uc740 \uc5b4\ub5a4\uac00\uc694?
-#: Sketch.java:886
+#: Sketch.java:882
How\ very\ Borges\ of\ you=How very Borges of you
-#: Preferences.java:98
-!Hungarian=
+#: Preferences.java:100
+Hungarian=\ud5dd\uac00\ub9ac\uc5b4
#: FindReplace.java:96
Ignore\ Case=\ub300\uc18c\ubb38\uc790 \ubb34\uc2dc
-#: Base.java:1207
+#: Base.java:1058
Ignoring\ bad\ library\ name=\uc798\ubabb\ub41c \ub77c\uc774\ube0c\ub7ec\ub9ac \uc774\ub984\uc744 \ubb34\uc2dc
-#: Base.java:1132
+#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=\uc798\ubabb\ub41c \uc774\ub984\uc758 \uc2a4\ucf00\uce58\ub97c \ubb34\uc2dc
-#: Editor.java:629
-Import\ Library...=\ub77c\uc774\ube0c\ub7ec\ub9ac \uac00\uc838\uc624\uae30...
+#: Editor.java:636
+Import\ Library...=\ub77c\uc774\ube0c\ub7ec\ub9ac \uac00\uc838\uc624\uae30\u2026
#: ../../../processing/app/Sketch.java:736
-!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\uc544\ub450\uc774\ub178 1.0\uc5d0\uc11c \uae30\ubcf8 \ud30c\uc77c \ud655\uc7a5\uc790\uac00 .pde\uc5d0\uc11c .ino\ub85c \ubc14\ub00c\uc5c8\uc2b5\ub2c8\ub2e4. \n\uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58 (\ub2e4\ub978 \uc774\ub984\uc73c\ub85c \uc800\uc7a5\ud558\ub294 \uac83\uc744 \ud3ec\ud568\ud574\uc11c)\ub294 \uc0c8\ub85c\uc6b4 \ud655\uc7a5\uc790\ub97c \n\uc0ac\uc6a9\ud569\ub2c8\ub2e4. \uae30\uc874\uc758 \ud655\uc7a5\uc790\ub294 \uc800\uc7a5\uc774 \ub420\ub54c \uc5c5\ub370\uc774\ud2b8\ub418\uc9c0\ub9cc \uc124\uc815\uc5d0\uc11c \uc774\uac83\uc744 \n\ubc14\uafc0 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \n\n\uc2a4\ucf00\uce58\ub97c \uc800\uc7a5\ud558\uace0 \ud30c\uc77c \ud655\uc7a5\uc790\ub97c \ubc14\uafb8\uaca0\uc2b5\ub2c8\uae4c?
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
Increase\ Indent=\ub4e4\uc5ec\uc4f0\uae30 \ucd94\uac00
-#: Preferences.java:99
-!Indonesian=
+#: Preferences.java:101
+Indonesian=\uc778\ub3c4\ub124\uc2dc\uc544\uc5b4
#: ../../../processing/app/Base.java:1204
#, java-format
-!Invalid\ library\ found\ in\ {0}\:\ {1}=
-
-#: Preferences.java:100
-!Italian=
-
-#: Preferences.java:101
-!Japanese=
+Invalid\ library\ found\ in\ {0}\:\ {1}=\uc798\ubabb\ub41c \ub77c\uc774\ube0c\ub7ec\ub9ac\uac00 {0}\uc5d0\uc11c \ubc1c\uacac\: {1}
#: Preferences.java:102
-!Korean=
+Italian=\uc774\ud0c8\ub9ac\uc544\uc5b4
#: Preferences.java:103
-!Latvian=
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+Japanese=\uc77c\ubcf8\uc5b4
#: Preferences.java:104
-!Lithuaninan=
+Korean=\ud55c\uad6d\uc5b4
+
+#: Preferences.java:105
+Latvian=\ub77c\ud2b8\ube44\uc544\uc5b4
+
+#: Base.java:2699
+Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\ub77c\uc774\ube0c\ub7ec\ub9ac\uac00 \ucd94\uac00\ub410\uc2b5\ub2c8\ub2e4. "Import library" \uba54\ub274\ub97c \ud655\uc778\ud558\uc138
+
+#: Preferences.java:106
+Lithuaninan=\ub9ac\ud22c\uc544\ub2c8\uc544\uc5b4
#: ../../../processing/app/Sketch.java:1660
-!Low\ memory\ available,\ stability\ problems\ may\ occur=
+Low\ memory\ available,\ stability\ problems\ may\ occur=\uba54\ubaa8\ub9ac \ubd80\uc871, \uc548\uc815\uc131 \ubb38\uc81c\uac00 \uc0dd\uae38 \uc218 \uc788\uc2b5\ub2c8\ub2e4.
-#: ../../../processing/app/Preferences.java:106
-!Marathi=
+#: Preferences.java:107
+Marathi=\ub9c8\ub77c\ud2f0\uc5b4
-#: Base.java:1826
+#: Base.java:2112
Message=\uba54\uc2dc\uc9c0
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
+#: Sketch.java:1712
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* \uc8fc\uc11d */\uc758 \ub05d\uc5d0 */ \ub204\ub77d
-#: Preferences.java:433
-More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\ucd94\uac00\uc801\uc778 \ud658\uacbd \uc124\uc815\uc740 \uc9c1\uc811 \ud30c\uc77c\uc5d0\uc11c \ud3b8\uc9d1\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4
+#: Preferences.java:449
+More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\ucd94\uac00\uc801\uc778 \ud658\uacbd \uc124\uc815\uc740 \ud30c\uc77c\uc5d0\uc11c \uc9c1\uc811 \ud3b8\uc9d1\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4
-#: Editor.java:2109
+#: Editor.java:2156
Moving=\uc774\ub3d9
-#: Sketch.java:286
+#: Sketch.java:282
Name\ for\ new\ file\:=\uc0c8\ub85c\uc6b4 \ud30c\uc77c\uc744 \uc704\ud55c \uc774\ub984\:
-#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
-!Network\ upload\ using\ programmer\ not\ supported=
+#: ../../../processing/app/Preferences.java:149
+Nepali=\ub124\ud314\uc5b4
-#: Editor.java:486 EditorToolbar.java:41
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+Network\ upload\ using\ programmer\ not\ supported=\ud504\ub85c\uadf8\ub798\uba38\ub97c \uc0ac\uc6a9\ud55c \ub124\ud2b8\uc6cc\ud06c \uc5c5\ub85c\ub4dc\ub294 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc74c
+
+#: EditorToolbar.java:41 Editor.java:493
New=\uc0c8 \ud30c\uc77c
#: EditorToolbar.java:46
@@ -619,21 +658,21 @@ New\ Editor\ Window=\uc0c8 \uc5d0\ub514\ud130 \ucc3d
New\ Tab=\uc0c8 \ud0ed
#: SerialMonitor.java:112
-Newline=Newline
+Newline=\uc0c8 \uc904
#: EditorHeader.java:340
Next\ Tab=\ub2e4\uc74c \ud0ed
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=\uc544\ub2c8\uc694
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\ubcf4\ub4dc\uac00 \uc120\ud0dd\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4; \ud234>\ubcf4\ub4dc \uba54\ub274\uc5d0\uc11c \ubcf4\ub4dc\ub97c \uc120\ud0dd\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
No\ changes\ necessary\ for\ Auto\ Format.=\uc790\ub3d9 \ud3ec\ub9f7\uc744 \uc704\ud574 \ubcc0\uacbd\uc774 \ud544\uc694\uc5c6\uc2b5\ub2c8\ub2e4.
-#: Editor.java:366
+#: Editor.java:373
No\ files\ were\ added\ to\ the\ sketch.=\uc2a4\ucf00\uce58\uc5d0 \ud30c\uc77c\uc774 \ucd94\uac00\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4.
#: Platform.java:167
@@ -642,82 +681,89 @@ No\ launcher\ available=\ub7f0\ucc98\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b
#: SerialMonitor.java:112
No\ line\ ending=No line ending
-#: Base.java:538
+#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\ub2f9\uc2e0\uc758 \uc2e0\uc120\ud55c \uacf5\uae30\ub97c \uc704\ud55c \uc2dc\uac04\uc785\ub2c8\ub2e4.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"="{0}" \uac00 \ucc38\uc870\uc5d0\uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
+No\ reference\ available\ for\ "{0}"="{0}" \uac00 \uc7a0\uc870\uc5d0 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
#: ../../../processing/app/Base.java:309
-!No\ valid\ configured\ cores\ found\!\ Exiting...=
+No\ valid\ configured\ cores\ found\!\ Exiting...=\uc720\ud6a8\ud55c \ucf54\uc5b4 \uc124\uc815\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uc885\ub8cc\uc911\u2026
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI \ub3d9\uc791\uc744 \uc124\uc815\ud560\ub54c \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\uc744 \ud588\uc9c0\ub9cc \uce58\uba85\uc801\uc774\uc9c0\ub294 \uc54a\uc2b5\ub2c8\ub2e4.
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\ud3f4\ub354 {0}\uc5d0 \uc720\ud6a8\ud55c \ud558\ub4dc\uc6e8\uc5b4 \uc815\uc758\uac00 \ubc1c\uacac\ub418\uc9c0 \uc54a\uc74c.
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI \ub3d9\uc791\uc744 \uc124\uc815\ud560 \ub54c \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\uc744 \ud588\uc9c0\ub9cc \uce58\uba85\uc801\uc774\uc9c0\ub294 \uc54a\uc2b5\ub2c8\ub2e4.
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\uc544\ub2c8\uc694
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
#: ../../../processing/app/Preferences.java:108
-!Norwegian\ Bokm\u00e5l=
+Norwegian\ Bokm\u00e5l=\ub178\ub974\uc6e8\uc774 \ube0c\ud06c\ubab0\uc5b4
#: ../../../processing/app/Sketch.java:1656
-!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\uba54\ubaa8\ub9ac\uac00 \ucda9\ubd84\ud558\uc9c0 \uc54a\uc74c; \uba54\ubaa8\ub9ac\ub97c \uc904\uc774\uae30 \uc704\ud55c \ud301\uc744 \uc704\ud574 \ucc38\uace0 http\://www.arduino.cc/en/Guide/Troubleshooting\#size
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
OK=\ud655\uc778
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=\uc2a4\ucf00\uce58\uc5d0 1\uac1c\uc758 \ud30c\uc77c\uc774 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
+#: Sketch.java:992 Editor.java:376
+One\ file\ added\ to\ the\ sketch.=\ud30c\uc77c\uc774 \uc2a4\ucf00\uce58\uc5d0 \ucd94\uac00\ub410\uc2b5\ub2c8\ub2e4.
#: EditorToolbar.java:41
Open=\uc5f4\uae30
-#: Editor.java:2641
+#: Editor.java:2688
Open\ URL=URL \uc5f4\uae30
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=\uc544\ub450\uc774\ub178 \uc2a4\ucf00\uce58\ub97c \uc5ec\uc138\uc694...
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=\uc544\ub450\uc774\ub178 \uc2a4\ucf00\uce58\ub97c \uc5ec\uc138\uc694\u2026
#: EditorToolbar.java:46
Open\ in\ Another\ Window=\ub2e4\ub978 \ucc3d\uc5d0\uc11c \uc5f4\uae30
-#: Editor.java:494 Base.java:903
-Open...=\uc5f4\uae30...
+#: Base.java:903 Editor.java:501
+Open...=\uc5f4\uae30\u2026
-#: Editor.java:556
+#: Editor.java:563
Page\ Setup=\ud398\uc774\uc9c0 \uc124\uc815
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
-!Password\:=
+Password\:=\ud328\uc2a4\uc6cc\ub4dc\:
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
Paste=\ubd99\uc5ec\ub123\uae30
-#: Preferences.java:105
-!Persian=
+#: Preferences.java:109
+Persian=\ud398\ub974\uc2dc\uc544\uc5b4
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\uc2a4\ucf00\uce58 > \ub77c\uc774\ube0c\ub7ec\ub9ac \uac00\uc838\uc624\uae30 \uba54\ub274\uc5d0\uc11c SPI \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uac00\uc838\uc624\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=JDK 1.5 \uc774\uc0c1\uc744 \uc124\uce58\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=JDK 1.5\uc774\uc0c1\uc744 \uc124\uce58\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.
-#: Preferences.java:106
-!Polish=
+#: Preferences.java:110
+Polish=\ud3f4\ub780\ub4dc\uc5b4
#: ../../../processing/app/Editor.java:718
-!Port=
+Port=\ud3ec\ud2b8
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+Portugese=\ud3ec\ub8e8\ud22c\uce7c\uc5b4
-#: Editor.java:576 Preferences.java:279
-Preferences=\ud658\uacbd \uc124\uc815
+#: ../../../processing/app/Preferences.java:127
+Portuguese\ (Brazil)=\ud3ec\ub8e8\ud22c\uce7c\uc5b4(\ube0c\ub77c\uc9c8)
+
+#: ../../../processing/app/Preferences.java:128
+Portuguese\ (Portugal)=\ud3ec\ub8e8\ud22c\uce7c\uc5b4(\ud3ec\ub8e8\ud22c\uce7c)
+
+#: Preferences.java:295 Editor.java:583
+Preferences=\ud658\uacbd\uc124\uc815
#: FindReplace.java:123 FindReplace.java:128
Previous=\uc774\uc804
@@ -725,303 +771,313 @@ Previous=\uc774\uc804
#: EditorHeader.java:326
Previous\ Tab=\uc774\uc804 \ud0ed
-#: Editor.java:564
+#: Editor.java:571
Print=\uc778\uc1c4
-#: Editor.java:2524
+#: Editor.java:2571
Printing\ canceled.=\uc778\uc1c4\uac00 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
-#: Editor.java:2500
-Printing...=\uc778\uc1c4...
+#: Editor.java:2547
+Printing...=\uc778\uc1c4\u2026
-#: Base.java:1671
+#: Base.java:1957
Problem\ Opening\ Folder=\ud3f4\ub354\ub97c \uc5f4\ub54c \ubb38\uc81c \ubc1c\uc0dd
-#: Base.java:1647
+#: Base.java:1933
Problem\ Opening\ URL=URL\uc744 \uc5f4\ub54c \ubb38\uc81c \ubc1c\uc0dd
-#: Base.java:220
+#: Base.java:227
Problem\ Setting\ the\ Platform=\ud50c\ub7ab\ud3fc \uc124\uc815 \ubb38\uc81c
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
-!Problem\ accessing\ board\ folder\ /www/sd=
+Problem\ accessing\ board\ folder\ /www/sd=\ubcf4\ub4dc \ud3f4\ub354 /www/sd \uc811\uadfc\uc2dc \ubb38\uc81c
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
-!Problem\ accessing\ files\ in\ folder\ =
+Problem\ accessing\ files\ in\ folder\ =\ud3f4\ub354\ub0b4 \ud30c\uc77c \uc811\uadfc\uc2dc \ubb38\uc81c
-#: Base.java:1432
+#: Base.java:1673
Problem\ getting\ data\ folder=\ub370\uc774\ud130 \ud3f4\ub354\ub97c \uac00\uc838\uc624\ub294\ub370 \ubb38\uc81c \ubc1c\uc0dd
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
Problem\ moving\ {0}\ to\ the\ build\ folder=\ube4c\ub4dc \ud3f4\ub354\ub85c {0}\ub97c \uc774\ub3d9\ud560\ub54c \ubb38\uc81c \ubc1c\uc0dd
#: debug/Uploader.java:209
-Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\ubcf4\ub4dc\uc5d0 \uc5c5\ub85c\ub529\uc911\uc5d0 \ubb38\uc81c \ubc1c\uc0dd. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \ub97c \ucc38\uace0\ud558\uc138\uc694.
+Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\ubcf4\ub4dc\uc5d0 \uc5c5\ub85c\ub529\uc911\uc5d0 \ubb38\uc81c \ubc1c\uc0dd. \ub2e4\uc74c\uc744 \ucc38\uace0\ud558\uc138\uc694.http\://www.arduino.cc/en/Guide/Troubleshooting\#upload
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=\uc774\ub984\ubc14\uafb8\uae30 \ubb38\uc81c
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+Problem\ with\ rename=\uc774\ub984 \ubc14\uafb8\uae30 \ubb38\uc81c
-#: Editor.java:2090
+#: Editor.java:2137
Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\ud504\ub85c\uc138\uc2f1\uc740 \uc790\uccb4 \uc2a4\ucf00\uce58\uc640 .ino \ub098 .pde\ub85c \ub05d\ub098\ub294 \ud30c\uc77c\uc744\n\uc5f4\uc218 \uc788\uc2b5\ub2c8\ub2c8\ub2e4.
#: ../../../processing/app/I18n.java:86
-!Processor=
+Processor=\ud504\ub85c\uc138\uc11c
-#: Editor.java:695
+#: Editor.java:704
Programmer=\ud504\ub85c\uadf8\ub798\uba38
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=\uc885\ub8cc
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
Redo=\ub2e4\uc2dc \uc2e4\ud589
-#: Editor.java:1065
+#: Editor.java:1078
Reference=\ucc38\uc870
#: EditorHeader.java:300
Rename=\uc774\ub984 \ubc14\uafb8\uae30
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=\ubc14\uafb8\uae30
#: FindReplace.java:122 FindReplace.java:129
Replace\ &\ Find=\ubc14\uafb8\uae30 & \ucc3e\uae30
#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=\ubaa8\ub450 \ubc14\uafb8\uae30
+Replace\ All=\uc804\ubd80 \ubc14\uafb8\uae30
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
Replace\ the\ existing\ version\ of\ {0}?={0}\uc758 \uae30\uc874 \ubc84\uc804\uc744 \uad50\uccb4\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
#: FindReplace.java:81
-Replace\ with\:=\ub300\uccb4\:
+Replace\ with\:=\ub2e4\uc74c \ub0b4\uc6a9\uc73c\ub85c \ubc14\uafb8\uae30\:
-#: Preferences.java:109
-!Romanian=
+#: Preferences.java:113
+Romanian=\ub8e8\ub9c8\ub2c8\uc544\uc5b4
-#: Preferences.java:110
-!Russian=
+#: Preferences.java:114
+Russian=\ub7ec\uc2dc\uc544\uc5b4
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=\uc800\uc7a5
-#: Editor.java:530
-Save\ As...=\ub2e4\ub978 \uc774\ub984\uc73c\ub85c \uc800\uc7a5...
+#: Editor.java:537
+Save\ As...=\ub2e4\ub978 \uc774\ub984\uc73c\ub85c \uc800\uc7a5\u2026
-#: Editor.java:2270
-Save\ Canceled.=\uc800\uc7a5 \ucde8\uc18c
+#: Editor.java:2317
+Save\ Canceled.=\uc800\uc7a5 \ucde8\uc18c.
-#: Editor.java:2420
-Save\ changes\ before\ export?=\ub0b4\ubcf4\ub0b4\uae30\uc804\uc5d0 \ubcc0\uacbd\ub0b4\uc6a9\uc744 \uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
+#: Editor.java:2467
+Save\ changes\ before\ export?=\ub0b4\ubcf4\ub0b4\uae30\uc804\uc5d0 \ubcc0\uacbd \ub0b4\uc6a9\uc744 \uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
Save\ changes\ to\ "{0}"?\ \ =\ubcc0\uacbd \uc0ac\ud56d\uc744 "{0}"? \uc5d0 \uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=\uc2a4\ucf00\uce58 \ud3f4\ub354\ub97c \ub2e4\ub978\uc774\ub984\uc73c\ub85c \uc800\uc7a5...
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=\uc2a4\ucf00\uce58 \ud3f4\ub354\ub97c \ub2e4\ub978 \uc774\ub984\uc73c\ub85c \uc800\uc7a5\u2026
-#: Editor.java:2223 Editor.java:2261
-Saving...=\uc800\uc7a5...
+#: Editor.java:2270 Editor.java:2308
+Saving...=\uc800\uc7a5\u2026
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=\uc2a4\ucf00\uce58\ub97c \uc704\ud55c \ud3f4\ub354\ub97c \uc120\ud0dd(\ub610\ub294 \uc0c8\ub85c \ub9cc\ub4e4\uae30)...
+#: Base.java:1909
+Select\ (or\ create\ new)\ folder\ for\ sketches...=\uc2a4\ucf00\uce58\ub97c \uc704\ud55c \ud3f4\ub354\ub97c \uc120\ud0dd(\ub610\ub294 \uc0c8\ub85c \ub9cc\ub4e4\uae30)\u2026
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
Select\ All=\ubaa8\ub450 \uc120\ud0dd
-#: ../../../processing/app/Base.java:2845
-!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+#: Base.java:2636
+Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=\ucd94\uac00\ud558\ub824\ub294 zip \ud30c\uc77c \ub610\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ud3ec\ud568\ud558\ub294 \ud3f4\ub354\ub97c \uc120\ud0dd\ud558\uc138\uc694
-#: Sketch.java:979
+#: Sketch.java:975
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\uc2a4\ucf00\uce58\uc5d0 \ubcf5\uc0ac\ud558\uae30\uc704\ud574 \uc774\ubbf8\uc9c0 \ub610\ub294 \ub2e4\ub978 \ub370\uc774\ud130 \ud30c\uc77c\uc744 \uc120\ud0dd
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=\uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\ubd81 \uc704\uce58\ub97c \uc120\ud0dd
+#: Preferences.java:330
+Select\ new\ sketchbook\ location=\uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\ubd81 \uc704\uce58\ub97c \uc120\ud0dd\ud558\uc138\uc694
#: ../../../processing/app/debug/Compiler.java:146
-!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=\uc120\ud0dd\ub41c \ubcf4\ub4dc\uac00 '{0}' \ucf54\uc5b4(\uc778\uc2a4\ud1a8 \ub418\uc9c0 \uc54a\uc740)\ub97c \uc758\uc874\ud569\ub2c8\ub2e4
#: SerialMonitor.java:93
-Send=Send
+Send=\uc804\uc1a1
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
Serial\ Monitor=\uc2dc\ub9ac\uc5bc \ubaa8\ub2c8\ud130
-#: Serial.java:147
+#: Serial.java:174
#, java-format
Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}'' \uac00 \uc774\ubbf8 \uc0ac\uc6a9\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud3ec\ud2b8\ub97c \uc0ac\uc6a9\ud558\ub294 \ub2e4\ub978 \ud504\ub85c\uadf8\ub7a8\uc744 \uc885\ub8cc\ud558\uc2ed\uc2dc\uc694.
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
-!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}'' \uac00 \uc774\ubbf8 \uc0ac\uc6a9\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud3ec\ud2b8\ub97c \uc0ac\uc6a9\ud558\ub294 \ub2e4\ub978 \ud504\ub85c\uadf8\ub7a8\uc744 \uc885\ub8cc\ud558\uc2ed\uc2dc\uc694.
-#: Serial.java:167
+#: Serial.java:194
#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}''\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. Tools > Serial Port \uba54\ub274\uc5d0\uc11c \uc62c\ubc14\ub978 \ud3ec\ud2b8\ub97c\uc120\ud0dd\ud588\ub098\uc694?
+Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}''\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ud234 > \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 \uba54\ub274\uc5d0\uc11c \uc62c\ubc14\ub978 \ud3ec\ud2b8\ub97c\uc120\ud0dd\ud588\ub098\uc694?
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 {0} \ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ub2e4\ub978 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8\ub85c \uc5c5\ub85c\ub4dc\ub97c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
-#: Base.java:1440
+#: Base.java:1681
Settings\ issues=\uc124\uc815 \ubb38\uc81c
-#: Editor.java:634
+#: Editor.java:641
Show\ Sketch\ Folder=\uc2a4\ucf00\uce58 \ud3f4\ub354 \ubcf4\uc774\uae30
#: ../../../processing/app/EditorStatus.java:468
-!Show\ verbose\ output\ during\ compilation=
+Show\ verbose\ output\ during\ compilation=\ucef4\ud30c\uc77c\ud558\ub294 \ub3d9\uc548 \uc0c1\uc138 \ucd9c\ub825 \ubcf4\uc774\uae30
-#: Preferences.java:371
+#: Preferences.java:387
Show\ verbose\ output\ during\:\ =\ub2e4\uc74c \ub3d9\uc791\uc911 \uc790\uc138\ud55c \ucd9c\ub825 \ubcf4\uc774\uae30\:
-#: Editor.java:600
+#: Editor.java:607
Sketch=\uc2a4\ucf00\uce58
-#: Sketch.java:1796
+#: Sketch.java:1754
Sketch\ Disappeared=\uc2a4\ucf00\uce58\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2e4
-#: Base.java:1095
+#: Base.java:1411
Sketch\ Does\ Not\ Exist=\uc2a4\ucf00\uce58\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
Sketch\ is\ Read-Only=\uc2a4\ucf00\uce58\uac00 \uc77d\uae30 \uc804\uc6a9\uc785\ub2c8\ub2e4
-#: Sketch.java:298
+#: Sketch.java:294
Sketch\ is\ Untitled=\uc2a4\ucf00\uce58\uac00 \uc81c\ubaa9\uc774 \uc5c6\uc2b5\ub2c8\ub2e4
-#: Sketch.java:724
+#: Sketch.java:720
Sketch\ is\ read-only=\uc2a4\ucf00\uce58\ub294 \uc77d\uae30\uc804\uc6a9\uc785\ub2c8\ub2e4
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\uc2a4\ucf00\uce58\uac00 \ub108\ubb34 \ud07c; http\://www.arduino.cc/en/Guide/Troubleshooting\#size\uc774\uac83\uc744 \uc904\uc774\uae30 \uc704\ud55c \ub3c4\uc6c0\ub9d0
+#: Sketch.java:1653
+Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\uc2a4\ucf00\uce58\uac00 \ub108\ubb34 \ud07c; \uc774\uac83\uc744 \uc904\uc774\uae30 \uc704\ud574 \ub2e4\uc74c\uc744 \ucc38\uace0\ud558\uc138\uc694. http\://www.arduino.cc/en/Guide/Troubleshooting\#size
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=\uc2a4\ucf00\uce58\ub294 \ud504\ub85c\uadf8\ub7a8 \uc800\uc7a5 \uacf5\uac04 ({2}%%) \uc911 {0} \ubc14\uc774\ud2b8\ub97c \uc0ac\uc6a9. \ucd5c\ub300 {1} \ubc14\uc774\ud2b8.
+
+#: Editor.java:510
Sketchbook=\uc2a4\ucf00\uce58\ubd81
-#: Base.java:257
+#: Base.java:258
Sketchbook\ folder\ disappeared=\uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2c8\ub2e4.
-#: Preferences.java:299
+#: Preferences.java:315
Sketchbook\ location\:=\uc2a4\ucf00\uce58\ubd81 \uc704\uce58\:
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+Slovenian=\uc2ac\ub85c\ubca0\ub2c8\uc544\uc5b4
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\ud30c\uc77c\uc774 "\uc77d\uae30 \uc804\uc6a9" \uc73c\ub85c \ud45c\uc2dc\ub429\ub2c8\ub2e4. \ub530\ub77c\uc11c \n\ub2e4\ub978 \uc7a5\uc18c\uc5d0 \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \uc800\uc7a5\uc744 \ud558\uace0\n\ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2ed\uc2dc\uc694.
-#: Sketch.java:725
+#: Sketch.java:721
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\ud30c\uc77c\uc774 "\uc77d\uae30 \uc804\uc6a9" \uc73c\ub85c \ud45c\uc2dc\ub429\ub2c8\ub2e4.\n\ub2e4\ub978 \uc7a5\uc18c\uc5d0 \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \uc800\uc7a5\uc744 \ud574\uc57c \ud569\ub2c8\ub2e4.
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\uc8c4\uc1a1\ud569\ub2c8\ub2e4, "{0}"\uc774\ub984\uc758 \uc2a4\ucf00\uce58(\ub610\ub294 \ud3f4\ub354)\uac00 \uc774\ubbf8 \uc874\uc7ac\ud569\ub2c8\ub2e4.
-#: Preferences.java:111
-!Spanish=
+#: Preferences.java:115
+Spanish=\uc2a4\ud398\uc778\uc5b4
-#: Base.java:537
+#: Base.java:540
Sunshine=\ud587\uc0b4
-#: Preferences.java:83
-!System\ Default=
+#: ../../../processing/app/Preferences.java:153
+Swedish=\uc2a4\uc6e8\ub374\uc5b4
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
+#: Preferences.java:84
+System\ Default=\uc2dc\uc2a4\ud15c \uae30\ubcf8\uc124\uc815
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' \ud0a4\uc6cc\ub4dc\ub294 \ub354\uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2c8\ub2e4.
+#: Preferences.java:116
+Tamil=\ud0c0\ubc00\uc5b4
-#: debug/Compiler.java:483
+#: debug/Compiler.java:414
+The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' \ud0a4\uc6cc\ub4dc\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2c8\ub2e4.
+
+#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client \ud074\ub798\uc2a4\ub294 EthernetClient\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server \ud074\ub798\uc2a4\ub294 EthernetServer\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp \ud074\ub798\uc2a4\ub294 EthernetUdp\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
-#: Base.java:185
+#: Base.java:192
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\uc5d0\ub7ec \uba54\uc2dc\uc9c0\ub294 \ub2e4\uc74c\uc5d0 \ud45c\uc2dc\ub429\ub2c8\ub2e4. \ud558\uc9c0\ub9cc \uc544\ub450\uc774\ub178\ub294 \uc774\uc0c1 \uc5c6\uc774 \ub3d9\uc791\ud569\ub2c8\ub2e4.
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?="{0}" \ud30c\uc77c\uc740 \uc2a4\ucf00\uce58 \ud3f4\ub354 "{1}" \uc5d0 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.\na sketch folder named .\n\uc774 \ud3f4\ub354\ub97c \uc0dd\uc131\ud558\uace0 \ud30c\uc77c\uc744 \uc774\ub3d9\ud558\uace0 \uacc4\uc18d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
+The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?="{0}" \ud30c\uc77c\uc740 \uc2a4\ucf00\uce58 \ud3f4\ub354 "{1}" \uc5d0 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.\n\uc774 \ud3f4\ub354\ub97c \uc0dd\uc131\ud558\uace0 \ud30c\uc77c\uc744 \uc774\ub3d9\ud558\uace0 \uacc4\uc18d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\ub77c\uc774\ube0c\ub7ec\ub9ac "{0}"\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ub77c\uc774\ube0c\ub7ec\ub9ac \uc774\ub984\uc740 \uae30\ubcf8 \ubb38\uc790\uc640 \uc22b\uc790\ub97c \ud3ec\ud568\ud574\uc57c \ud569\ub2c8\ub2e4\n(\uc22b\uc790\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc73c\uba70 \uc2a4\ud398\uc774\uc2a4 \uc5c6\ub294 \uc544\uc2a4\ud0a4\ubb38\uc790\ub97c \uc0ac\uc6a9\ud558\uc138\uc694).\n
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\ub77c\uc774\ube0c\ub7ec\ub9ac "{0}"\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ub77c\uc774\ube0c\ub7ec\ub9ac \uc774\ub984\uc740 \uae30\ubcf8 \ubb38\uc790\uc640 \uc22b\uc790\ub97c \ud3ec\ud568\ud574\uc57c \ud569\ub2c8\ub2e4\n(\uc22b\uc790\ub85c \uc2dc\uc791\ud558\uc9c0 \uc54a\ub294 \uc2a4\ud398\uc774\uc2a4 \uc5c6\ub294 \uc544\uc2a4\ud0a4\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c\ud569\ub2c8\ub2e4)
-#: Sketch.java:378
+#: Sketch.java:374
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\uba54\uc778 \ud30c\uc77c\uc740 \ud655\uc7a5\uc790\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n("real" \ud504\ub85c\uadf8\ub798\ubc0d \ud658\uacbd\uc73c\ub85c \uc804\ud658\ud558\ub294\n \uc2dc\uac04\uc77c \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.)
-#: Sketch.java:360
+#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=\uc774\ub984\uc740 \ub9c8\uce68\ud45c\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Base.java:1096
+#: Base.java:1412
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\uc120\ud0dd\ud55c \uc2a4\ucf00\uce58\uac00 \ub354 \uc774\uc0c1 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2c8\ub2e4.\n\uc2a4\ucf00\uccb4\ubd81 \uba54\ub274\ub97c \uc5c5\ub370\uc774\ud2b8\ud558\uae30 \uc704\ud574 \uc544\ub450\uc774\ub178\ub97c\n\ub2e4\uc2dc \uc2dc\uc791\ud574\uc57c \ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.
-#: Base.java:1125
+#: Base.java:1430
#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\ \uc2a4\ucf00\uce58 "{0}" \ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\uc2a4\ucf00\uce58 \uc774\ub984\uc740 \uae30\ubcf8 \ubb38\uc790\uc640 \uc22b\uc790\ub97c \ud3ec\ud568\ud574\uc57c \ud569\ub2c8\ub2e4\n(\uc22b\uc790\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc73c\uba70 \uc2a4\ud398\uc774\uc2a4 \uc5c6\ub294 \uc544\uc2a4\ud0a4\ubb38\uc790\ub97c \uc0ac\uc6a9\ud558\uc138\uc694).\n\uc774 \uba54\uc2dc\uc9c0\ub97c \uc81c\uac70\ud558\ub824\uba74 {1}\uc5d0\uc11c \uc2a4\ucf00\uce58\ub97c \uc81c\uac70\ud558\uc138\uc694\n
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\uc2a4\ucf00\uce58 "{0}" \ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\uc2a4\ucf00\uce58 \uc774\ub984\uc740 \uae30\ubcf8 \ubb38\uc790\uc640 \uc22b\uc790\ub97c \ud3ec\ud568\ud574\uc57c \ud569\ub2c8\ub2e4\n(\uc22b\uc790\ub85c \uc2dc\uc791\ud558\uc9c0 \uc54a\ub294 \uc2a4\ud398\uc774\uc2a4 \uc5c6\ub294 \uc544\uc2a4\ud0a4\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c\ud569\ub2c8\ub2e4).\n\uc774 \uba54\uc2dc\uc9c0\ub97c \uc81c\uac70\ud558\ub824\uba74\n{1}\uc5d0\uc11c \uc2a4\ucf00\uce58\ub97c \uc81c\uac70\ud558\uc138\uc694
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\uc2a4\ucf00\uce58 \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2e4\n \uac19\uc740 \uc7a5\uc18c\uc5d0 \ub2e4\uc2dc \uc800\uc7a5\uc744 \uc2dc\ub3c4\ud569\ub2c8\ub2e4,\n\ud558\uc9c0\ub9cc \ucf54\ub4dc\ub97c \uc81c\uc678\ud55c \ub098\uba38\uc9c0 \ubd80\ubd84\uc740 \uc783\uc5b4\ubc84\ub9bd\ub2c8\ub2e4.
+#: Sketch.java:1755
+The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\uc2a4\ucf00\uce58 \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2e4\n\uac19\uc740 \uc7a5\uc18c\uc5d0 \ub2e4\uc2dc \uc800\uc7a5\uc744 \uc2dc\ub3c4\ud569\ub2c8\ub2e4,\n\ud558\uc9c0\ub9cc \ucf54\ub4dc\ub97c \uc81c\uc678\ud55c \ub098\uba38\uc9c0 \ubd80\ubd84\uc740 \uc783\uc5b4\ubc84\ub9bd\ub2c8\ub2e4.
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubcc0\uacbd\ud574\uc57c \ud569\ub2c8\ub2e4. \uc2a4\ucf00\uce58 \uc774\ub984\uc740 \uc544\uc2a4\ud0a4 \ubb38\uc790\ub098\n \uc22b\uc790(\ud558\uc9c0\ub9cc \uc22b\uc790\ub85c \uc2dc\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4)\ub9cc \uac00\ub2a5\ud569\ub2c8\ub2e4.\n\uadf8\ub9ac\uace0 64\uc790 \ubbf8\ub9cc\uc774\uc5ec\uc57c \ud569\ub2c8\ub2e4.
+#: Sketch.java:2018
+The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubcc0\uacbd\ud574\uc57c \ud569\ub2c8\ub2e4. \uc2a4\ucf00\uce58 \uc774\ub984\uc740 \uc544\uc2a4\ud0a4 \ubb38\uc790\ub098\n\uc22b\uc790(\ud558\uc9c0\ub9cc \uc22b\uc790\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4)\ub9cc \uac00\ub2a5\ud569\ub2c8\ub2e4.\n\uadf8\ub9ac\uace0 64\uc790 \ubbf8\ub9cc\uc774\uc5ec\uc57c \ud569\ub2c8\ub2e4.
-#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\uac00 \ub354 \uc774\uc0c1 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub294 \uae30\ubcf8 \uc2a4\ucf00\uce58\ubd81 \uc704\uce58\uc73c\ub85c \uc804\ud658\ud569\ub2c8\ub2e4.\n\ud544\uc694\ud55c\uba74 \uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\ub97c \ub9cc\ub4dc\uc138\uc694\n\uadf8\ub7ec\uba74 \uc544\ub450\uc774\ub178\ub294 \ub354 \uc774\uc0c1 \uc598\uae30\ud558\uc9c0 \uc54a\uc744\uac81\ub2c8\ub2e4.\n
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\uac00 \ub354 \uc774\uc0c1 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub294 \uae30\ubcf8 \uc2a4\ucf00\uce58\ubd81 \uc704\uce58\ub85c \uc804\ud658\ud569\ub2c8\ub2e4\n\uadf8\ub9ac\uace0 \ud544\uc694\ud558\uba74 \uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\ub97c \ub9cc\ub4e4\uac81\ub2c8\ub2e4\n\uadf8\ub7ec\uba74 \uc544\ub450\uc774\ub178\ub294 \ub354 \uc774\uc0c1 \uc774 \ubb38\uc81c\uc5d0 \ub300\ud574\n\uc598\uae30\ud558\uc9c0 \uc54a\uc744\uac81\ub2c8\ub2e4.
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\uc774 \ud30c\uc77c\uc740 \uc774\ubbf8 \ub2f9\uc2e0\uc774 \ucd94\uac00\ud558\ub824\ub294\n\uc7a5\uc18c\uc5d0 \ubcf5\uc0ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\n\ub354 \uc774\uc0c1 \uc9c4\ud589 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n
+#: Sketch.java:1075
+This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\uc774 \ud30c\uc77c\uc740 \uc774\ubbf8 \ub2f9\uc2e0\uc774 \ucd94\uac00\ud558\ub824\ub294\n\uc7a5\uc18c\uc5d0 \ubcf5\uc0ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\n\ub354 \uc774\uc0c1 \uc9c4\ud589 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
#: ../../../processing/app/EditorStatus.java:467
-!This\ report\ would\ have\ more\ information\ with=
+This\ report\ would\ have\ more\ information\ with=\uc774 \ub9ac\ud3ec\ud2b8\ub294 \ub9ce\uc740 \uc815\ubcf4\ub97c \ud3ec\ud568\ud569\ub2c8\ub2e4
-#: Base.java:532
+#: Base.java:535
Time\ for\ a\ Break=\ud734\uc2dd \uc2dc\uac04
-#: Editor.java:656
+#: Editor.java:663
Tools=\ub3c4\uad6c
-#: Editor.java:1057
+#: Editor.java:1070
Troubleshooting=\ubb38\uc81c\ud574\uacb0
#: ../../../processing/app/Preferences.java:117
-!Turkish=
+Turkish=\ud130\ud0a4\uc5b4
#: ../../../processing/app/Editor.java:2507
-!Type\ board\ password\ to\ access\ its\ console=
+Type\ board\ password\ to\ access\ its\ console=\ucf58\uc194\uc5d0 \uc811\uadfc\ud558\uae30 \uc704\ud574 \ubcf4\ub4dc\uc758 \ud328\uc2a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud558\uc2dc\uc624
#: ../../../processing/app/Sketch.java:1673
-!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+Type\ board\ password\ to\ upload\ a\ new\ sketch=\uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\ub97c \uc5c5\ub85c\ub4dc\ud558\uae30 \uc704\ud574 \ubcf4\ub4dc\uc758 \ud328\uc2a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud558\uc2dc\uc624
#: ../../../processing/app/Preferences.java:118
-!Ukrainian=
+Ukrainian=\uc6b0\ud06c\ub77c\uc774\uc544\uc5b4
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
-!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=\uc5f0\uacb0\ud560 \uc218 \uc5c6\uc74c\: \uc2a4\ucf00\uce58\uac00 \ube0c\ub9bf\uc9c0\ub97c \uc0ac\uc6a9\ud558\ub098\uc694?
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+Unable\ to\ connect\:\ retrying=\uc5f0\uacb0\ud560 \uc218 \uc5c6\uc74c\: \uc7ac\uc2dc\ub3c4
#: ../../../processing/app/Editor.java:2526
-!Unable\ to\ connect\:\ wrong\ password?=
+Unable\ to\ connect\:\ wrong\ password?=\uc5f0\uacb0\ud560 \uc218 \uc5c6\uc74c\: \ud328\uc2a4\uc6cc\ub4dc \ud655\uc778
#: ../../../processing/app/Editor.java:2512
-!Unable\ to\ open\ serial\ monitor=
+Unable\ to\ open\ serial\ monitor=\uc2dc\ub9ac\uc5bc \ubaa8\ub2c8\ud130\ub97c \uc5f4 \uc218 \uc5c6\uc74c
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
Uncaught\ exception\ type\:\ {0}=\ud574\uacb0\ud560 \uc218 \uc5c6\ub294 \uc608\uc678\uc0c1\ud669 \ubc1c\uc0dd\: {0}
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
Undo=\ucde8\uc18c
#: Platform.java:168
@@ -1030,146 +1086,148 @@ Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\
#: UpdateCheck.java:111
Update=\uc5c5\ub370\uc774\ud2b8
-#: Preferences.java:412
+#: Preferences.java:428
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\uc2a4\ucf00\uce58 \ud30c\uc77c\uc744 \uc800\uc7a5\ud560\ub54c \uc0c8\ub85c\uc6b4 \ud655\uc7a5\uc790(.pde -> .ino)\ub85c \uc5c5\ub370\uc774\ud2b8
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=\uc5c5\ub85c\ub4dc
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
Upload\ Using\ Programmer=\ud504\ub85c\uadf8\ub798\uba38\ub97c \uc774\uc6a9\ud574 \uc5c5\ub85c\ub4dc
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=\uc5c5\ub85c\ub4dc \ucde8\uc18c
+#: Editor.java:2403 Editor.java:2439
+Upload\ canceled.=\uc5c5\ub85c\ub4dc \ucde8\uc18c.
#: ../../../processing/app/Sketch.java:1678
-!Upload\ cancelled=
+Upload\ cancelled=\uc5c5\ub85c\ub4dc \ucde8\uc18c
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=I/O \ubcf4\ub4dc\uc5d0 \uc5c5\ub85c\ub4dc...
+#: Editor.java:2378
+Uploading\ to\ I/O\ Board...=I/O \ubcf4\ub4dc\uc5d0 \uc5c5\ub85c\ub4dc\u2026
-#: Sketch.java:1661
-Uploading...=\uc5c5\ub85c\ub529...
+#: Sketch.java:1622
+Uploading...=\uc5c5\ub85c\ub529\u2026
-#: Editor.java:1255
+#: Editor.java:1269
Use\ Selection\ For\ Find=\ucc3e\uae30\uc704\ud574 \uc120\ud0dd\ub41c \ubd80\ubd84\uc744 \uc0ac\uc6a9
-#: Preferences.java:393
+#: Preferences.java:409
Use\ external\ editor=\uc678\ubd80 \uc5d0\ub514\ud130 \uc0ac\uc6a9
#: EditorToolbar.java:41 EditorToolbar.java:46
Verify=\ud655\uc778
-#: Editor.java:602
+#: Editor.java:609
Verify\ /\ Compile=\ud655\uc778 / \ucef4\ud30c\uc77c
-#: Preferences.java:384
-!Verify\ code\ after\ upload=
+#: Preferences.java:400
+Verify\ code\ after\ upload=\uc5c5\ub85c\ub4dc \ud6c4 \ucf54\ub4dc \uac80\uc99d\ud558\uae30
-#: Editor.java:1091
-Visit\ Arduino.cc=Arduino.cc\ub97c \ubc29\ubb38
+#: ../../../processing/app/Preferences.java:154
+Vietnamese=\ubca0\ud2b8\ub0a8\uc5b4
-#: Base.java:1842
+#: Editor.java:1105
+Visit\ Arduino.cc=Arduino.cc \ubc29\ubb38\ud558\uae30
+
+#: Base.java:2128
Warning=\uacbd\uace0
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()\ub294 Wire.read()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send()\ub294 Wire.write()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
#: FindReplace.java:105
-Wrap\ Around=\uc790\ub3d9 \uc904\ubc14\uafc8
+Wrap\ Around=\uc790\ub3d9 \uc904 \ubc14\uafc8
#: debug/Uploader.java:213
-Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\uc798\ubabb\ub41c \ub9c8\uc774\ud06c\ub85c\ucf58\ud2b8\ub864\ub7ec \ubc1c\uacac. Tools > Board \uba54\ub274\uc5d0\uc11c \uc62c\ubc14\ub978 \ubcf4\ub4dc\ub97c \uc120\ud0dd\uc744 \ud558\uc168\ub098\uc694?
+Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\uc798\ubabb\ub41c \ub9c8\uc774\ud06c\ub85c\ucf58\ud2b8\ub864\ub7ec \ubc1c\uacac. \ud234 > \ubcf4\ub4dc \uba54\ub274\uc5d0\uc11c \uc62c\ubc14\ub978 \ubcf4\ub4dc\ub97c \uc120\ud0dd\uc744 \ud558\uc168\ub098\uc694?
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=\uc608
-#: Sketch.java:1078
+#: Sketch.java:1074
You\ can't\ fool\ me=\ub0a0 \uc18d\uc77c \uc0dd\uac01 \ub9d0\uac8c
-#: Sketch.java:415
+#: Sketch.java:411
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\uc2a4\ucf00\uce58\uc640 \ub3d9\uc77c\ud55c \uc774\ub984\uc758 .cpp \ud30c\uc77c\uc744 \uac00\uc9c8\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\uc2a4\ucf00\uce58\uac00 \uc774\ubbf8 \uac19\uc740 \uc774\ub984\uc758 .cpp\ud30c\uc77c\uc744 \uac00\uc9c0\uace0 \uc788\uae30 \ub54c\ubb38\uc5d0\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc744 "{0}"\ub85c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4\n
+#: Sketch.java:421
+You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\uc2a4\ucf00\uce58\uac00 \uc774\ubbf8 \uac19\uc740 \uc774\ub984\uc758 .cpp \ud30c\uc77c\uc744 \uac00\uc9c0\uace0 \uc788\uae30 \ub54c\ubb38\uc5d0\n\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc744 "{0}"\ub85c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\uc2a4\ucf00\uce58\uac00 \uc774\ubbf8 \uac19\uc740 \uc774\ub984\uc758 .cpp\ud30c\uc77c\uc744 \uac00\uc9c0\uace0 \uc788\uae30 \ub54c\ubb38\uc5d0\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc744 "{0}"\ub85c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4\n
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\uc2a4\ucf00\uce58\uac00 \uc774\ubbf8 \uac19\uc740 \uc774\ub984\uc758 .cpp\ud30c\uc77c\uc744 \uac00\uc9c0\uace0 \uc788\uae30 \ub54c\ubb38\uc5d0\n\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc744 "{0}"\ub85c \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
-#: Sketch.java:887
+#: Sketch.java:883
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\uc2a4\ucf00\uce58\ub97c \uadf8 \uc790\uccb4\uc758 \ud3f4\ub354\uc5d0 \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ubb34\ud55c \ubc18\ubcf5\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4.
-#: Base.java:1602
+#: Base.java:1888
You\ forgot\ your\ sketchbook=\uc2a4\ucf00\uce58\ubd81\uc744 \uc78a\uc5c8\uc2b5\ub2c8\ub2e4
#: ../../../processing/app/AbstractMonitor.java:92
-!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?={0}\ub97c \uc785\ub825\ud588\uc9c0\ub9cc \uc544\ubb34\uac83\ub3c4 \uc804\ub2ec\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. \uc904\ubc14\uafc8\uc744 \uc120\ud0dd\ud588\ub098\uc694?
-#: Base.java:533
+#: Base.java:536
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\uc758 \uc790\ub3d9 \ub124\uc774\ubc0d\uc758 \ud55c\uacc4\uc5d0 \ub3c4\ub2ec\ud588\uc2b5\ub2c8\ub2e4.\n\uc0b0\ucc45\uc744 \ud558\uc2dc\ub294 \uac83\uc774 \uc5b4\ub5a4\uac00\uc694?
-#: ../../../processing/app/Base.java:2847
-!ZIP\ files\ or\ folders=
+#: Base.java:2638
+ZIP\ files\ or\ folders=ZIP \ud30c\uc77c \ub610\ub294 \ud3f4\ub354
-#: ../../../processing/app/Base.java:2870
-!Zip\ doesn't\ contain\ a\ library=
+#: Base.java:2661
+Zip\ doesn't\ contain\ a\ library=Zip \ud30c\uc77c\uc774 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ud3ec\ud568\ud558\uace0 \uc788\uc9c0\uc54a\uc2b5\ub2c8\ub2e4
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \ub294 \ud655\uc7a5\uc790\ub85c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\uc5d0 \uc778\uc2dd\ud560 \uc218 \uc5c6\ub294 \ubb38\uc790\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \ub9cc\uc57d \uc774 \ucf54\ub4dc\uac00\uc774\uc804 \ubc84\uc804\uc758 \ud504\ub85c\uc138\uc2f1\uc73c\ub85c \ub9cc\ub4e4\uc5b4\uc84c\ub2e4\uba74, Tools -> Fix Encoding & Reload \ub85c UTF-8 \uc778\ud1a0\ub529\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\uc544\ub2c8\uba74 \uc798\ubabb\ub41c \ubb38\uc790\ub97c \uc0ad\uc81c\ud558\uc5ec \uc774 \uacbd\uace0\ub97c \uc81c\uac70\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\uc5d0 \uc778\uc2dd\ud560 \uc218 \uc5c6\ub294 \ubb38\uc790\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \ub9cc\uc57d \uc774 \ucf54\ub4dc\uac00\uc774\uc804 \ubc84\uc804\uc758 \ud504\ub85c\uc138\uc2f1\uc73c\ub85c \ub9cc\ub4e4\uc5b4\uc84c\ub2e4\uba74, \ud234 -> \uc778\ucf54\ub529 \uc218\uc815 & \ub2e4\uc2dc \ub85c\ub4dc \ub85c UTF-8 \uc778\ud1a0\ub529\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\uc544\ub2c8\uba74 \uc798\ubabb\ub41c \ubb38\uc790\ub97c \uc0ad\uc81c\ud558\uc5ec \uc774 \uacbd\uace0\ub97c \uc81c\uac70\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\uc544\ub450\uc774\ub178 0019 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub294 SPI\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \uc758\uc874\ud569\ub2c8\ub2e4.\n\uc774 \uc0ac\uc774\ube0c\ub7ec\ub9ac\ub97c \uc0ac\uc6a9\ud558\uac70\ub098 SPI \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \uc758\uc874\uc801\uc778\n\ub2e4\ub978 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc0ac\uc6a9\ud558\ub294 \uac83 \uac19\uc2b5\ub2c8\ub2e4.\n
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, 'BYTE' \ud0a4\uc6cc\ub4dc\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2c8\ub2e4.\n\ub300\uc2e0 Serial.write()\ub97c \uc0ac\uc6a9\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\n\n
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 Client \ud074\ub798\uc2a4\ub294 EthernetClient\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 Server \ud074\ub798\uc2a4\ub294 EthernetServer\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n
+#: debug/Compiler.java:421
+\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 Server \ud074\ub798\uc2a4\ub294 EthernetServer\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\n\n
-#: ../../../processing/app/debug/Compiler.java:451
-!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+#: debug/Compiler.java:433
+\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 Udp \ud074\ub798\uc2a4\ub294 EthernetClient\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, Wire.receive()\ud568\uc218\ub294 \ub2e4\ub978 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc640\uc758 \uc77c\uad00\uc131\uc744 \uc704\ud574 Wire.read()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, Wire.send()\ud568\uc218\ub294 \ub2e4\ub978 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc640\uc758 \uc77c\uad00\uc131\uc744 \uc704\ud574 Wire.write()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
-!baud=
+#: SerialMonitor.java:130 SerialMonitor.java:133
+baud=\ubcf4\ub4dc \ub808\uc774\ud2b8
-#: Preferences.java:373
+#: Preferences.java:389
compilation\ =\ucef4\ud30c\uc77c
#: ../../../processing/app/NetworkMonitor.java:111
-!connected\!=
+connected\!=\uc5f0\uacb0\!
-#: Sketch.java:544
+#: Sketch.java:540
createNewFile()\ returned\ false=createNewFile()\uac00 false\ub97c \ubc18\ud658\ud588\uc2b5\ub2c8\ub2e4
#: ../../../processing/app/EditorStatus.java:469
-!enabled\ in\ File\ >\ Preferences.=
+enabled\ in\ File\ >\ Preferences.=\ud30c\uc77c > \uc124\uc815\uc5d0 \uc0ac\uc6a9\uac00\ub2a5\ud558\uac8c \ub428
-#: Base.java:1804
-environment=\ud658\uacbd
+#: Base.java:2090
+environment=\ud658\uacbd\uc124\uc815
-#: Editor.java:1094
+#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
-!http\://github.com/arduino/Arduino/issues=
+http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues
#: UpdateCheck.java:118
http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
@@ -1177,54 +1235,51 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=\uc798\ubabb\ub41c \uae00\uaf34\ud06c\uae30 {0}\ub97c \ubb34\uc2dc
+ignoring\ invalid\ font\ size\ {0}=\uc798\ubabb\ub41c \uae00\uaf34 \ud06c\uae30 {0}\ub97c \ubb34\uc2dc
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
name\ is\ null=name \uc774 null\uc785\ub2c8\ub2e4.
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=char {1}\uc744 \ud3ec\ud568 {0} \ubc14\uc774\ud2b8\ub97c \uc704\ud55c readBytesUntil() \ubc14\uc774\ud2b8 \ubc84\ud37c\uac00 \ub108\ubb34 \uc791\uc2b5\ub2c8\ub2c8\ub2e4.
-#: Sketch.java:651
+#: Sketch.java:647
removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \ub0b4\ubd80 \uc5d0\ub7ec.. \ucf54\ub4dc\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4
-#: Editor.java:923
+#: Editor.java:932
serialMenu\ is\ null=serialMenu\uac00 Null\uc785\ub2c8\ub2e4
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\uc120\ud0dd\ub3e4 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8(0)\ub294 \uc874\uc7ac\ud558\uc9c0 \uc54a\uac70\ub098 \ud574\ub2f9 \ubcf4\ub4dc\uac00 \uc5f0\uacb0\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4.
+the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\uc120\ud0dd\ub3e4 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8{0}\ub294 \uc874\uc7ac\ud558\uc9c0 \uc54a\uac70\ub098 \ud574\ub2f9 \ubcf4\ub4dc\uac00 \uc5f0\uacb0\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4.
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
+#: Preferences.java:391
upload=\uc5c5\ub85c\ub4dc
-#: Editor.java:373
+#: Editor.java:380
#, java-format
{0}\ files\ added\ to\ the\ sketch.=\uc2a4\ucf00\uce58\uc5d0 {0}\ud30c\uc77c\uc774 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
{0}\ returned\ {1}={0} \uac00 {1}\ub97c \ub9ac\ud134\ud588\uc2b5\ub2c8\ub2e4
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
{0}\ |\ Arduino\ {1}={0} | \uc544\ub450\uc774\ub178 {1}
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_lt_LT.po b/app/src/processing/app/i18n/Resources_lt_LT.po
index 866571e68..0d54337b8 100644
--- a/app/src/processing/app/i18n/Resources_lt_LT.po
+++ b/app/src/processing/app/i18n/Resources_lt_LT.po
@@ -6,72 +6,64 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: Arduino IDE 1.5\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-07 08:00 +0100\n"
-"PO-Revision-Date: 2012-04-09 21:25 +0100\n"
-"Last-Translator: Laimutis Palivonas Closing the last open sketch will quit Arduino."
msgstr ""
-" Uždarant paskutinijį atdarą projektą išsijungs Arduino \n"
-"programa."
-#: Editor.java:2006
+#: Sketch.java:746
+msgid ".pde -> .ino"
+msgstr ""
+
+#: Base.java:773
msgid ""
-" Closing the last open sketch will quit Arduino."
+msgstr " Uždarius paskutini atidarytą eskizą Arduino baigs darbą."
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
"save, your changes will be lost."
-msgstr ""
-" Jei neišsaugosite, "
-"jūsų pakeitimai bus prarasti."
+msgstr " Jeigu ne išsaugosit, visi pakeitimai bus prarasti."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "Failas \"{0}\" jau egzistuoja \"{1}\""
+msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr "Aplankas \"{0}\" jau egzistuoja. Negalima atidaryti projekto."
+msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -81,73 +73,63 @@ msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
msgstr ""
-"Yra nauja Arduino programos versija,\n"
-"ar norite eiti į Arduino atsisiuntimų tinklapį?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
msgstr ""
-"Klaida bandant atidaryti failą,\n"
-"naudojamą konsolės išvesties saugojimui."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
-msgstr "Apie Arduino"
-
-#: Editor.java:643
-msgid "Add File..."
-msgstr "Pridėti failą..."
-
-#: ../../../processing/app/Base.java:1102
-msgid "Add Library..."
msgstr ""
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Pridėti bibleoteką..."
+
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
msgstr ""
-"Klaida bandant pataisyti failo kodavimą.\n"
-"Nebandykite išsaugoti projekto, nes tai gali panaikinti seną\n"
-"versiją. Naudokite Atidaryti, kad įkelti projektą iš naujo ir bandyti dar kartą.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "Nežinoma klaida bandant atidaryti\n"
-"specifinį jūsų įrenginiui kodą."
-
-#: Preferences.java:84
-msgid "Arabic"
msgstr ""
#: Preferences.java:85
+msgid "Arabic"
+msgstr ""
+
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Archyvuoti projektą"
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Archyvuoti projektą kaip:"
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Projekto archyvavimas atšauktas."
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
-"Projekto archyvavimas atšauktas, nes neimanoma\n"
-"jo tinkamai išsaugoti."
+msgstr ""
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -157,129 +139,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
msgstr ""
-"Arduino negali veikti, nes neįmanoma\n"
-"sukurti aplanko jūsų nustatymų saugojimui."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
msgstr ""
-"Arduino negali veikti, nes neįmanoma\n"
-"sukurti aplanko jūsų projektų saugojimui."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
msgstr ""
-"Arduino reikalingas pilnas JDK (nevien tik JRE).\n"
-"Prašome instaliuoti JDL 1.5 arba vėlesnį.\n"
-"Daugiau informacijos galima rasti žinyne."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Ar tikrai norite ištrinti \"{0}\"?"
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Ar tikrai norite ištrinti projektą?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Automatinis formatavimas"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr "Automatinis formatavimas atšauktas: perdaug kairiųjų figūrinių skliaustų."
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr "Automatinis formatavims atšauktas: perdaug kairiųjų skliaustų."
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr "Automatinis formatavimas atšauktas: perdaug dešiniųjų figūrinių skliaustų."
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr "Automatinis formatavims atšauktas: perdaug dešiniųjų skliaustų."
+msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "Automatinis formatavimas baigtas."
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Automatiškai asocijuoti .ino failus su Arduino"
+msgstr ""
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Automatinis teksto slinkimas"
-
-#: Editor.java:2572
-#, java-format
-msgid "Bad error line: {0}"
-msgstr "Eilutė su klaida: {0}"
-
-#: Editor.java:2089
-msgid "Bad file selected"
-msgstr "Pasirinktas netinkamas failas"
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
msgstr ""
-#: Editor.java:682
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Plokštė"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "Naudoti NL & CR"
+msgstr ""
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Naršyti"
+msgstr ""
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "Programos aplankas nerastas arba neįmanoma į jį rašyti"
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "Įrašyti įkrovos programą"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Į I/O plokštę įkeliama įkrovos programa (tai gali užtrukti kelias minutes)..."
+msgstr ""
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -289,61 +280,77 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
-msgstr "Atšaukti"
+msgstr ""
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr "Neįmanoma pervadinti"
+msgstr ""
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Grįžimas (CR)"
-
-#: Preferences.java:86
-msgid "Catalan"
-msgstr "Katalonų"
-
-#: Preferences.java:403
-msgid "Check for updates on startup"
-msgstr "Paleidžiant programą tikrinti atnaujinimus"
+msgstr ""
#: Preferences.java:87
-msgid "Chinese Simplified"
-msgstr "Kinų (supaprastinta)"
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
-msgstr "Uždaryti"
+msgstr ""
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "Komentuoti/Nekomentuoti"
+msgstr ""
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Kompiliatoriaus klaida, prašome perkelti šį kodą į {0}"
+msgstr ""
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Projektas kompiliuojamas..."
+msgstr ""
#: EditorConsole.java:152
msgid "Console Error"
-msgstr "Konsolės klaida"
+msgstr ""
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
-msgstr "Kopijuoti"
+msgstr ""
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
msgstr "Kopijuoti kaip HTML"
@@ -351,41 +358,41 @@ msgstr "Kopijuoti kaip HTML"
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Kopijuoti forumui"
+msgstr ""
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "''{0}'' neįmanoma pridėti į projektą."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "Nepavyko nukopijuoti projekto į reikiamą aplanką."
+msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "Nepavyko sukurti projekto aplanko."
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr "Nepavyko sukurti projekto."
+msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Neįmanoma ištrinti \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Neįmanoma ištrinti esamo ''{0}'' failo."
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "Neįmanoma ištrinti {0}"
+msgstr ""
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -402,97 +409,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
-"Neįmanoma atidaryti nuorodos\n"
-"{0}"
+msgstr "Neįmanoma atidaryti nuorodą\n{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
-"Neįmanoma atidaryti aplanko\n"
-"{0}"
+msgstr "Neįmanoma atidaryti aplanką\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
msgstr ""
-"Neįmanoma iš naujo išsaugoti projekto. Pabandykite nukopijuoti programos \n"
-"kodą į kitą tekstinį redaktorių."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "Neįmanoma išnaujo išsaugoti projekto."
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
msgstr ""
-"Neįmanoma nuskaityti spalvų nustatymų."
-"Turėsite perinstaliuoti Processing."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
msgstr ""
-"Neįmanoma nuskaityti nustatymų pagal nutylėjimą.\n"
-"Turėsite perinstaliuoti Arduino programą."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "Neįmanoma nuskaityti nustatymų iš {0}"
+msgstr ""
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "Neįmanoma panaikinti senos {0} versijos"
+msgstr ""
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "Neįmanoma pervadinti \"{0}\" į \"{1}\""
+msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "Neįmanoma pervadinti projekto. (0)"
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Neįmanoma pervadinti projekto. (1)"
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Neįmanoma pervadinti projekto. (2)"
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr "Neįmanoma pakeisti {0}"
+msgstr ""
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Neįmanoma archyvuoti projekto"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Neįmanoma nustatyti programos dydžio: {0}"
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "Neįmanoma to padaryti"
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -503,108 +500,114 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
-msgstr "Iškirpti"
+msgstr ""
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
-msgstr "Danų"
+msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Sumažinti teksto postumį"
+msgstr ""
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr "Ištrinti"
+msgstr ""
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
msgstr ""
-"Įrenginys neatsako, patikrinkite ar pasirinktas tinkamas nuoseklusis portas"
-"arba perkraukite plokštę prieš įkrovą"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Atšaukti pakeitimus ir įkelti iš naujo??"
+msgstr ""
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "Neišsaugoti"
+msgstr ""
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
-msgstr "Išsaugota."
+msgstr ""
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "Įkrovos programa įkelta."
+msgstr ""
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
-msgstr "Kompiliacija baigta."
+msgstr ""
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
-msgstr "Spausdinimas baigtas."
+msgstr ""
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
-msgstr "Įkėlimas baigtas."
-
-#: Preferences.java:90
-msgid "Dutch"
-msgstr "Olandų"
-
-#: Editor.java:1116
-msgid "Edit"
-msgstr "Redaguoti"
-
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr "Redaktoriaus šrifto dydis: "
-
-#: Preferences.java:337
-msgid "Editor language: "
msgstr ""
#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
msgid "English"
-msgstr "Anglų"
+msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
-msgstr "Programos aplinka"
+msgstr ""
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
-msgstr "Klaida"
+msgstr ""
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr "Klaida pridedant failą"
+msgstr ""
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Klaida kompiliuojant."
+msgstr ""
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "Klaida kreipiantis į Arduino duomenų aplanką."
+msgstr ""
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "Klaida Serial.{0}()"
+msgstr ""
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
@@ -617,36 +620,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr "Klaida atidarant nuoseklujį portą ''{0}''."
+msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
-msgstr "Klaida nuskaitant nustatymus"
+msgstr ""
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
msgstr ""
-"Klaida nuskaitant nustatymų failą. Prašome ištrinti (arba perkelti)\n"
-"{0} ir perleisti Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Klaida įkeliant įkrovos programą."
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -655,121 +656,141 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Klaida įkeliant kodą {0}"
+msgstr ""
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "Klaida spausdinant."
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
-msgstr "Pavyzdžiai"
+msgstr ""
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Eksportavimas atšauktas, pirmiausia turi būti išsaugoti pakeitimai."
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
-msgstr "Failai"
+msgstr ""
#: Preferences.java:94
msgid "Filipino"
-msgstr "Filipinų"
+msgstr ""
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
-msgstr "Ieškoti"
+msgstr ""
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Ieškoti sekančio"
+msgstr ""
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Ieškoti ankstesnio"
+msgstr ""
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Ieškoti žinyne"
+msgstr ""
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Ieškoti..."
+msgstr ""
#: FindReplace.java:80
msgid "Find:"
-msgstr "Ieškoti:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr "Pataisyti kodavimą ir įkelti iš naujo."
-
-#: ../../../processing/app/Base.java:2057
-msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr "Daugiau informacijos apie bibliotekų diegimą, žiurėkite: http://arduino.cc/en/Guide/Libraries\n"
+
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
-msgid "French"
-msgstr "Prancūzų"
-
-#: Editor.java:1083
-msgid "Frequently Asked Questions"
-msgstr "Dažniausiai užduodami klausimai"
-
#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
msgid "Galician"
-msgstr "Galų"
+msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
-msgid "German"
-msgstr "Vokiečių"
-
-#: Editor.java:1041
-msgid "Getting Started"
-msgstr "Pradedantiesiems"
-
#: Preferences.java:97
-msgid "Greek"
-msgstr "Graikų"
+msgid "German"
+msgstr ""
-#: Base.java:1799
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr ""
+
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
@@ -777,45 +798,43 @@ msgstr "Guide_Windows.html"
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
-msgstr "Pagalba"
+msgstr ""
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
msgstr ""
-"Pirmiausia išsaugoti projektą \n"
-"prieš bandant jį pervadinti?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "Kaip siurrealu"
+msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
-msgstr "Vengrų"
+msgstr ""
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr "Ignoruoti kapitaliaciją"
+msgstr ""
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Ignoruojamas netinkamas bibliotekos pavadinimas"
+msgstr "Ignoruojamas blogas bibleotekos pavadinimas"
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
-msgstr "Ignoruojamas projektas su netinkamu pavadinimu"
+msgstr ""
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Pridėti biblioteką..."
+msgstr ""
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -828,11 +847,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Padidinti teksto postumį"
+msgstr ""
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -841,27 +860,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
-msgid "Italian"
-msgstr "Italų"
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr "Japonų"
-
#: Preferences.java:102
-msgid "Korean"
+msgid "Italian"
msgstr ""
#: Preferences.java:103
-msgid "Latvian"
-msgstr "Latvių"
-
-#: ../../../processing/app/Base.java:2903
-msgid "Library added to your libraries. Check \"Import library\" menu"
+msgid "Japanese"
msgstr ""
#: Preferences.java:104
+msgid "Korean"
+msgstr ""
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -869,112 +888,106 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
-msgstr "Pranešimas"
-
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
msgstr ""
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Trūksta */ komentarų /* pabaigoje */"
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr "Daugiau nustatymų galima pakeisti tiesiogiai faile"
+msgstr ""
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
-msgstr "Perkėlimas"
+msgstr ""
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Naujo failo pavadinimas:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
-msgstr "Naujas"
+msgstr ""
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Naujas redaktoriaus langas"
+msgstr ""
#: EditorHeader.java:292
msgid "New Tab"
-msgstr "Naujas skirtukas"
+msgstr ""
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Nauja eilutė"
+msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr "Sekantis skirtukas"
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
-msgstr "Ne"
+msgstr ""
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Nepasirinkta plokštė; prašome ją pasirinkti iš Įrankiai > Plokštė \n"
-"meniu."
+msgstr ""
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
-msgstr "Automatiniam formatavimui pakeitimai nereikalingi."
+msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "Į projektą nebuvo pridėta jokių failų."
+msgstr ""
#: Platform.java:167
msgid "No launcher available"
-msgstr "Nerasta jokio paleidėjo"
+msgstr ""
#: SerialMonitor.java:112
msgid "No line ending"
-msgstr "Be eilutės pabaigos"
+msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "Ištikrųjų, jums laikas įkvėpti gryno oro."
+msgstr "Na tikrai, tau laikas įkvėpti gryno oro."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "Įrašas nerastas apie \"{0}\""
+msgstr ""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Nekritinė klaida nustatant bendrają išvaizdą."
+msgstr ""
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
-msgstr "Ne"
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
@@ -987,60 +1000,60 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr "Gerai"
+msgstr ""
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "Į projektą pridėtas vienas failas."
+msgstr ""
#: EditorToolbar.java:41
msgid "Open"
-msgstr "Atidaryti"
+msgstr ""
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
-msgstr "Atidaryti nuorodą"
+msgstr ""
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Atidaryti Arduino projektą..."
+msgstr ""
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Atidaryti naujame lange"
+msgstr ""
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "Atidaryti..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Puslapio nustatymai"
+msgstr ""
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "Įterpti"
+msgstr ""
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
-msgstr "Persų"
+msgstr ""
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Prašome pridėti SPI biblioteką iš Projektas > Pridėti biblioteką meniu."
+msgstr ""
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
-msgstr "Prašome instaliuoti JDK 1.5 arba vėlesnį"
+msgstr ""
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1048,45 +1061,53 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "Nustatymai"
+msgstr ""
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
-msgstr "Ankstesnis"
+msgstr ""
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Ankstesnis skirtukas"
+msgstr ""
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "Spausdinti"
+msgstr ""
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr "Spausdinimas atšauktas."
+msgstr ""
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Spausdinama..."
+msgstr ""
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr "Klaida atidarant aplanką"
+msgstr "Problema atidarant aplanką"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "Klaida atidarant nuorodą"
+msgstr "Problema atidarant nuorodą"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "Problema nustatant platformą."
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1096,137 +1117,133 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "Klaida kreipiantis į duomenų aplanką"
+msgstr ""
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Klaida perkeliant {0} į programos aplanką"
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr ""
-"Klaida įkeliant į plokštę. Ieškokite http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload klaidos sprendimo."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Klaida pervadinant"
+msgstr ""
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
msgstr ""
-"Programa gali atidaryti tik savo projektus\n"
-"ir failus su plėtiniais .ino ir .pde"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "Programatorius"
+msgstr ""
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "Išeiti"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Perdaryti"
+msgstr ""
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "Žinynas"
+msgstr ""
#: EditorHeader.java:300
msgid "Rename"
-msgstr "Pervadinti"
+msgstr ""
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
-msgstr "Pakeisti"
+msgstr ""
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr "Pakeisti ir surasti"
+msgstr ""
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "Pakeisti viską"
+msgstr ""
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Pakeisti esamą {0} versiją?"
+msgstr ""
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Pakeisti į:"
+msgstr ""
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr "Rumunų"
+msgstr ""
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
-msgstr "Išsaugoti"
+msgstr ""
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Išsaugoti kaip..."
+msgstr ""
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "Išsaugojimas atšauktas."
+msgstr ""
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "Įšsaugoti pakeitimus prieš eksportuojant?"
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Išsaugoti pakeitimus \"{0}\"? "
+msgstr ""
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Išsaugoti projekto aplanką kaip..."
+msgstr ""
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "Išsaugoma..."
+msgstr ""
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Pasirinkite (arba sukurkite naują) projektų aplanką ..."
+msgstr ""
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Pažymėti viską"
+msgstr ""
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Pasirinkite atvaizdą arba kitą duomenų failą, kad įkelti į jūsų projektą"
+msgstr ""
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Pasirinkite naują vietą projektams"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1234,212 +1251,202 @@ msgstr ""
#: SerialMonitor.java:93
msgid "Send"
-msgstr "Siųsti"
+msgstr ""
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "Nuosekliojo porto monitorius"
+msgstr ""
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
msgstr ""
-"Nuoseklusis portas ''{0}'' naudojamas. Pabandykite išjungti programą, kuri "
-"gali jį naudoti."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
msgstr ""
-"Nuoseklusis portas ''{0}'' nerastas. Ar pasirinkote tinkamą iš Įrankiai > "
-"Nuoseklusis portas meniu?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
msgstr ""
-"Nuoseklusis portas {0} nerastas.\n"
-"Tęsti įkėlimą naudojant kitą nuoseklujį portą?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Nustatymų klaidos"
+msgstr ""
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Parodyti projekto aplanką"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Parodyti išsamius rezultatus: "
+msgstr ""
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr "Projektas"
+msgstr ""
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "Projektas nerastas"
+msgstr ""
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "Projektas neegzistuoja"
+msgstr ""
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr "Projektas skirtas tik skaitymui"
+msgstr ""
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "Projektas be pavadinimo"
+msgstr ""
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "Projektas skirtas tik skaitymui"
+msgstr ""
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
+msgstr "Eskizas per didelis; žiūrėkite http://www.arduino.cc/en/Guide/Troubleshooting#size patarimams kaip jį sumažinti."
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
msgstr ""
-"Projektas per dydelis; ieškokite http://www.arduino.cc/en/Guide/Troubleshooting#size "
-"patarimų, ją mažinant."
-#: Editor.java:503
+#: Editor.java:510
msgid "Sketchbook"
-msgstr "Projektai"
+msgstr ""
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "Nerandamas projekto aplankas"
+msgstr ""
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "Projektų vieta:"
+msgstr ""
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
msgstr ""
-"Kaikurie failai pažymėti kaip \"tik skaitymui\",\n"
-"todėl turėtumėte išsaugoti projektą į kitą vietą,\n"
-"ir bandyti iš naujo."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
msgstr ""
-"Kaikurie failai pažymėti kaip \"tik skaitymui\",\n"
-"turėtumėte išsaugoti projektą i kitą vietą."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Atsiprašome, projektas (arba aplankas) pavadinimu \"{0}\" jau egzistuoja."
+msgstr ""
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
-msgstr "Ispanų"
+msgstr ""
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr "Saulėta"
+msgstr "Saulės šviesa"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr "Raktažodis 'BYTE' daugiau nebepalaikomas."
+msgstr ""
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "Klasė Client buvo pervardinta į EthernetClient."
+msgstr ""
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr "Klasė Server buvo pervardinta į EthernetServer."
+msgstr ""
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "Klasė Udp buvo pervardinta į EthernetUdp."
+msgstr ""
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "Klaida neišnyksta, tačiau Arduino turėtų veikti gerai."
+msgstr ""
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
msgstr ""
-"Failas \"{0}\" turi būti\n"
-"projekto aplanke, pavadinimu \"{1}\".\n"
-"Sukurti šį aplanką, perkelti failą ir testi??"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
msgstr ""
-"Biblioteka \"{0}\" negali būti naudojama.\n"
-"Bibliotekų pavadinimus turi sudaryti tik raidės ir skaičiai.\n"
-"(Tik ASCII be tarpų, ir negali prasidėti skaičiumi).\n"
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
msgstr ""
-"Pagrindinis failas negali turėti plėtinio.\n"
-"(Turbūt laikas jums pereiti prie\n"
-"\"tikros\" programavimo aplinkos)"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr "Pavadinimas negali prasidėti tašku."
+msgstr ""
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
msgstr ""
-"Pasirinktas projektas nebeegzistuoja.\n"
-"Turbūt turėtumėte perleisti Arduino, kad atnaujinti\n"
-"projektų meniu."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1448,33 +1455,22 @@ msgid ""
"To get rid of this message, remove the sketch from\n"
"{1}"
msgstr ""
-"Projektas \"{0}\" negali būti naudojamas.\n"
-"Projekto pavadinimą turi sudaryti tik raidės ir skaičiai\n"
-"(tik ASCII be tarpų, ir negali prasidėti skaičiumi).\n"
-"Kad panaikinti šį pranešimą, ištrinkite projektą iš\n"
-"{1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
msgstr ""
-"Nerastas projekto aplankas.\n"
-" Bus bandoma jį išsaugoti į tą pačią vietą,\n"
-"bet viskas, išskyrus kodą, bus prarasta."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
msgstr ""
-"Projekto pavadinimas turi būti pakeistas. Projektų pavadinimai turi būti\n"
-"sudaryti tik iš ASCII simbolių ir skaičių (bet negali prasidėti\n"
-"skaičiumi). Taip pat turi būti ne ilgesni nei 64 simboliai.\n"
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
@@ -1482,35 +1478,29 @@ msgid ""
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
msgstr ""
-"Projekto aplankas nebeegzistuoja.\n"
-"Arduino pereis i projekto aplanką pagal nutylėjimą ir, \n"
-"jei tas reikalinga, sukurs naują projekto aplanką.\n"
-"Tada Arduino liausis kalbėti apie save trečiuoju asmeniu.\n"
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
msgstr ""
-"Šis failas jau buvo nokipijuotas i aplanką, iš\n"
-"kurio bandote jį pridėti.\n"
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
msgstr "Laikas pertraukai"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "Įrankiai"
+msgstr ""
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "Klaidų diagnostika"
+msgstr ""
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
@@ -1534,7 +1524,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1545,14 +1535,14 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Nežinomas išimties tipas: {0}"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "Atšaukti"
+msgstr ""
#: Platform.java:168
msgid ""
@@ -1560,155 +1550,146 @@ msgid ""
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
msgstr ""
-"Neatpažinta platforma, nerasta jokio paleidėjo.\n"
-"Kad galėtumėte atidaryti nuorodas arba aplankus, pridėkite \n"
-"\"launcher=/kelias/į/programą\" į failą preferences.txt"
#: UpdateCheck.java:111
msgid "Update"
-msgstr "Atnaujinti"
+msgstr ""
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr "Išsaugant atnaujinti projektų failų plėtinius (.pde -> .ino)"
+msgstr ""
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
-msgstr "Įkelti"
+msgstr ""
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Įkelti naudojant programatorių"
+msgstr ""
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "Įkėlimas atšauktas."
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Įkeliama į I/O plokštę..."
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Įkeliama..."
+msgstr ""
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Naudoti žymėjimą ieškant"
+msgstr ""
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr "Naudoti išorinį redaktorių"
+msgstr ""
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr "Patvirtinti"
+msgstr ""
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Patikrinti / Kompiliuoti"
+msgstr ""
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr "Po įkėlimo patvirtinti kodą"
+msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "Eiti į Arduino.cc"
+msgstr ""
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr "Perspėjimas"
+msgstr ""
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
-msgstr "Wire.receive() buvo pervardinta į Wire.read()."
+msgstr ""
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "Wire.send() buvo pervardinta į Wire.write()."
+msgstr ""
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "Laužyti tekstą"
+msgstr ""
#: debug/Uploader.java:213
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
msgstr ""
-"Rastas netinkamas mokrokontroleris. Ar pasirinkote tinkamą plokštę \n"
-"iš Įrankiai > Plokštė meniu?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
-msgstr "Taip"
+msgstr ""
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
-msgstr "Manęs neapgausi"
+msgstr ""
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "Failas .cpp negali būti tuo pačiu pavadinimu kaip ir projektas."
+msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-"Negalite pervadinti projekto į \"{0}\"\n"
-"nes projektas jau turi .cpp failą tokiu pavadinimu."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-"Negalite išsaugoti projekto kaip \"{0}\"\n"
-"nes projektas jau turi .cpp failą tokiu pavadinimu."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
msgstr ""
-"Negalite išsaugoti į aplanką, projekto\n"
-"aplanko viduje. Tai tęstusi amžinai."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr "Pamiršote savo projektų segtuvą"
+msgstr ""
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
msgstr ""
-"Pasiektas automatinio projekto vardų suteikimo limitas šiai dienai.\n"
-"Ką manote apie pasivaikščiojimą?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" yra klaidingas plėtinys."
+msgstr ""
#: SketchCode.java:258
#, java-format
@@ -1718,123 +1699,89 @@ msgid ""
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
msgstr ""
-"\"{0}\" sudaro nežinomi simboliai. Jei šis kodas buvo sukurtas naudojant senesnę "
-"programos versiją, turėtumėte naudoti Įrankiai -> Pataisyti kodavimą ir įkelti iš naujo, "
-"kad atnaujinti projektą naudojant UTF-8 kodavimą. Arba turėtumėte ištrinti "
-"nežinomus simbolius kad panaikinti šią klaidą."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
msgstr ""
-"Nuo Arduino 0019, Ethernet biblioteka priklausoma nuo SPI bibliotekos.\n"
-"Panašu, kad naudojate šią arba kitą biblioteką, kuri priklausoma nuo "
-"SPI bibliotekos."
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
msgstr ""
-"\n"
-"Nuo Arduino 1.0, raktažodis 'BYTE' nebepalaikomas.\n"
-"Vietoje jo prašome naudoti Serial.write().\n"
-"\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Nuo Arduino 1.0, Ethernet bibliotekos klasė Client buvo pervardinta\n"
-"į EthernetClient.\n"
-"\n"
-
-#: debug/Compiler.java:478
-msgid ""
-"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"Nuo Arduino 1.0, Ethernet bibliotekos klasė Server buvo pervardinta "
-"į EthernetServer.\n"
-"\n"
-
-#: ../../../processing/app/debug/Compiler.java:451
-msgid ""
-"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
msgstr ""
-"\n"
-"Nuo Arduino 1.0, funkcija Wire.receive() buvo pervardinta į Wire.read() dėl"
-"geresnio derėjimo su kitomis bibliotekomis.\n"
-"\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-"\n"
-"Nuo Arduino 1.0, funkcija Wire.send() buvo pervardinta į Wire.write() dėl"
-"geresnio derėjimo su kitomis bibliotekomis.\n"
-"\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "kompiliacija "
+msgstr ""
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr "createNewFile() grąžino klaidą (false)"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr "darbinė aplinka"
+msgstr ""
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
-msgstr ""
+msgstr "http://github.com/arduino/Arduino/issues"
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
@@ -1844,75 +1791,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "ignoruojamas netinkamas šrifto dydis {0}"
+msgstr ""
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
msgstr "index.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "nėra pavadinimo"
+msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
msgstr ""
-"readBytesUntil() baitų buferis yra per mažas {0} baitams(-ų) ir "
-"įskaitant simbolį {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: vidinė klaida... kodas nerastas"
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "Nuosekliojo porto meniu tuščias"
+msgstr ""
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr ""
-"pasirinktas nuoseklusis portas {0} neegzistuoja arba jūsų plokštė nepajungta"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
+#: Preferences.java:391
+msgid "upload"
msgstr ""
-#: Preferences.java:375
-msgid "upload"
-msgstr "įkelti"
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "Į projektą pridėtas(-i) {0} failas(-ai)."
+msgstr ""
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr "{0} grąžino {1}"
+msgstr ""
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr "{0} | Arduino {1}"
+msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_lt_LT.properties b/app/src/processing/app/i18n/Resources_lt_LT.properties
index d6c29e8b9..bc585c354 100644
--- a/app/src/processing/app/i18n/Resources_lt_LT.properties
+++ b/app/src/processing/app/i18n/Resources_lt_LT.properties
@@ -4,79 +4,79 @@
# Laimutis Palivonas Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= U\u017edarant paskutinij\u012f atdar\u0105 projekt\u0105 i\u0161sijungs Arduino \nprograma.
+#: Base.java:773
+\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= U\u017edarius paskutini atidaryt\u0105 eskiz\u0105 Arduino baigs darb\u0105.
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Jei nei\u0161saugosite, j\u016bs\u0173 pakeitimai bus prarasti.
+#: Editor.java:2053
+\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Jeigu ne i\u0161saugosit, visi pakeitimai bus prarasti.
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
-A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Failas "{0}" jau egzistuoja "{1}"
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Aplankas "{0}" jau egzistuoja. Negalima atidaryti projekto.
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Yra nauja Arduino programos versija,\nar norite eiti \u012f Arduino atsisiuntim\u0173 tinklap\u012f?
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Klaida bandant atidaryti fail\u0105,\nnaudojam\u0105 konsol\u0117s i\u0161vesties saugojimui.
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
-#: Editor.java:1102
-About\ Arduino=Apie Arduino
+#: Editor.java:1116
+!About\ Arduino=
-#: Editor.java:643
-Add\ File...=Prid\u0117ti fail\u0105...
+#: Editor.java:650
+!Add\ File...=
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
+#: Base.java:963
+Add\ Library...=Prid\u0117ti bibleotek\u0105...
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Klaida bandant pataisyti failo kodavim\u0105.\nNebandykite i\u0161saugoti projekto, nes tai gali panaikinti sen\u0105\nversij\u0105. Naudokite Atidaryti, kad \u012fkelti projekt\u0105 i\u0161 naujo ir bandyti dar kart\u0105.\n
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ne\u017einoma klaida bandant atidaryti\nspecifin\u012f j\u016bs\u0173 \u012frenginiui kod\u0105.
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
-Archive\ Sketch=Archyvuoti projekt\u0105
+!Archive\ Sketch=
#: tools/Archiver.java:109
-Archive\ sketch\ as\:=Archyvuoti projekt\u0105 kaip\:
+!Archive\ sketch\ as\:=
#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=Projekto archyvavimas at\u0161auktas.
+!Archive\ sketch\ canceled.=
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Projekto archyvavimas at\u0161auktas, nes neimanoma\njo tinkamai i\u0161saugoti.
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
#: ../../../processing/app/I18n.java:83
!Arduino\ ARM\ (32-bits)\ Boards=
@@ -84,62 +84,68 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino negali veikti, nes ne\u012fmanoma\nsukurti aplanko j\u016bs\u0173 nustatym\u0173 saugojimui.
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino negali veikti, nes ne\u012fmanoma\nsukurti aplanko j\u016bs\u0173 projekt\u0173 saugojimui.
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino reikalingas pilnas JDK (nevien tik JRE).\nPra\u0161ome instaliuoti JDL 1.5 arba v\u0117lesn\u012f.\nDaugiau informacijos galima rasti \u017einyne.
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Ar tikrai norite i\u0161trinti "{0}"?
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Ar tikrai norite i\u0161trinti projekt\u0105?
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
#: tools/AutoFormat.java:91
-Auto\ Format=Automatinis formatavimas
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
#: tools/AutoFormat.java:931
-Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Automatinis formatavimas at\u0161auktas\: perdaug kairi\u0173j\u0173 fig\u016brini\u0173 skliaust\u0173.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
#: tools/AutoFormat.java:922
-Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Automatinis formatavims at\u0161auktas\: perdaug kairi\u0173j\u0173 skliaust\u0173.
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
-#: tools/AutoFormat.java:928
-Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Automatinis formatavimas at\u0161auktas\: perdaug de\u0161ini\u0173j\u0173 fig\u016brini\u0173 skliaust\u0173.
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
-#: tools/AutoFormat.java:919
-Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Automatinis formatavims at\u0161auktas\: perdaug de\u0161ini\u0173j\u0173 skliaust\u0173.
-
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=Automatinis formatavimas baigtas.
-
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=Automati\u0161kai asocijuoti .ino failus su Arduino
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
#: SerialMonitor.java:110
-Autoscroll=Automatinis teksto slinkimas
+!Autoscroll=
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
-Bad\ error\ line\:\ {0}=Eilut\u0117 su klaida\: {0}
+!Bad\ error\ line\:\ {0}=
-#: Editor.java:2089
-Bad\ file\ selected=Pasirinktas netinkamas failas
+#: Editor.java:2136
+!Bad\ file\ selected=
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=Plok\u0161t\u0117
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -148,23 +154,29 @@ Board=Plok\u0161t\u0117
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
-Both\ NL\ &\ CR=Naudoti NL & CR
+!Both\ NL\ &\ CR=
-#: Preferences.java:80
-Browse=Nar\u0161yti
+#: Preferences.java:81
+!Browse=
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=Programos aplankas nerastas arba ne\u012fmanoma \u012f j\u012f ra\u0161yti
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
-Burn\ Bootloader=\u012era\u0161yti \u012fkrovos program\u0105
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u012e I/O plok\u0161t\u0119 \u012fkeliama \u012fkrovos programa (tai gali u\u017etrukti kelias minutes)...
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
#: ../../../processing/app/Base.java:368
!Can't\ open\ source\ sketch\!=
@@ -172,80 +184,92 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u012e I/O
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
-Cancel=At\u0161aukti
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
-#: Sketch.java:459
-Cannot\ Rename=Ne\u012fmanoma pervadinti
+#: Sketch.java:455
+!Cannot\ Rename=
#: SerialMonitor.java:112
-Carriage\ return=Gr\u012f\u017eimas (CR)
-
-#: Preferences.java:86
-Catalan=Katalon\u0173
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=Paleid\u017eiant program\u0105 tikrinti atnaujinimus
+!Carriage\ return=
#: Preferences.java:87
-Chinese\ Simplified=Kin\u0173 (supaprastinta)
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
!Chinese\ Traditional=
-#: Editor.java:514 Editor.java:1977
-Close=U\u017edaryti
+#: Editor.java:521 Editor.java:2024
+!Close=
-#: Editor.java:1194 Editor.java:2702
-Comment/Uncomment=Komentuoti/Nekomentuoti
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
-Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompiliatoriaus klaida, pra\u0161ome perkelti \u0161\u012f kod\u0105 \u012f {0}
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Projektas kompiliuojamas...
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
#: EditorConsole.java:152
-Console\ Error=Konsol\u0117s klaida
+!Console\ Error=
-#: Editor.java:1143 Editor.java:2660
-Copy=Kopijuoti
+#: Editor.java:1157 Editor.java:2707
+!Copy=
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
Copy\ as\ HTML=Kopijuoti kaip HTML
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=Kopijuoti forumui
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}'' ne\u012fmanoma prid\u0117ti \u012f projekt\u0105.
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=Nepavyko nukopijuoti projekto \u012f reikiam\u0105 aplank\u0105.
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=Nepavyko sukurti projekto aplanko.
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
-#: Editor.java:2159
-Could\ not\ create\ the\ sketch.=Nepavyko sukurti projekto.
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=Ne\u012fmanoma i\u0161trinti "{0}".
+!Could\ not\ delete\ "{0}".=
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Ne\u012fmanoma i\u0161trinti esamo ''{0}'' failo.
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
-Could\ not\ delete\ {0}=Ne\u012fmanoma i\u0161trinti {0}
+!Could\ not\ delete\ {0}=
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -259,140 +283,146 @@ Could\ not\ delete\ {0}=Ne\u012fmanoma i\u0161trinti {0}
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=Ne\u012fmanoma atidaryti nuorodos\n{0}
+Could\ not\ open\ the\ URL\n{0}=Ne\u012fmanoma atidaryti nuorod\u0105\n{0}
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplanko\n{0}
+Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0}
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Ne\u012fmanoma i\u0161 naujo i\u0161saugoti projekto. Pabandykite nukopijuoti programos \nkod\u0105 \u012f kit\u0105 tekstin\u012f redaktori\u0173.
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=Ne\u012fmanoma i\u0161naujo i\u0161saugoti projekto.
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Ne\u012fmanoma nuskaityti spalv\u0173 nustatym\u0173.Tur\u0117site perinstaliuoti Processing.
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ne\u012fmanoma nuskaityti nustatym\u0173 pagal nutyl\u0117jim\u0105.\nTur\u0117site perinstaliuoti Arduino program\u0105.
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
-Could\ not\ read\ preferences\ from\ {0}=Ne\u012fmanoma nuskaityti nustatym\u0173 i\u0161 {0}
+!Could\ not\ read\ preferences\ from\ {0}=
-#: Base.java:2196
+#: Base.java:2482
#, java-format
-Could\ not\ remove\ old\ version\ of\ {0}=Ne\u012fmanoma panaikinti senos {0} versijos
+!Could\ not\ remove\ old\ version\ of\ {0}=
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=Ne\u012fmanoma pervadinti "{0}" \u012f "{1}"
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=Ne\u012fmanoma pervadinti projekto. (0)
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=Ne\u012fmanoma pervadinti projekto. (1)
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=Ne\u012fmanoma pervadinti projekto. (2)
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
-#: Base.java:2206
+#: Base.java:2492
#, java-format
-Could\ not\ replace\ {0}=Ne\u012fmanoma pakeisti {0}
+!Could\ not\ replace\ {0}=
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=Ne\u012fmanoma archyvuoti projekto
+!Couldn't\ archive\ sketch=
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=Ne\u012fmanoma nustatyti programos dyd\u017eio\: {0}
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
-#: Sketch.java:620
-Couldn't\ do\ it=Ne\u012fmanoma to padaryti
+#: Sketch.java:616
+!Couldn't\ do\ it=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
-Cut=I\u0161kirpti
+#: Editor.java:1149 Editor.java:2699
+!Cut=
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
-Danish=Dan\u0173
+#: Preferences.java:90
+!Danish=
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Suma\u017einti teksto postum\u012f
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
-#: Sketch.java:595 EditorHeader.java:314
-Delete=I\u0161trinti
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u012erenginys neatsako, patikrinkite ar pasirinktas tinkamas nuoseklusis portasarba perkraukite plok\u0161t\u0119 prie\u0161 \u012fkrov\u0105
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=At\u0161aukti pakeitimus ir \u012fkelti i\u0161 naujo??
+!Discard\ all\ changes\ and\ reload\ sketch?=
-#: Editor.java:2017
-Don't\ Save=Nei\u0161saugoti
+#: Editor.java:2064
+!Don't\ Save=
-#: Editor.java:2228 Editor.java:2264
-Done\ Saving.=I\u0161saugota.
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
-#: Editor.java:2463
-Done\ burning\ bootloader.=\u012ekrovos programa \u012fkelta.
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=Kompiliacija baigta.
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
-#: Editor.java:2517
-Done\ printing.=Spausdinimas baigtas.
+#: Editor.java:2564
+!Done\ printing.=
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=\u012ek\u0117limas baigtas.
-
-#: Preferences.java:90
-Dutch=Oland\u0173
-
-#: Editor.java:1116
-Edit=Redaguoti
-
-#: Preferences.java:354
-Editor\ font\ size\:\ =Redaktoriaus \u0161rifto dydis\:
-
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
#: Preferences.java:91
-English=Angl\u0173
+!Dutch=
-#: Editor.java:1049
-Environment=Programos aplinka
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
-Error=Klaida
+#: Editor.java:1130
+!Edit=
-#: Sketch.java:1069 Sketch.java:1092
-Error\ adding\ file=Klaida pridedant fail\u0105
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
-#: debug/Compiler.java:426
-Error\ compiling.=Klaida kompiliuojant.
+#: Preferences.java:353
+!Editor\ language\:\ =
-#: Base.java:1433
-Error\ getting\ the\ Arduino\ data\ folder.=Klaida kreipiantis \u012f Arduino duomen\u0173 aplank\u0105.
+#: Preferences.java:92
+!English=
-#: Serial.java:567
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+!Error=
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
#, java-format
-Error\ inside\ Serial.{0}()=Klaida Serial.{0}()
+!Error\ inside\ Serial.{0}()=
#: ../../../processing/app/Base.java:1232
!Error\ loading\ libraries=
@@ -403,264 +433,274 @@ Error\ inside\ Serial.{0}()=Klaida Serial.{0}()
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=Klaida atidarant nuosekluj\u012f port\u0105 ''{0}''.
+!Error\ opening\ serial\ port\ ''{0}''.=
-#: Preferences.java:261
-Error\ reading\ preferences=Klaida nuskaitant nustatymus
+#: Preferences.java:277
+!Error\ reading\ preferences=
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Klaida nuskaitant nustatym\u0173 fail\u0105. Pra\u0161ome i\u0161trinti (arba perkelti)\n{0} ir perleisti Arduino.
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=Klaida \u012fkeliant \u012fkrovos program\u0105.
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
#: ../../../processing/app/Editor.java:2555
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
#: SketchCode.java:83
#, java-format
-Error\ while\ loading\ code\ {0}=Klaida \u012fkeliant kod\u0105 {0}
+!Error\ while\ loading\ code\ {0}=
-#: Editor.java:2520
-Error\ while\ printing.=Klaida spausdinant.
+#: Editor.java:2567
+!Error\ while\ printing.=
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
-Examples=Pavyzd\u017eiai
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksportavimas at\u0161auktas, pirmiausia turi b\u016bti i\u0161saugoti pakeitimai.
+#: Editor.java:516
+!Examples=
-#: Base.java:1814
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
-File=Failai
+#: Editor.java:491
+!File=
#: Preferences.java:94
-Filipino=Filipin\u0173
+!Filipino=
#: FindReplace.java:124 FindReplace.java:127
-Find=Ie\u0161koti
+!Find=
-#: Editor.java:1235
-Find\ Next=Ie\u0161koti sekan\u010dio
+#: Editor.java:1249
+!Find\ Next=
-#: Editor.java:1245
-Find\ Previous=Ie\u0161koti ankstesnio
+#: Editor.java:1259
+!Find\ Previous=
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=Ie\u0161koti \u017einyne
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
-#: Editor.java:1220
-Find...=Ie\u0161koti...
+#: Editor.java:1234
+!Find...=
#: FindReplace.java:80
-Find\:=Ie\u0161koti\:
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=Pataisyti kodavim\u0105 ir \u012fkelti i\u0161 naujo.
+!Fix\ Encoding\ &\ Reload=
-#: ../../../processing/app/Base.java:2057
-!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+#: Base.java:1851
+For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Daugiau informacijos apie bibliotek\u0173 diegim\u0105, \u017eiur\u0117kite\: http\://arduino.cc/en/Guide/Libraries\n
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
-French=Pranc\u016bz\u0173
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Da\u017eniausiai u\u017eduodami klausimai
-
#: Preferences.java:95
-Galician=Gal\u0173
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
-German=Vokie\u010di\u0173
-
-#: Editor.java:1041
-Getting\ Started=Pradedantiesiems
-
#: Preferences.java:97
-Greek=Graik\u0173
+!German=
-#: Base.java:1799
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+!Greek=
+
+#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
-#: Base.java:1785
+#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
-#: Base.java:1809
+#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
-#: Base.java:1787
+#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
-Help=Pagalba
+#: Editor.java:1015
+!Help=
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Pirmiausia i\u0161saugoti projekt\u0105 \nprie\u0161 bandant j\u012f pervadinti?
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=Kaip siurrealu
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
-#: Preferences.java:98
-Hungarian=Vengr\u0173
+#: Preferences.java:100
+!Hungarian=
#: FindReplace.java:96
-Ignore\ Case=Ignoruoti kapitaliacij\u0105
+!Ignore\ Case=
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Ignoruojamas netinkamas bibliotekos pavadinimas
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas
-#: Base.java:1132
-Ignoring\ sketch\ with\ bad\ name=Ignoruojamas projektas su netinkamu pavadinimu
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
-#: Editor.java:629
-Import\ Library...=Prid\u0117ti bibliotek\u0105...
+#: Editor.java:636
+!Import\ Library...=
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Padidinti teksto postum\u012f
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
-#: Preferences.java:99
+#: Preferences.java:101
!Indonesian=
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
-Italian=Ital\u0173
-
-#: Preferences.java:101
-Japanese=Japon\u0173
-
#: Preferences.java:102
-!Korean=
+!Italian=
#: Preferences.java:103
-Latvian=Latvi\u0173
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+!Japanese=
#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
-Message=Prane\u0161imas
+#: Base.java:2112
+!Message=
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Tr\u016bksta */ komentar\u0173 /* pabaigoje */
+#: Editor.java:2156
+!Moving=
-#: Preferences.java:433
-More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Daugiau nustatym\u0173 galima pakeisti tiesiogiai faile
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
-#: Editor.java:2109
-Moving=Perk\u0117limas
-
-#: Sketch.java:286
-Name\ for\ new\ file\:=Naujo failo pavadinimas\:
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
-New=Naujas
+#: EditorToolbar.java:41 Editor.java:493
+!New=
#: EditorToolbar.java:46
-New\ Editor\ Window=Naujas redaktoriaus langas
+!New\ Editor\ Window=
#: EditorHeader.java:292
-New\ Tab=Naujas skirtukas
+!New\ Tab=
#: SerialMonitor.java:112
-Newline=Nauja eilut\u0117
+!Newline=
#: EditorHeader.java:340
-Next\ Tab=Sekantis skirtukas
+!Next\ Tab=
-#: UpdateCheck.java:108 Preferences.java:77
-No=Ne
+#: Preferences.java:78 UpdateCheck.java:108
+!No=
-#: debug/Compiler.java:79
-No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nepasirinkta plok\u0161t\u0117; pra\u0161ome j\u0105 pasirinkti i\u0161 \u012erankiai > Plok\u0161t\u0117 \nmeniu.
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
-No\ changes\ necessary\ for\ Auto\ Format.=Automatiniam formatavimui pakeitimai nereikalingi.
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=\u012e projekt\u0105 nebuvo prid\u0117ta joki\u0173 fail\u0173.
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
#: Platform.java:167
-No\ launcher\ available=Nerasta jokio paleid\u0117jo
+!No\ launcher\ available=
#: SerialMonitor.java:112
-No\ line\ ending=Be eilut\u0117s pabaigos
+!No\ line\ ending=
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=I\u0161tikr\u0173j\u0173, jums laikas \u012fkv\u0117pti gryno oro.
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Na tikrai, tau laikas \u012fkv\u0117pti gryno oro.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=\u012era\u0161as nerastas apie "{0}"
+!No\ reference\ available\ for\ "{0}"=
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Nekritin\u0117 klaida nustatant bendraj\u0105 i\u0161vaizd\u0105.
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-Nope=Ne
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
@@ -668,81 +708,87 @@ Nope=Ne
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=Gerai
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=\u012e projekt\u0105 prid\u0117tas vienas failas.
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
#: EditorToolbar.java:41
-Open=Atidaryti
+!Open=
-#: Editor.java:2641
-Open\ URL=Atidaryti nuorod\u0105
+#: Editor.java:2688
+!Open\ URL=
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=Atidaryti Arduino projekt\u0105...
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
#: EditorToolbar.java:46
-Open\ in\ Another\ Window=Atidaryti naujame lange
+!Open\ in\ Another\ Window=
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=Atidaryti...
-#: Editor.java:556
-Page\ Setup=Puslapio nustatymai
+#: Editor.java:563
+!Page\ Setup=
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
-Paste=\u012eterpti
+#: Editor.java:1189 Editor.java:2731
+!Paste=
-#: Preferences.java:105
-Persian=Pers\u0173
+#: Preferences.java:109
+!Persian=
-#: debug/Compiler.java:465
-Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Pra\u0161ome prid\u0117ti SPI bibliotek\u0105 i\u0161 Projektas > Prid\u0117ti bibliotek\u0105 meniu.
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=Pra\u0161ome instaliuoti JDK 1.5 arba v\u0117lesn\u012f
+#: Base.java:239
+!Please\ install\ JDK\ 1.5\ or\ later=
-#: Preferences.java:106
+#: Preferences.java:110
!Polish=
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
-Preferences=Nustatymai
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
#: FindReplace.java:123 FindReplace.java:128
-Previous=Ankstesnis
+!Previous=
#: EditorHeader.java:326
-Previous\ Tab=Ankstesnis skirtukas
+!Previous\ Tab=
-#: Editor.java:564
-Print=Spausdinti
+#: Editor.java:571
+!Print=
-#: Editor.java:2524
-Printing\ canceled.=Spausdinimas at\u0161auktas.
+#: Editor.java:2571
+!Printing\ canceled.=
-#: Editor.java:2500
-Printing...=Spausdinama...
+#: Editor.java:2547
+!Printing...=
-#: Base.java:1671
-Problem\ Opening\ Folder=Klaida atidarant aplank\u0105
+#: Base.java:1957
+Problem\ Opening\ Folder=Problema atidarant aplank\u0105
-#: Base.java:1647
-Problem\ Opening\ URL=Klaida atidarant nuorod\u0105
+#: Base.java:1933
+Problem\ Opening\ URL=Problema atidarant nuorod\u0105
-#: Base.java:220
-Problem\ Setting\ the\ Platform=Problema nustatant platform\u0105.
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
!Problem\ accessing\ board\ folder\ /www/sd=
@@ -750,248 +796,258 @@ Problem\ Setting\ the\ Platform=Problema nustatant platform\u0105.
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
-Problem\ getting\ data\ folder=Klaida kreipiantis \u012f duomen\u0173 aplank\u0105
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=Klaida perkeliant {0} \u012f programos aplank\u0105
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
#: debug/Uploader.java:209
-Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Klaida \u012fkeliant \u012f plok\u0161t\u0119. Ie\u0161kokite http\://www.arduino.cc/en/Guide/Troubleshooting\#upload klaidos sprendimo.
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=Klaida pervadinant
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Programa gali atidaryti tik savo projektus\nir failus su pl\u0117tiniais .ino ir .pde
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
-Programmer=Programatorius
+#: Editor.java:704
+!Programmer=
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=I\u0161eiti
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=Perdaryti
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
-#: Editor.java:1065
-Reference=\u017dinynas
+#: Editor.java:1078
+!Reference=
#: EditorHeader.java:300
-Rename=Pervadinti
+!Rename=
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
-Replace=Pakeisti
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
#: FindReplace.java:122 FindReplace.java:129
-Replace\ &\ Find=Pakeisti ir surasti
+!Replace\ &\ Find=
#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=Pakeisti visk\u0105
+!Replace\ All=
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=Pakeisti esam\u0105 {0} versij\u0105?
+!Replace\ the\ existing\ version\ of\ {0}?=
#: FindReplace.java:81
-Replace\ with\:=Pakeisti \u012f\:
+!Replace\ with\:=
-#: Preferences.java:109
-Romanian=Rumun\u0173
+#: Preferences.java:113
+!Romanian=
-#: Preferences.java:110
+#: Preferences.java:114
!Russian=
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
-Save=I\u0161saugoti
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
-#: Editor.java:530
-Save\ As...=I\u0161saugoti kaip...
+#: Editor.java:537
+!Save\ As...=
-#: Editor.java:2270
-Save\ Canceled.=I\u0161saugojimas at\u0161auktas.
+#: Editor.java:2317
+!Save\ Canceled.=
-#: Editor.java:2420
-Save\ changes\ before\ export?=\u012e\u0161saugoti pakeitimus prie\u0161 eksportuojant?
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =I\u0161saugoti pakeitimus "{0}"?
+!Save\ changes\ to\ "{0}"?\ \ =
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=I\u0161saugoti projekto aplank\u0105 kaip...
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
-#: Editor.java:2223 Editor.java:2261
-Saving...=I\u0161saugoma...
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=Pasirinkite (arba sukurkite nauj\u0105) projekt\u0173 aplank\u0105 ...
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
-#: Editor.java:1184 Editor.java:2692
-Select\ All=Pa\u017eym\u0117ti visk\u0105
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Pasirinkite atvaizd\u0105 arba kit\u0105 duomen\u0173 fail\u0105, kad \u012fkelti \u012f j\u016bs\u0173 projekt\u0105
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=Pasirinkite nauj\u0105 viet\u0105 projektams
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
#: ../../../processing/app/debug/Compiler.java:146
!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
#: SerialMonitor.java:93
-Send=Si\u0173sti
+!Send=
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Nuosekliojo porto monitorius
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
-#: Serial.java:147
+#: Serial.java:174
#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Nuoseklusis portas ''{0}'' naudojamas. Pabandykite i\u0161jungti program\u0105, kuri gali j\u012f naudoti.
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Nuoseklusis portas ''{0}'' nerastas. Ar pasirinkote tinkam\u0105 i\u0161 \u012erankiai > Nuoseklusis portas meniu?
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Nuoseklusis portas {0} nerastas.\nT\u0119sti \u012fk\u0117lim\u0105 naudojant kit\u0105 nuosekluj\u012f port\u0105?
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
-#: Base.java:1440
-Settings\ issues=Nustatym\u0173 klaidos
+#: Base.java:1681
+!Settings\ issues=
-#: Editor.java:634
-Show\ Sketch\ Folder=Parodyti projekto aplank\u0105
+#: Editor.java:641
+!Show\ Sketch\ Folder=
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =Parodyti i\u0161samius rezultatus\:
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
-#: Editor.java:600
-Sketch=Projektas
+#: Editor.java:607
+!Sketch=
-#: Sketch.java:1796
-Sketch\ Disappeared=Projektas nerastas
+#: Sketch.java:1754
+!Sketch\ Disappeared=
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=Projektas neegzistuoja
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=Projektas skirtas tik skaitymui
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
-#: Sketch.java:298
-Sketch\ is\ Untitled=Projektas be pavadinimo
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
-#: Sketch.java:724
-Sketch\ is\ read-only=Projektas skirtas tik skaitymui
+#: Sketch.java:720
+!Sketch\ is\ read-only=
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Projektas per dydelis; ie\u0161kokite http\://www.arduino.cc/en/Guide/Troubleshooting\#size patarim\u0173, j\u0105 ma\u017einant.
+#: Sketch.java:1653
+Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Eskizas per didelis; \u017ei\u016br\u0117kite http\://www.arduino.cc/en/Guide/Troubleshooting\#size patarimams kaip j\u012f suma\u017einti.
-#: Editor.java:503
-Sketchbook=Projektai
-
-#: Base.java:257
-Sketchbook\ folder\ disappeared=Nerandamas projekto aplankas
-
-#: Preferences.java:299
-Sketchbook\ location\:=Projekt\u0173 vieta\:
-
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Kaikurie failai pa\u017eym\u0117ti kaip "tik skaitymui",\ntod\u0117l tur\u0117tum\u0117te i\u0161saugoti projekt\u0105 \u012f kit\u0105 viet\u0105,\nir bandyti i\u0161 naujo.
-
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Kaikurie failai pa\u017eym\u0117ti kaip "tik skaitymui",\ntur\u0117tum\u0117te i\u0161saugoti projekt\u0105 i kit\u0105 viet\u0105.
-
-#: Sketch.java:461
+#: ../../../processing/app/Sketch.java:1639
#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Atsipra\u0161ome, projektas (arba aplankas) pavadinimu "{0}" jau egzistuoja.
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
-#: Preferences.java:111
-Spanish=Ispan\u0173
-
-#: Base.java:537
-Sunshine=Saul\u0117ta
-
-#: Preferences.java:83
-!System\ Default=
-
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
-
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Rakta\u017eodis 'BYTE' daugiau nebepalaikomas.
-
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klas\u0117 Client buvo pervardinta \u012f EthernetClient.
-
-#: debug/Compiler.java:477
-The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klas\u0117 Server buvo pervardinta \u012f EthernetServer.
-
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klas\u0117 Udp buvo pervardinta \u012f EthernetUdp.
-
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Klaida nei\u0161nyksta, ta\u010diau Arduino tur\u0117t\u0173 veikti gerai.
-
-#: Editor.java:2100
-#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Failas "{0}" turi b\u016bti\nprojekto aplanke, pavadinimu "{1}".\nSukurti \u0161\u012f aplank\u0105, perkelti fail\u0105 ir testi??
-
-#: Base.java:1202
-#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Biblioteka "{0}" negali b\u016bti naudojama.\nBibliotek\u0173 pavadinimus turi sudaryti tik raid\u0117s ir skai\u010diai.\n(Tik ASCII be tarp\u0173, ir negali prasid\u0117ti skai\u010diumi).\n
-
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Pagrindinis failas negali tur\u0117ti pl\u0117tinio.\n(Turb\u016bt laikas jums pereiti prie\n"tikros" programavimo aplinkos)
-
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=Pavadinimas negali prasid\u0117ti ta\u0161ku.
-
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Pasirinktas projektas nebeegzistuoja.\nTurb\u016bt tur\u0117tum\u0117te perleisti Arduino, kad atnaujinti\nprojekt\u0173 meniu.
-
-#: Base.java:1125
-#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Projektas "{0}" negali b\u016bti naudojamas.\nProjekto pavadinim\u0105 turi sudaryti tik raid\u0117s ir skai\u010diai\n(tik ASCII be tarp\u0173, ir negali prasid\u0117ti skai\u010diumi).\nKad panaikinti \u0161\u012f prane\u0161im\u0105, i\u0161trinkite projekt\u0105 i\u0161\n{1}
-
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Nerastas projekto aplankas.\n Bus bandoma j\u012f i\u0161saugoti \u012f t\u0105 pa\u010di\u0105 viet\u0105,\nbet viskas, i\u0161skyrus kod\u0105, bus prarasta.
-
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Projekto pavadinimas turi b\u016bti pakeistas. Projekt\u0173 pavadinimai turi b\u016bti\nsudaryti tik i\u0161 ASCII simboli\u0173 ir skai\u010di\u0173 (bet negali prasid\u0117ti\nskai\u010diumi). Taip pat turi b\u016bti ne ilgesni nei 64 simboliai.\n
+#: Editor.java:510
+!Sketchbook=
#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Projekto aplankas nebeegzistuoja.\nArduino pereis i projekto aplank\u0105 pagal nutyl\u0117jim\u0105 ir, \njei tas reikalinga, sukurs nauj\u0105 projekto aplank\u0105.\nTada Arduino liausis kalb\u0117ti apie save tre\u010diuoju asmeniu.\n
+!Sketchbook\ folder\ disappeared=
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0160is failas jau buvo nokipijuotas i aplank\u0105, i\u0161\nkurio bandote j\u012f prid\u0117ti.\n
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+Sunshine=Saul\u0117s \u0161viesa
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
+#: Base.java:535
Time\ for\ a\ Break=Laikas pertraukai
-#: Editor.java:656
-Tools=\u012erankiai
+#: Editor.java:663
+!Tools=
-#: Editor.java:1057
-Troubleshooting=Klaid\u0173 diagnostika
+#: Editor.java:1070
+!Troubleshooting=
#: ../../../processing/app/Preferences.java:117
!Turkish=
@@ -1010,7 +1066,7 @@ Troubleshooting=Klaid\u0173 diagnostika
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1018,159 +1074,161 @@ Troubleshooting=Klaid\u0173 diagnostika
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=Ne\u017einomas i\u0161imties tipas\: {0}
+!Uncaught\ exception\ type\:\ {0}=
-#: Editor.java:1119 Editor.java:1341
-Undo=At\u0161aukti
+#: Editor.java:1133 Editor.java:1355
+!Undo=
#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Neatpa\u017einta platforma, nerasta jokio paleid\u0117jo.\nKad gal\u0117tum\u0117te atidaryti nuorodas arba aplankus, prid\u0117kite \n"launcher\=/kelias/\u012f/program\u0105" \u012f fail\u0105 preferences.txt
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
#: UpdateCheck.java:111
-Update=Atnaujinti
+!Update=
-#: Preferences.java:412
-Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=I\u0161saugant atnaujinti projekt\u0173 fail\u0173 pl\u0117tinius (.pde -> .ino)
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
-#: Editor.java:538 EditorToolbar.java:41
-Upload=\u012ekelti
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=\u012ekelti naudojant programatori\u0173
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=\u012ek\u0117limas at\u0161auktas.
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=\u012ekeliama \u012f I/O plok\u0161t\u0119...
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
-#: Sketch.java:1661
-Uploading...=\u012ekeliama...
+#: Sketch.java:1622
+!Uploading...=
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Naudoti \u017eym\u0117jim\u0105 ie\u0161kant
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
-#: Preferences.java:393
-Use\ external\ editor=Naudoti i\u0161orin\u012f redaktori\u0173
+#: Preferences.java:409
+!Use\ external\ editor=
#: EditorToolbar.java:41 EditorToolbar.java:46
-Verify=Patvirtinti
+!Verify=
-#: Editor.java:602
-Verify\ /\ Compile=Patikrinti / Kompiliuoti
+#: Editor.java:609
+!Verify\ /\ Compile=
-#: Preferences.java:384
-Verify\ code\ after\ upload=Po \u012fk\u0117limo patvirtinti kod\u0105
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
-#: Editor.java:1091
-Visit\ Arduino.cc=Eiti \u012f Arduino.cc
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
-#: Base.java:1842
-Warning=Persp\u0117jimas
+#: Editor.java:1105
+!Visit\ Arduino.cc=
-#: debug/Compiler.java:501
-Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() buvo pervardinta \u012f Wire.read().
+#: Base.java:2128
+!Warning=
-#: debug/Compiler.java:495
-Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() buvo pervardinta \u012f Wire.write().
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
#: FindReplace.java:105
-Wrap\ Around=Lau\u017eyti tekst\u0105
+!Wrap\ Around=
#: debug/Uploader.java:213
-Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Rastas netinkamas mokrokontroleris. Ar pasirinkote tinkam\u0105 plok\u0161t\u0119 \ni\u0161 \u012erankiai > Plok\u0161t\u0117 meniu?
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
-#: UpdateCheck.java:108 Preferences.java:76
-Yes=Taip
+#: Preferences.java:77 UpdateCheck.java:108
+!Yes=
-#: Sketch.java:1078
-You\ can't\ fool\ me=Man\u0119s neapgausi
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Failas .cpp negali b\u016bti tuo pa\u010diu pavadinimu kaip ir projektas.
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Negalite pervadinti projekto \u012f "{0}"\nnes projektas jau turi .cpp fail\u0105 tokiu pavadinimu.
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Negalite i\u0161saugoti projekto kaip "{0}"\nnes projektas jau turi .cpp fail\u0105 tokiu pavadinimu.
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Negalite i\u0161saugoti \u012f aplank\u0105, projekto\naplanko viduje. Tai t\u0119stusi am\u017einai.
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
-#: Base.java:1602
-You\ forgot\ your\ sketchbook=Pamir\u0161ote savo projekt\u0173 segtuv\u0105
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Pasiektas automatinio projekto vard\u0173 suteikimo limitas \u0161iai dienai.\nK\u0105 manote apie pasivaik\u0161\u010diojim\u0105?
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
!ZIP\ files\ or\ folders=
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" yra klaidingas pl\u0117tinys.
+!".{0}"\ is\ not\ a\ valid\ extension.=
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sudaro ne\u017einomi simboliai. Jei \u0161is kodas buvo sukurtas naudojant senesn\u0119 programos versij\u0105, tur\u0117tum\u0117te naudoti \u012erankiai -> Pataisyti kodavim\u0105 ir \u012fkelti i\u0161 naujo, kad atnaujinti projekt\u0105 naudojant UTF-8 kodavim\u0105. Arba tur\u0117tum\u0117te i\u0161trinti ne\u017einomus simbolius kad panaikinti \u0161i\u0105 klaid\u0105.
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
-#: debug/Compiler.java:466
-\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=Nuo Arduino 0019, Ethernet biblioteka priklausoma nuo SPI bibliotekos.\nPana\u0161u, kad naudojate \u0161i\u0105 arba kit\u0105 bibliotek\u0105, kuri priklausoma nuo SPI bibliotekos.
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nNuo Arduino 1.0, rakta\u017eodis 'BYTE' nebepalaikomas.\nVietoje jo pra\u0161ome naudoti Serial.write().\n\n
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nNuo Arduino 1.0, Ethernet bibliotekos klas\u0117 Client buvo pervardinta\n\u012f EthernetClient.\n\n
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nNuo Arduino 1.0, Ethernet bibliotekos klas\u0117 Server buvo pervardinta \u012f EthernetServer.\n\n
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nNuo Arduino 1.0, funkcija Wire.receive() buvo pervardinta \u012f Wire.read() d\u0117lgeresnio der\u0117jimo su kitomis bibliotekomis.\n\n
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nNuo Arduino 1.0, funkcija Wire.send() buvo pervardinta \u012f Wire.write() d\u0117lgeresnio der\u0117jimo su kitomis bibliotekomis.\n\n
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
!baud=
-#: Preferences.java:373
-compilation\ =kompiliacija
+#: Preferences.java:389
+!compilation\ =
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
-createNewFile()\ returned\ false=createNewFile() gr\u0105\u017eino klaid\u0105 (false)
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
-environment=darbin\u0117 aplinka
+#: Base.java:2090
+!environment=
-#: Editor.java:1094
+#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
-!http\://github.com/arduino/Arduino/issues=
+http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues
#: UpdateCheck.java:118
http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
@@ -1178,54 +1236,51 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=ignoruojamas netinkamas \u0161rifto dydis {0}
+!ignoring\ invalid\ font\ size\ {0}=
-#: Base.java:1794
+#: Base.java:2080
index.html=index.html
-#: Editor.java:927 Editor.java:934
-name\ is\ null=n\u0117ra pavadinimo
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
-#: Base.java:1804
+#: Base.java:2090
platforms.html=platforms.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() bait\u0173 buferis yra per ma\u017eas {0} baitams(-\u0173) ir \u012fskaitant simbol\u012f {1}
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: vidin\u0117 klaida... kodas nerastas
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
-#: Editor.java:923
-serialMenu\ is\ null=Nuosekliojo porto meniu tu\u0161\u010dias
+#: Editor.java:932
+!serialMenu\ is\ null=
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=pasirinktas nuoseklusis portas {0} neegzistuoja arba j\u016bs\u0173 plok\u0161t\u0117 nepajungta
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
+#: Preferences.java:391
+!upload=
-#: Preferences.java:375
-upload=\u012fkelti
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.=\u012e projekt\u0105 prid\u0117tas(-i) {0} failas(-ai).
+!{0}\ files\ added\ to\ the\ sketch.=
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
-{0}\ returned\ {1}={0} gr\u0105\u017eino {1}
+!{0}\ returned\ {1}=
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
-{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+!{0}\ |\ Arduino\ {1}=
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_lv_LV.po b/app/src/processing/app/i18n/Resources_lv_LV.po
index c644fa666..7660caf1d 100644
--- a/app/src/processing/app/i18n/Resources_lv_LV.po
+++ b/app/src/processing/app/i18n/Resources_lv_LV.po
@@ -9,8 +9,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: 2012-11-07 16:04+0000\n"
-"Last-Translator: Kristofers Closing the last open sketch will quit Arduino."
-msgstr ""
+msgstr ""
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr ""
+msgstr ""
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr ""
+msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr ""
+msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -71,23 +71,23 @@ msgstr ""
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr ""
+msgstr ""
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr ""
+msgstr ""
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
-msgstr "अर्दुईनो संबंधी"
+msgstr "अर्दुईनो संबंधी"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "फाईल सामील करा"
+msgstr "फाईल सामील करा"
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
msgstr ""
@@ -96,39 +96,39 @@ msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr ""
+msgstr ""
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr ""
-
-#: Preferences.java:84
-msgid "Arabic"
msgstr ""
#: Preferences.java:85
+msgid "Arabic"
+msgstr ""
+
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr ""
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr ""
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr ""
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr ""
+msgstr ""
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -138,122 +138,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr ""
+msgstr ""
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr ""
+msgstr ""
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr ""
+msgstr ""
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr ""
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr ""
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr ""
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr ""
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr ""
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr ""
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr ""
+msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr ""
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr ""
+msgstr ""
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr ""
-
-#: Editor.java:2572
-#, java-format
-msgid "Bad error line: {0}"
-msgstr ""
-
-#: Editor.java:2089
-msgid "Bad file selected"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
msgstr ""
-#: Editor.java:682
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "बोर्ड"
+msgstr "बोर्ड"
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr ""
+msgstr ""
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr ""
+msgstr ""
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr ""
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "बूटलोडर टाका"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr "बूटलोडर टाका"
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr ""
+msgstr ""
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -263,103 +279,119 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
-msgstr ""
+msgstr ""
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr ""
+msgstr ""
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr ""
+msgstr ""
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr ""
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
-msgstr ""
+msgstr ""
-#: Preferences.java:87
-msgid "Chinese Simplified"
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
-msgstr "पण बंद करा"
+msgstr "पण बंद करा"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "टिपणी करा / टिपणी काढा"
+msgstr "टिपणी करा / टिपणी काढा"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr ""
+msgstr ""
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "स्केचचे कंपाइलिंग सुरु आहे..."
+msgstr "स्केचचे कंपाइलिंग सुरु आहे..."
#: EditorConsole.java:152
msgid "Console Error"
-msgstr ""
+msgstr ""
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
-msgstr "कॉपी"
+msgstr "कॉपी"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "HTML कॉपी करा"
+msgstr "HTML कॉपी करा"
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "फोरम साठी कॉपी करा"
+msgstr "फोरम साठी कॉपी करा"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr ""
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr ""
+msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr ""
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr ""
+msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr ""
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr ""
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr ""
+msgstr ""
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -376,87 +408,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr ""
+msgstr ""
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr ""
+msgstr ""
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr ""
+msgstr ""
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr ""
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr ""
+msgstr ""
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr ""
+msgstr ""
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr ""
+msgstr ""
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr ""
+msgstr ""
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr ""
+msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr ""
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr ""
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr ""
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr ""
+msgstr ""
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr ""
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr ""
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr ""
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -467,106 +499,114 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
-msgstr "कट"
+msgstr "कट"
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "अंतर कमी करा"
+msgstr "अंतर कमी करा"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr ""
+msgstr ""
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr ""
+msgstr ""
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr ""
-
-#: Editor.java:2017
-msgid "Don't Save"
-msgstr ""
-
-#: Editor.java:2228 Editor.java:2264
-msgid "Done Saving."
-msgstr ""
-
-#: Editor.java:2463
-msgid "Done burning bootloader."
-msgstr ""
-
-#: Editor.java:1864 Editor.java:1881
-msgid "Done compiling."
-msgstr "कंपाइलिंग पूर्ण"
-
-#: Editor.java:2517
-msgid "Done printing."
-msgstr ""
-
-#: Editor.java:2348 Editor.java:2384
-msgid "Done uploading."
-msgstr ""
-
-#: Preferences.java:90
-msgid "Dutch"
msgstr ""
-#: Editor.java:1116
-msgid "Edit"
-msgstr "संपादन"
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr ""
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr ""
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr ""
-#: Preferences.java:337
-msgid "Editor language: "
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr "कंपाइलिंग पूर्ण"
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr ""
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
msgstr ""
#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr "संपादन"
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
msgid "English"
msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
-msgstr "परिसर"
+msgstr "परिसर"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
-msgstr ""
+msgstr ""
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr ""
+msgstr ""
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr ""
+msgstr ""
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr ""
+msgstr ""
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
@@ -579,34 +619,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr ""
+msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
-msgstr ""
+msgstr ""
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr ""
+msgstr ""
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr ""
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -615,36 +655,40 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr ""
+msgstr ""
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr ""
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
-msgstr "उदाहरणे"
+msgstr "उदाहरणे"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr ""
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
-msgstr ""
+msgstr ""
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
-msgstr "फाईल"
+msgstr "फाईल"
#: Preferences.java:94
msgid "Filipino"
@@ -652,52 +696,56 @@ msgstr ""
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
-msgstr ""
+msgstr ""
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "पुढे शोधा"
+msgstr "पुढे शोधा"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "मागे शोधा"
+msgstr "मागे शोधा"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "संदर्भ शोध"
+msgstr "संदर्भ शोध"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "शोध"
+msgstr "शोध"
#: FindReplace.java:80
msgid "Find:"
-msgstr ""
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr ""
-
-#: ../../../processing/app/Base.java:2057
-msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
msgstr ""
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
-msgstr "नेहमी विचारले जाणारे प्रश्न"
+msgstr "नेहमी विचारले जाणारे प्रश्न"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
msgstr ""
@@ -705,75 +753,87 @@ msgstr ""
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
msgstr ""
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
-msgstr "सुरुवात करताना"
+msgstr "सुरुवात करताना"
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
msgstr ""
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
-msgstr ""
+msgstr ""
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
-msgstr ""
+msgstr ""
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
-msgstr ""
+msgstr ""
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
-msgstr ""
+msgstr ""
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
-msgstr "मदत"
+msgstr "मदत"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr ""
+msgstr ""
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr ""
+msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr ""
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr ""
+msgstr ""
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr ""
+msgstr ""
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
-msgstr ""
+msgstr ""
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "लायब्ररीची आयात..."
+msgstr "लायब्ररीची आयात..."
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -786,11 +846,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "अंतर वाढवा"
+msgstr "अंतर वाढवा"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -799,27 +859,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
+#: Preferences.java:102
msgid "Italian"
msgstr ""
-#: Preferences.java:101
+#: Preferences.java:103
msgid "Japanese"
msgstr ""
-#: Preferences.java:102
+#: Preferences.java:104
msgid "Korean"
msgstr ""
-#: Preferences.java:103
+#: Preferences.java:105
msgid "Latvian"
msgstr ""
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
msgstr ""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -827,111 +887,106 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
msgstr ""
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr ""
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr ""
+msgstr ""
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
-msgstr ""
+msgstr ""
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr ""
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
-msgstr "नवीन"
+msgstr "नवीन"
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr ""
+msgstr ""
#: EditorHeader.java:292
msgid "New Tab"
-msgstr ""
+msgstr ""
#: SerialMonitor.java:112
msgid "Newline"
-msgstr ""
+msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr ""
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr ""
+msgstr ""
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
-msgstr ""
+msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "स्केच मध्ये फाईल सामील नाही."
+msgstr "स्केच मध्ये फाईल सामील नाही."
#: Platform.java:167
msgid "No launcher available"
-msgstr ""
+msgstr ""
#: SerialMonitor.java:112
msgid "No line ending"
-msgstr ""
+msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr ""
+msgstr ""
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "साठी संदर्भ उपलब्ध नाही"
+msgstr "साठी संदर्भ उपलब्ध नाही {0}"
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr ""
+msgstr ""
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
-msgstr ""
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
@@ -944,60 +999,60 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr ""
+msgstr ""
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "स्केच मध्ये एक फाईल सामील केली"
+msgstr "स्केच मध्ये एक फाईल सामील केली"
#: EditorToolbar.java:41
msgid "Open"
-msgstr ""
+msgstr ""
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
-msgstr ""
+msgstr ""
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr ""
+msgstr ""
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr ""
+msgstr ""
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
-msgstr "उघडा..."
+msgstr "उघडा..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "पानाचा नमुना"
+msgstr "पानाचा नमुना"
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "पेस्ट"
+msgstr "पेस्ट"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
msgstr ""
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr ""
+msgstr ""
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
-msgstr ""
+msgstr ""
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1005,45 +1060,53 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "प्राधान्य"
+msgstr "प्राधान्य"
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
-msgstr ""
+msgstr ""
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr ""
+msgstr ""
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "छापा"
+msgstr "छापा"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr ""
+msgstr ""
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr ""
+msgstr ""
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr ""
+msgstr ""
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr ""
+msgstr ""
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr ""
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1053,133 +1116,133 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr ""
+msgstr ""
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr ""
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
-msgstr ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr ""
+msgstr ""
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr ""
+msgstr ""
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "प्रोग्रॅमर"
+msgstr "प्रोग्रॅमर"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
-msgstr "बंद"
+msgstr "बंद"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "एक पाउल पुढे"
+msgstr "एक पाउल पुढे"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "संदर्भ"
+msgstr "संदर्भ"
#: EditorHeader.java:300
msgid "Rename"
-msgstr ""
+msgstr ""
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
-msgstr ""
+msgstr ""
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr ""
+msgstr ""
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr ""
+msgstr ""
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr ""
+msgstr ""
#: FindReplace.java:81
msgid "Replace with:"
-msgstr ""
+msgstr ""
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
msgstr ""
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
-msgstr "जतन करा"
+msgstr "जतन करा"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "जतन करा असे की..."
+msgstr "जतन करा असे की..."
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr ""
+msgstr ""
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr ""
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "येथे बदल जतन करा"
+msgstr "येथे बदल जतन करा {0}"
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr ""
+msgstr ""
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr ""
+msgstr ""
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr ""
+msgstr ""
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "सर्व निवडा"
+msgstr "सर्व निवडा"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr ""
+msgstr ""
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr ""
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1187,187 +1250,202 @@ msgstr ""
#: SerialMonitor.java:93
msgid "Send"
-msgstr ""
+msgstr ""
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "सिरीयल नियंत्रक"
+msgstr "सिरीयल नियंत्रक"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr ""
+msgstr ""
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr ""
+msgstr ""
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr ""
+msgstr ""
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "स्केचचा फोल्डर उघडा"
+msgstr "स्केचचा फोल्डर उघडा"
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr ""
+msgstr ""
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr "स्केच"
+msgstr "स्केच"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr ""
+msgstr ""
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr ""
+msgstr ""
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr ""
+msgstr ""
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr ""
+msgstr ""
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr ""
+msgstr ""
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr ""
+msgstr ""
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
-msgstr "स्केच पुस्तिका"
+msgstr "स्केच पुस्तिका"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr ""
+msgstr ""
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr ""
+msgstr ""
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr ""
+msgstr ""
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr ""
+msgstr ""
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr ""
+msgstr ""
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
msgstr ""
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr ""
+msgstr ""
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr ""
+msgstr ""
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr ""
+msgstr ""
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr ""
+msgstr ""
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr ""
+msgstr ""
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr ""
+msgstr ""
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr ""
+msgstr ""
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr ""
+msgstr ""
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1375,53 +1453,53 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr ""
+msgstr ""
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr ""
+msgstr ""
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr ""
+msgstr ""
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr ""
+msgstr ""
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr ""
+msgstr ""
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr ""
+msgstr ""
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "साधने"
+msgstr "साधने"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "अडचणी सोडविणे"
+msgstr "अडचणी सोडविणे"
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
@@ -1445,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1456,157 +1534,161 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr ""
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "एक पाउल मागे"
+msgstr "एक पाउल मागे"
#: Platform.java:168
msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr ""
+msgstr ""
#: UpdateCheck.java:111
msgid "Update"
-msgstr ""
+msgstr ""
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr ""
+msgstr ""
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
-msgstr "अपलोड"
+msgstr "अपलोड"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "प्रोग्रॅमरच्या सहाय्याने अपलोड"
+msgstr "प्रोग्रॅमरच्या सहाय्याने अपलोड"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr ""
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr ""
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr ""
+msgstr ""
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "ठळक केलेल्यामध्ये शिधा"
+msgstr "ठळक केलेल्यामध्ये शिधा"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr ""
+msgstr ""
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr ""
+msgstr ""
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "पडताळणी / कंपाइल"
+msgstr "पडताळणी / कंपाइल"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "arduino.cc ला भेट द्या"
+msgstr "arduino.cc ला भेट द्या"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr ""
+msgstr ""
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr ""
+msgstr ""
#: debug/Uploader.java:213
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
-msgstr ""
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
-msgstr ""
+msgstr ""
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
-msgstr ""
+msgstr ""
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr ""
+msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
+msgstr ""
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr ""
+msgstr ""
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr ""
+msgstr ""
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr ""
+msgstr ""
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr ""
+msgstr ""
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr ""
+msgstr ""
#: SketchCode.java:258
#, java-format
@@ -1615,93 +1697,86 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-
-#: debug/Compiler.java:478
-msgid ""
-"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-
-#: ../../../processing/app/debug/Compiler.java:451
-msgid ""
-"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
-msgstr ""
+msgstr ""
-#: debug/Compiler.java:496
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
-msgstr ""
+msgstr ""
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr ""
+msgstr ""
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr ""
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr ""
+msgstr ""
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
-msgstr ""
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
@@ -1709,78 +1784,74 @@ msgstr ""
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
-msgstr ""
+msgstr ""
#: UpdateCheck.java:53
msgid "http://www.arduino.cc/latest.txt"
-msgstr ""
+msgstr ""
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
-msgstr ""
+msgstr ""
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr ""
+msgstr ""
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
-msgstr ""
+msgstr ""
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "नाव रिक्त आहे"
+msgstr "नाव रिक्त आहे"
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
-msgstr ""
+msgstr ""
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr ""
+msgstr ""
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr ""
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "सिरिअल मेनू रिक्त आहे"
+msgstr "सिरिअल मेनू रिक्त आहे"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
-msgstr ""
-
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
msgstr ""
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
-msgstr ""
+msgstr ""
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "फाईल्स स्केच मध्ये सामील केल्या"
+msgstr "{0} फाईल्स स्केच मध्ये सामील केल्या"
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr ""
+msgstr ""
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr ""
+msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr ""
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_mr.properties b/app/src/processing/app/i18n/Resources_mr.properties
index b1d2d6ff9..37da06f02 100644
--- a/app/src/processing/app/i18n/Resources_mr.properties
+++ b/app/src/processing/app/i18n/Resources_mr.properties
@@ -3,38 +3,38 @@
# This file is distributed under the same license as the PACKAGE package.
# Sarvesh S. Karkhanis <>, 2012.
#
-!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-04 10\:24-0400\nPO-Revision-Date\: 2012-04-04 13\:24-0400\nLast-Translator\: Sarvesh S. Karkhanis <>\nLanguage-Team\: \nLanguage\: mr\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-12 15\:05+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
-#: Editor.java:2006
+#: Editor.java:2053
!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
@@ -44,25 +44,25 @@
#: EditorConsole.java:153
!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
-#: Editor.java:1102
+#: Editor.java:1116
About\ Arduino=\u0905\u0930\u094d\u0926\u0941\u0908\u0928\u094b \u0938\u0902\u092c\u0902\u0927\u0940
-#: Editor.java:643
+#: Editor.java:650
Add\ File...=\u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u0930\u093e
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
!Add\ Library...=
#: tools/FixEncoding.java:77
!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
-#: Base.java:221
+#: Base.java:228
!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
-#: Preferences.java:84
+#: Preferences.java:85
!Arabic=
-#: Preferences.java:85
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
@@ -83,61 +83,67 @@ Add\ File...=\u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u093
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
+#: Base.java:1682
!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
-#: Base.java:1603
+#: Base.java:1889
!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
-#: Base.java:233
+#: Base.java:240
!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
-#: Sketch.java:591
+#: Sketch.java:587
!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
#: tools/AutoFormat.java:91
!Auto\ Format=
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
!Auto\ Format\ finished.=
-#: Preferences.java:423
+#: Preferences.java:439
!Automatically\ associate\ .ino\ files\ with\ Arduino=
#: SerialMonitor.java:110
!Autoscroll=
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
!Bad\ error\ line\:\ {0}=
-#: Editor.java:2089
+#: Editor.java:2136
!Bad\ file\ selected=
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
Board=\u092c\u094b\u0930\u094d\u0921
#: ../../../processing/app/debug/TargetBoard.java:42
@@ -147,22 +153,28 @@ Board=\u092c\u094b\u0930\u094d\u0921
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
!Both\ NL\ &\ CR=
-#: Preferences.java:80
+#: Preferences.java:81
!Browse=
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u091f\u093e\u0915\u093e
-#: Editor.java:2457
+#: Editor.java:2504
!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
#: ../../../processing/app/Base.java:368
@@ -171,78 +183,90 @@ Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u091f\u093e\u0915\u
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
!Cancel=
-#: Sketch.java:459
+#: Sketch.java:455
!Cannot\ Rename=
#: SerialMonitor.java:112
!Carriage\ return=
-#: Preferences.java:86
+#: Preferences.java:87
!Catalan=
-#: Preferences.java:403
+#: Preferences.java:419
!Check\ for\ updates\ on\ startup=
-#: Preferences.java:87
-!Chinese\ Simplified=
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
!Chinese\ Traditional=
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
Close=\u092a\u0923 \u092c\u0902\u0926 \u0915\u0930\u093e
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
Comment/Uncomment=\u091f\u093f\u092a\u0923\u0940 \u0915\u0930\u093e / \u091f\u093f\u092a\u0923\u0940 \u0915\u093e\u0922\u093e
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
Compiling\ sketch...=\u0938\u094d\u0915\u0947\u091a\u091a\u0947 \u0915\u0902\u092a\u093e\u0907\u0932\u093f\u0902\u0917 \u0938\u0941\u0930\u0941 \u0906\u0939\u0947...
#: EditorConsole.java:152
!Console\ Error=
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
Copy=\u0915\u0949\u092a\u0940
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
Copy\ as\ HTML=HTML \u0915\u0949\u092a\u0940 \u0915\u0930\u093e
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0938\u093e\u0920\u0940 \u0915\u0949\u092a\u0940 \u0915\u0930\u093e
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
-#: Editor.java:2141
+#: Editor.java:2188
!Could\ not\ copy\ to\ a\ proper\ location.=
-#: Editor.java:2132
+#: Editor.java:2179
!Could\ not\ create\ the\ sketch\ folder.=
-#: Editor.java:2159
+#: Editor.java:2206
!Could\ not\ create\ the\ sketch.=
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
!Could\ not\ delete\ "{0}".=
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
!Could\ not\ delete\ {0}=
@@ -258,138 +282,144 @@ Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0938\u093e\u0920\u0940 \u0915\u0949\
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
!Could\ not\ open\ the\ URL\n{0}=
-#: Base.java:1672
+#: Base.java:1958
#, java-format
!Could\ not\ open\ the\ folder\n{0}=
-#: Sketch.java:1811
+#: Sketch.java:1769
!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
-#: Sketch.java:1810
+#: Sketch.java:1768
!Could\ not\ re-save\ sketch=
#: Theme.java:52
!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
-#: Preferences.java:210
+#: Preferences.java:219
!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
!Could\ not\ read\ preferences\ from\ {0}=
-#: Base.java:2196
+#: Base.java:2482
#, java-format
!Could\ not\ remove\ old\ version\ of\ {0}=
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
!Could\ not\ rename\ "{0}"\ to\ "{1}"=
-#: Sketch.java:479
+#: Sketch.java:475
!Could\ not\ rename\ the\ sketch.\ (0)=
-#: Sketch.java:500
+#: Sketch.java:496
!Could\ not\ rename\ the\ sketch.\ (1)=
-#: Sketch.java:507
+#: Sketch.java:503
!Could\ not\ rename\ the\ sketch.\ (2)=
-#: Base.java:2206
+#: Base.java:2492
#, java-format
!Could\ not\ replace\ {0}=
#: tools/Archiver.java:74
!Couldn't\ archive\ sketch=
-#: Sketch.java:1689
+#: Sketch.java:1647
!Couldn't\ determine\ program\ size\:\ {0}=
-#: Sketch.java:620
+#: Sketch.java:616
!Couldn't\ do\ it=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
Cut=\u0915\u091f
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
+#: Preferences.java:90
!Danish=
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u0905\u0902\u0924\u0930 \u0915\u092e\u0940 \u0915\u0930\u093e
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
!Delete=
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
#: tools/FixEncoding.java:57
!Discard\ all\ changes\ and\ reload\ sketch?=
-#: Editor.java:2017
+#: Editor.java:2064
!Don't\ Save=
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
!Done\ Saving.=
-#: Editor.java:2463
+#: Editor.java:2510
!Done\ burning\ bootloader.=
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
Done\ compiling.=\u0915\u0902\u092a\u093e\u0907\u0932\u093f\u0902\u0917 \u092a\u0942\u0930\u094d\u0923
-#: Editor.java:2517
+#: Editor.java:2564
!Done\ printing.=
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
!Done\ uploading.=
-#: Preferences.java:90
+#: Preferences.java:91
!Dutch=
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
Edit=\u0938\u0902\u092a\u093e\u0926\u0928
-#: Preferences.java:354
+#: Preferences.java:370
!Editor\ font\ size\:\ =
-#: Preferences.java:337
+#: Preferences.java:353
!Editor\ language\:\ =
-#: Preferences.java:91
+#: Preferences.java:92
!English=
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
Environment=\u092a\u0930\u093f\u0938\u0930
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
!Error=
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
!Error\ adding\ file=
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
!Error\ compiling.=
-#: Base.java:1433
+#: Base.java:1674
!Error\ getting\ the\ Arduino\ data\ folder.=
-#: Serial.java:567
+#: Serial.java:593
#, java-format
!Error\ inside\ Serial.{0}()=
@@ -402,25 +432,25 @@ Environment=\u092a\u0930\u093f\u0938\u0930
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
!Error\ opening\ serial\ port\ ''{0}''.=
-#: Preferences.java:261
+#: Preferences.java:277
!Error\ reading\ preferences=
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
!Error\ while\ burning\ bootloader.=
#: ../../../processing/app/Editor.java:2555
@@ -430,26 +460,29 @@ Environment=\u092a\u0930\u093f\u0938\u0930
#, java-format
!Error\ while\ loading\ code\ {0}=
-#: Editor.java:2520
+#: Editor.java:2567
!Error\ while\ printing.=
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
Examples=\u0909\u0926\u093e\u0939\u0930\u0923\u0947
-#: Editor.java:2435
+#: Editor.java:2482
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
-#: Base.java:1814
+#: Base.java:2100
!FAQ.html=
-#: Editor.java:484
+#: Editor.java:491
File=\u092b\u093e\u0908\u0932
#: Preferences.java:94
@@ -458,158 +491,164 @@ File=\u092b\u093e\u0908\u0932
#: FindReplace.java:124 FindReplace.java:127
!Find=
-#: Editor.java:1235
+#: Editor.java:1249
Find\ Next=\u092a\u0941\u0922\u0947 \u0936\u094b\u0927\u093e
-#: Editor.java:1245
+#: Editor.java:1259
Find\ Previous=\u092e\u093e\u0917\u0947 \u0936\u094b\u0927\u093e
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
Find\ in\ Reference=\u0938\u0902\u0926\u0930\u094d\u092d \u0936\u094b\u0927
-#: Editor.java:1220
+#: Editor.java:1234
Find...=\u0936\u094b\u0927
#: FindReplace.java:80
!Find\:=
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
!Fix\ Encoding\ &\ Reload=
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
+#: Preferences.java:95
!French=
-#: Editor.java:1083
+#: Editor.java:1097
Frequently\ Asked\ Questions=\u0928\u0947\u0939\u092e\u0940 \u0935\u093f\u091a\u093e\u0930\u0932\u0947 \u091c\u093e\u0923\u093e\u0930\u0947 \u092a\u094d\u0930\u0936\u094d\u0928
-#: Preferences.java:95
+#: Preferences.java:96
!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
+#: Preferences.java:97
!German=
-#: Editor.java:1041
+#: Editor.java:1054
Getting\ Started=\u0938\u0941\u0930\u0941\u0935\u093e\u0924 \u0915\u0930\u0924\u093e\u0928\u093e
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
!Greek=
-#: Base.java:1799
+#: Base.java:2085
!Guide_Environment.html=
-#: Base.java:1785
+#: Base.java:2071
!Guide_MacOSX.html=
-#: Base.java:1809
+#: Base.java:2095
!Guide_Troubleshooting.html=
-#: Base.java:1787
+#: Base.java:2073
!Guide_Windows.html=
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
+#: Editor.java:1015
Help=\u092e\u0926\u0924
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
+#: Sketch.java:295
!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
-#: Sketch.java:886
+#: Sketch.java:882
!How\ very\ Borges\ of\ you=
-#: Preferences.java:98
+#: Preferences.java:100
!Hungarian=
#: FindReplace.java:96
!Ignore\ Case=
-#: Base.java:1207
+#: Base.java:1058
!Ignoring\ bad\ library\ name=
-#: Base.java:1132
+#: Base.java:1436
!Ignoring\ sketch\ with\ bad\ name=
-#: Editor.java:629
+#: Editor.java:636
Import\ Library...=\u0932\u093e\u092f\u092c\u094d\u0930\u0930\u0940\u091a\u0940 \u0906\u092f\u093e\u0924...
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e
-#: Preferences.java:99
+#: Preferences.java:101
!Indonesian=
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
+#: Preferences.java:102
!Italian=
-#: Preferences.java:101
+#: Preferences.java:103
!Japanese=
-#: Preferences.java:102
+#: Preferences.java:104
!Korean=
-#: Preferences.java:103
+#: Preferences.java:105
!Latvian=
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
-#: Preferences.java:104
+#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
+#: Base.java:2112
!Message=
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
+#: Sketch.java:1712
!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
-#: Preferences.java:433
+#: Preferences.java:449
!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
-#: Editor.java:2109
+#: Editor.java:2156
!Moving=
-#: Sketch.java:286
+#: Sketch.java:282
!Name\ for\ new\ file\:=
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
New=\u0928\u0935\u0940\u0928
#: EditorToolbar.java:46
@@ -624,16 +663,16 @@ New=\u0928\u0935\u0940\u0928
#: EditorHeader.java:340
!Next\ Tab=
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
!No=
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
!No\ changes\ necessary\ for\ Auto\ Format.=
-#: Editor.java:366
+#: Editor.java:373
No\ files\ were\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0928\u093e\u0939\u0940.
#: Platform.java:167
@@ -642,81 +681,88 @@ No\ files\ were\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u
#: SerialMonitor.java:112
!No\ line\ ending=
-#: Base.java:538
+#: Base.java:541
!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=\u0938\u093e\u0920\u0940 \u0938\u0902\u0926\u0930\u094d\u092d \u0909\u092a\u0932\u092c\u094d\u0927 \u0928\u093e\u0939\u0940
+No\ reference\ available\ for\ "{0}"=\u0938\u093e\u0920\u0940 \u0938\u0902\u0926\u0930\u094d\u092d \u0909\u092a\u0932\u092c\u094d\u0927 \u0928\u093e\u0939\u0940 {0}
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
!Nope=
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
!OK=
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
One\ file\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u090f\u0915 \u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u0947\u0932\u0940
#: EditorToolbar.java:41
!Open=
-#: Editor.java:2641
+#: Editor.java:2688
!Open\ URL=
-#: Base.java:633
+#: Base.java:636
!Open\ an\ Arduino\ sketch...=
#: EditorToolbar.java:46
!Open\ in\ Another\ Window=
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=\u0909\u0918\u0921\u093e...
-#: Editor.java:556
+#: Editor.java:563
Page\ Setup=\u092a\u093e\u0928\u093e\u091a\u093e \u0928\u092e\u0941\u0928\u093e
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
Paste=\u092a\u0947\u0938\u094d\u091f
-#: Preferences.java:105
+#: Preferences.java:109
!Persian=
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
-#: Base.java:232
+#: Base.java:239
!Please\ install\ JDK\ 1.5\ or\ later=
-#: Preferences.java:106
+#: Preferences.java:110
!Polish=
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
Preferences=\u092a\u094d\u0930\u093e\u0927\u093e\u0928\u094d\u092f
#: FindReplace.java:123 FindReplace.java:128
@@ -725,22 +771,22 @@ Preferences=\u092a\u094d\u0930\u093e\u0927\u093e\u0928\u094d\u092f
#: EditorHeader.java:326
!Previous\ Tab=
-#: Editor.java:564
+#: Editor.java:571
Print=\u091b\u093e\u092a\u093e
-#: Editor.java:2524
+#: Editor.java:2571
!Printing\ canceled.=
-#: Editor.java:2500
+#: Editor.java:2547
!Printing...=
-#: Base.java:1671
+#: Base.java:1957
!Problem\ Opening\ Folder=
-#: Base.java:1647
+#: Base.java:1933
!Problem\ Opening\ URL=
-#: Base.java:220
+#: Base.java:227
!Problem\ Setting\ the\ Platform=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
@@ -749,41 +795,41 @@ Print=\u091b\u093e\u092a\u093e
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
+#: Base.java:1673
!Problem\ getting\ data\ folder=
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
!Problem\ moving\ {0}\ to\ the\ build\ folder=
#: debug/Uploader.java:209
!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
!Problem\ with\ rename=
-#: Editor.java:2090
+#: Editor.java:2137
!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
+#: Editor.java:704
Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u0945\u092e\u0930
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=\u092c\u0902\u0926
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
Redo=\u090f\u0915 \u092a\u093e\u0909\u0932 \u092a\u0941\u0922\u0947
-#: Editor.java:1065
+#: Editor.java:1078
Reference=\u0938\u0902\u0926\u0930\u094d\u092d
#: EditorHeader.java:300
!Rename=
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
!Replace=
#: FindReplace.java:122 FindReplace.java:129
@@ -792,55 +838,55 @@ Reference=\u0938\u0902\u0926\u0930\u094d\u092d
#: FindReplace.java:120 FindReplace.java:131
!Replace\ All=
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
!Replace\ the\ existing\ version\ of\ {0}?=
#: FindReplace.java:81
!Replace\ with\:=
-#: Preferences.java:109
+#: Preferences.java:113
!Romanian=
-#: Preferences.java:110
+#: Preferences.java:114
!Russian=
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=\u091c\u0924\u0928 \u0915\u0930\u093e
-#: Editor.java:530
+#: Editor.java:537
Save\ As...=\u091c\u0924\u0928 \u0915\u0930\u093e \u0905\u0938\u0947 \u0915\u0940...
-#: Editor.java:2270
+#: Editor.java:2317
!Save\ Canceled.=
-#: Editor.java:2420
+#: Editor.java:2467
!Save\ changes\ before\ export?=
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =\u092f\u0947\u0925\u0947 \u092c\u0926\u0932 \u091c\u0924\u0928 \u0915\u0930\u093e
+Save\ changes\ to\ "{0}"?\ \ =\u092f\u0947\u0925\u0947 \u092c\u0926\u0932 \u091c\u0924\u0928 \u0915\u0930\u093e {0}
-#: Sketch.java:829
+#: Sketch.java:825
!Save\ sketch\ folder\ as...=
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
!Saving...=
-#: Base.java:1623
+#: Base.java:1909
!Select\ (or\ create\ new)\ folder\ for\ sketches...=
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
Select\ All=\u0938\u0930\u094d\u0935 \u0928\u093f\u0935\u0921\u093e
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
+#: Sketch.java:975
!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
-#: Preferences.java:314
+#: Preferences.java:330
!Select\ new\ sketchbook\ location=
#: ../../../processing/app/debug/Compiler.java:146
@@ -849,147 +895,157 @@ Select\ All=\u0938\u0930\u094d\u0935 \u0928\u093f\u0935\u0921\u093e
#: SerialMonitor.java:93
!Send=
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
Serial\ Monitor=\u0938\u093f\u0930\u0940\u092f\u0932 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0915
-#: Serial.java:147
+#: Serial.java:174
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
-#: Base.java:1440
+#: Base.java:1681
!Settings\ issues=
-#: Editor.java:634
+#: Editor.java:641
Show\ Sketch\ Folder=\u0938\u094d\u0915\u0947\u091a\u091a\u093e \u092b\u094b\u0932\u094d\u0921\u0930 \u0909\u0918\u0921\u093e
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
+#: Preferences.java:387
!Show\ verbose\ output\ during\:\ =
-#: Editor.java:600
+#: Editor.java:607
Sketch=\u0938\u094d\u0915\u0947\u091a
-#: Sketch.java:1796
+#: Sketch.java:1754
!Sketch\ Disappeared=
-#: Base.java:1095
+#: Base.java:1411
!Sketch\ Does\ Not\ Exist=
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
!Sketch\ is\ Read-Only=
-#: Sketch.java:298
+#: Sketch.java:294
!Sketch\ is\ Untitled=
-#: Sketch.java:724
+#: Sketch.java:720
!Sketch\ is\ read-only=
-#: Sketch.java:1694
+#: Sketch.java:1653
!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
Sketchbook=\u0938\u094d\u0915\u0947\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e
-#: Base.java:257
+#: Base.java:258
!Sketchbook\ folder\ disappeared=
-#: Preferences.java:299
+#: Preferences.java:315
!Sketchbook\ location\:=
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
-#: Sketch.java:725
+#: Sketch.java:721
!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
-#: Preferences.java:111
+#: Preferences.java:115
!Spanish=
-#: Base.java:537
+#: Base.java:540
!Sunshine=
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
!System\ Default=
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
!Tamil=
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
-#: Base.java:185
+#: Base.java:192
!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
-#: Sketch.java:378
+#: Sketch.java:374
!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
-#: Sketch.java:360
+#: Sketch.java:356
!The\ name\ cannot\ start\ with\ a\ period.=
-#: Base.java:1096
+#: Base.java:1412
!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
-#: Base.java:1125
+#: Base.java:1430
#, java-format
!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
-#: Sketch.java:1797
+#: Sketch.java:1755
!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
-#: Sketch.java:2060
+#: Sketch.java:2018
!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
-#: Base.java:258
+#: Base.java:259
!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
-#: Sketch.java:1079
+#: Sketch.java:1075
!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
+#: Base.java:535
!Time\ for\ a\ Break=
-#: Editor.java:656
+#: Editor.java:663
Tools=\u0938\u093e\u0927\u0928\u0947
-#: Editor.java:1057
+#: Editor.java:1070
Troubleshooting=\u0905\u0921\u091a\u0923\u0940 \u0938\u094b\u0921\u0935\u093f\u0923\u0947
#: ../../../processing/app/Preferences.java:117
@@ -1009,7 +1065,7 @@ Troubleshooting=\u0905\u0921\u091a\u0923\u0940 \u0938\u094b\u0921\u0935\u093f\u0
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1017,11 +1073,11 @@ Troubleshooting=\u0905\u0921\u091a\u0923\u0940 \u0938\u094b\u0921\u0935\u093f\u0
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
!Uncaught\ exception\ type\:\ {0}=
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
Undo=\u090f\u0915 \u092a\u093e\u0909\u0932 \u092e\u093e\u0917\u0947
#: Platform.java:168
@@ -1030,52 +1086,55 @@ Undo=\u090f\u0915 \u092a\u093e\u0909\u0932 \u092e\u093e\u0917\u0947
#: UpdateCheck.java:111
!Update=
-#: Preferences.java:412
+#: Preferences.java:428
!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=\u0905\u092a\u0932\u094b\u0921
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
Upload\ Using\ Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u0945\u092e\u0930\u091a\u094d\u092f\u093e \u0938\u0939\u093e\u092f\u094d\u092f\u093e\u0928\u0947 \u0905\u092a\u0932\u094b\u0921
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
!Upload\ canceled.=
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
+#: Editor.java:2378
!Uploading\ to\ I/O\ Board...=
-#: Sketch.java:1661
+#: Sketch.java:1622
!Uploading...=
-#: Editor.java:1255
+#: Editor.java:1269
Use\ Selection\ For\ Find=\u0920\u0933\u0915 \u0915\u0947\u0932\u0947\u0932\u094d\u092f\u093e\u092e\u0927\u094d\u092f\u0947 \u0936\u093f\u0927\u093e
-#: Preferences.java:393
+#: Preferences.java:409
!Use\ external\ editor=
#: EditorToolbar.java:41 EditorToolbar.java:46
!Verify=
-#: Editor.java:602
+#: Editor.java:609
Verify\ /\ Compile=\u092a\u0921\u0924\u093e\u0933\u0923\u0940 / \u0915\u0902\u092a\u093e\u0907\u0932
-#: Preferences.java:384
+#: Preferences.java:400
!Verify\ code\ after\ upload=
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\u093e
-#: Base.java:1842
+#: Base.java:2128
!Warning=
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
!Wire.send()\ has\ been\ renamed\ Wire.write().=
#: FindReplace.java:105
@@ -1084,40 +1143,40 @@ Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\
#: debug/Uploader.java:213
!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
!Yes=
-#: Sketch.java:1078
+#: Sketch.java:1074
!You\ can't\ fool\ me=
-#: Sketch.java:415
+#: Sketch.java:411
!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
-#: Sketch.java:425
+#: Sketch.java:421
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:865
+#: Sketch.java:861
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:887
+#: Sketch.java:883
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
-#: Base.java:1602
+#: Base.java:1888
!You\ forgot\ your\ sketchbook=
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
+#: Base.java:536
!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
!ZIP\ files\ or\ folders=
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
!".{0}"\ is\ not\ a\ valid\ extension.=
@@ -1125,47 +1184,46 @@ Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\
#, java-format
!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
!baud=
-#: Preferences.java:373
+#: Preferences.java:389
!compilation\ =
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
+#: Sketch.java:540
!createNewFile()\ returned\ false=
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
+#: Base.java:2090
!environment=
-#: Editor.java:1094
+#: Editor.java:1108
!http\://arduino.cc/=
#: ../../../processing/app/debug/Compiler.java:49
@@ -1177,54 +1235,51 @@ Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\
#: UpdateCheck.java:53
!http\://www.arduino.cc/latest.txt=
-#: Base.java:1789
+#: Base.java:2075
!http\://www.arduino.cc/playground/Learning/Linux=
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
!ignoring\ invalid\ font\ size\ {0}=
-#: Base.java:1794
+#: Base.java:2080
!index.html=
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
name\ is\ null=\u0928\u093e\u0935 \u0930\u093f\u0915\u094d\u0924 \u0906\u0939\u0947
-#: Base.java:1804
+#: Base.java:2090
!platforms.html=
-#: Serial.java:424
+#: Serial.java:451
#, java-format
!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
-#: Sketch.java:651
+#: Sketch.java:647
!removeCode\:\ internal\ error..\ could\ not\ find\ code=
-#: Editor.java:923
+#: Editor.java:932
serialMenu\ is\ null=\u0938\u093f\u0930\u093f\u0905\u0932 \u092e\u0947\u0928\u0942 \u0930\u093f\u0915\u094d\u0924 \u0906\u0939\u0947
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
+#: Preferences.java:391
!upload=
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.=\u092b\u093e\u0908\u0932\u094d\u0938 \u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u0938\u093e\u092e\u0940\u0932 \u0915\u0947\u0932\u094d\u092f\u093e
+{0}\ files\ added\ to\ the\ sketch.={0} \u092b\u093e\u0908\u0932\u094d\u0938 \u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u0938\u093e\u092e\u0940\u0932 \u0915\u0947\u0932\u094d\u092f\u093e
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
!{0}\ returned\ {1}=
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
!{0}\ |\ Arduino\ {1}=
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_my_MM.po b/app/src/processing/app/i18n/Resources_my_MM.po
new file mode 100644
index 000000000..c20675ec7
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_my_MM.po
@@ -0,0 +1,1857 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+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: 2013-09-10 10:35+0000\n"
+"Last-Translator: cmaglie Closing the last open sketch will quit Arduino."
+msgstr ""
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr ""
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr ""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr ""
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr ""
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr ""
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr ""
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr ""
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr ""
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr ""
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr ""
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr ""
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr ""
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr ""
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr ""
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr ""
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr ""
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr ""
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr ""
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr ""
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr ""
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr ""
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr ""
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr ""
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr ""
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr ""
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr ""
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr ""
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr ""
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr ""
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr ""
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr ""
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr ""
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr ""
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr ""
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr ""
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr ""
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr ""
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr ""
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr ""
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr ""
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr ""
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr ""
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr ""
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr ""
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr ""
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr ""
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr ""
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr ""
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr ""
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr ""
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr ""
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr ""
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr ""
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr ""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr ""
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr ""
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr ""
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr ""
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr ""
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr ""
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr ""
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr ""
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr ""
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr ""
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr ""
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr ""
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr ""
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr ""
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr ""
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr ""
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr ""
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr ""
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr ""
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
+msgid "English"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr ""
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr ""
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr ""
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr ""
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr ""
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr ""
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr ""
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr ""
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr ""
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr ""
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr ""
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr ""
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr ""
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr ""
+
+#: Editor.java:491
+msgid "File"
+msgstr ""
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr ""
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr ""
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr ""
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr ""
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr ""
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr ""
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr ""
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr ""
+
+#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr ""
+
+#: Preferences.java:97
+msgid "German"
+msgstr ""
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr ""
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr ""
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr ""
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr ""
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr ""
+
+#: Editor.java:1015
+msgid "Help"
+msgstr ""
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr ""
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr ""
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr ""
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr ""
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr ""
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr ""
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr ""
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr ""
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr ""
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr ""
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr ""
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr ""
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr ""
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr ""
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr ""
+
+#: Base.java:2112
+msgid "Message"
+msgstr ""
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr ""
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr ""
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr ""
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr ""
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr ""
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr ""
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr ""
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr ""
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr ""
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr ""
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr ""
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr ""
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr ""
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr ""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr ""
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr ""
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr ""
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr ""
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr ""
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr ""
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr ""
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr ""
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr ""
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr ""
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr ""
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr ""
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr ""
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr ""
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr ""
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr ""
+
+#: Editor.java:571
+msgid "Print"
+msgstr ""
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr ""
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr ""
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr ""
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr ""
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr ""
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr ""
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr ""
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr ""
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr ""
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr ""
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr ""
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr ""
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr ""
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr ""
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr ""
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr ""
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr ""
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr ""
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr ""
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr ""
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr ""
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr ""
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr ""
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr ""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr ""
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr ""
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr ""
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr ""
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr ""
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr ""
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr ""
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr ""
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr ""
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr ""
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr ""
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr ""
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr ""
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr ""
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr ""
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr ""
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr ""
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr ""
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr ""
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr ""
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr ""
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr ""
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr ""
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr ""
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr ""
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr ""
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr ""
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr ""
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr ""
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr ""
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr ""
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr ""
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr ""
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr ""
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr ""
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr ""
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr ""
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr ""
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr ""
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr ""
+
+#: Editor.java:663
+msgid "Tools"
+msgstr ""
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr ""
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr ""
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr ""
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr ""
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr ""
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr ""
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr ""
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr ""
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr ""
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr ""
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr ""
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr ""
+
+#: Base.java:2128
+msgid "Warning"
+msgstr ""
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr ""
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr ""
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr ""
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr ""
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr ""
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr ""
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr ""
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr ""
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr ""
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr ""
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr ""
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr ""
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr ""
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr ""
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr ""
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr ""
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr ""
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr ""
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr ""
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr ""
+
+#: Base.java:2080
+msgid "index.html"
+msgstr ""
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr ""
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr ""
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr ""
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr ""
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr ""
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr ""
+
+#: Preferences.java:391
+msgid "upload"
+msgstr ""
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr ""
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr ""
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr ""
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_my_MM.properties b/app/src/processing/app/i18n/Resources_my_MM.properties
new file mode 100644
index 000000000..d4d0ce6c5
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_my_MM.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+!About\ Arduino=
+
+#: Editor.java:650
+!Add\ File...=
+
+#: Base.java:963
+!Add\ Library...=
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
+
+#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
+!Aragonese=
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+!Browse=
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
+
+#: Sketch.java:455
+!Cannot\ Rename=
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+!Close=
+
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
+
+#: EditorConsole.java:152
+!Console\ Error=
+
+#: Editor.java:1157 Editor.java:2707
+!Copy=
+
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+!Could\ not\ delete\ {0}=
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+!Could\ not\ remove\ old\ version\ of\ {0}=
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+!Could\ not\ replace\ {0}=
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+!Cut=
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+!Danish=
+
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
+
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+!Don't\ Save=
+
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
+
+#: Editor.java:2564
+!Done\ printing.=
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+!Dutch=
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+!Edit=
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+!English=
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+!Error=
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+!Error\ opening\ serial\ port\ ''{0}''.=
+
+#: Preferences.java:277
+!Error\ reading\ preferences=
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+!Error\ while\ printing.=
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+!Estonian=
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+!Examples=
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+!File=
+
+#: Preferences.java:94
+!Filipino=
+
+#: FindReplace.java:124 FindReplace.java:127
+!Find=
+
+#: Editor.java:1249
+!Find\ Next=
+
+#: Editor.java:1259
+!Find\ Previous=
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+!Find...=
+
+#: FindReplace.java:80
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+!German=
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+!Greek=
+
+#: Base.java:2085
+!Guide_Environment.html=
+
+#: Base.java:2071
+!Guide_MacOSX.html=
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+!Guide_Windows.html=
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+!Help=
+
+#: Preferences.java:99
+!Hindi=
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+!Hungarian=
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+!Import\ Library...=
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
+
+#: Preferences.java:101
+!Indonesian=
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+!Italian=
+
+#: Preferences.java:103
+!Japanese=
+
+#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+!Lithuaninan=
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+!Message=
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+!Moving=
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+!New=
+
+#: EditorToolbar.java:46
+!New\ Editor\ Window=
+
+#: EditorHeader.java:292
+!New\ Tab=
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+!Next\ Tab=
+
+#: Preferences.java:78 UpdateCheck.java:108
+!No=
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+!Open=
+
+#: Editor.java:2688
+!Open\ URL=
+
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
+
+#: EditorToolbar.java:46
+!Open\ in\ Another\ Window=
+
+#: Base.java:903 Editor.java:501
+!Open...=
+
+#: Editor.java:563
+!Page\ Setup=
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+!Paste=
+
+#: Preferences.java:109
+!Persian=
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+!Please\ install\ JDK\ 1.5\ or\ later=
+
+#: Preferences.java:110
+!Polish=
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
+
+#: FindReplace.java:123 FindReplace.java:128
+!Previous=
+
+#: EditorHeader.java:326
+!Previous\ Tab=
+
+#: Editor.java:571
+!Print=
+
+#: Editor.java:2571
+!Printing\ canceled.=
+
+#: Editor.java:2547
+!Printing...=
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+!Problem\ Opening\ URL=
+
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+!Programmer=
+
+#: Base.java:783 Editor.java:593
+!Quit=
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+!Rename=
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
+
+#: FindReplace.java:122 FindReplace.java:129
+!Replace\ &\ Find=
+
+#: FindReplace.java:120 FindReplace.java:131
+!Replace\ All=
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+!Replace\ with\:=
+
+#: Preferences.java:113
+!Romanian=
+
+#: Preferences.java:114
+!Russian=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
+
+#: Editor.java:537
+!Save\ As...=
+
+#: Editor.java:2317
+!Save\ Canceled.=
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
+
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+!Send=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+!Settings\ issues=
+
+#: Editor.java:641
+!Show\ Sketch\ Folder=
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+!Sketch=
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
+
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
+
+#: Sketch.java:720
+!Sketch\ is\ read-only=
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+!Sketchbook\ folder\ disappeared=
+
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+!Time\ for\ a\ Break=
+
+#: Editor.java:663
+!Tools=
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+!Undo=
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+!Update=
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+!Uploading...=
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+!Verify=
+
+#: Editor.java:609
+!Verify\ /\ Compile=
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
+!Warning=
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+!Yes=
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+!environment=
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+!index.html=
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+!platforms.html=
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_nb_NO.po b/app/src/processing/app/i18n/Resources_nb_NO.po
index 8e7f60d24..ec3d9d46e 100644
--- a/app/src/processing/app/i18n/Resources_nb_NO.po
+++ b/app/src/processing/app/i18n/Resources_nb_NO.po
@@ -9,8 +9,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: 2012-11-06 21:28+0000\n"
-"Last-Translator: runfa Closing the last open sketch will quit Arduino."
+msgstr ""
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr ""
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr ""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr ""
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr ""
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr ""
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr ""
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr ""
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "सङ्रह थप्नुहोस्"
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr ""
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr ""
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr "अरबी"
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr ""
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr ""
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr ""
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr ""
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr ""
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr ""
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr ""
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr ""
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr ""
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr ""
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr ""
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr ""
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr ""
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr ""
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr ""
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr ""
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr "रद्द गर्नुहोस"
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr ""
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr ""
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr ""
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr ""
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr ""
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr ""
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr ""
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr ""
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr ""
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr ""
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr ""
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr ""
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr ""
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr ""
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr ""
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr ""
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr "{0} रद्द गर्नमिलेन"
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr ""
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr ""
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr ""
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr ""
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr ""
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr ""
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr ""
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr ""
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr ""
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr ""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr ""
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr ""
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr ""
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr ""
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr ""
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr ""
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr ""
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr ""
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr ""
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr ""
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr ""
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr ""
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr ""
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr ""
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr ""
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr ""
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr ""
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr ""
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr ""
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
+msgid "English"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr ""
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr "त्रुटी "
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr ""
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr ""
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr ""
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr ""
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr ""
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr ""
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr ""
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr ""
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr ""
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr ""
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr ""
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr "FAQ.html"
+
+#: Editor.java:491
+msgid "File"
+msgstr ""
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr ""
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr "खोज्नुहोस "
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr ""
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr ""
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr ""
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr ""
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr "खोज्नुहोस्:"
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr ""
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr ""
+
+#: Preferences.java:95
+msgid "French"
+msgstr "फ्रेन्च "
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr ""
+
+#: Preferences.java:97
+msgid "German"
+msgstr "जर्मन"
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr "ग्रीक "
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr "Guide_Environment.html"
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr "Guide_MacOSX.html"
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr "Guide_Troubleshooting.html"
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr "Guide_Windows.html"
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr ""
+
+#: Editor.java:1015
+msgid "Help"
+msgstr ""
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr "हिन्दी"
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr ""
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr ""
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr ""
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr ""
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr ""
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr ""
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr ""
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr ""
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr ""
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr "इटालियन "
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr "जापनिज"
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr "कोरियन"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr ""
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr ""
+
+#: Base.java:2112
+msgid "Message"
+msgstr "सन्देश "
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr ""
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr ""
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr ""
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr "नयाँ "
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr ""
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr ""
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr ""
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr "होइन "
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr ""
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr ""
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr ""
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr ""
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr ""
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr ""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr ""
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr ""
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr "हुन्छ "
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr ""
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr "खोल्नुहोस"
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr ""
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr "एउटा नयाँ आर्डुनो स्केच खोल्नुहोस ..."
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr ""
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr "खोल्नुहोस"
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr ""
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr ""
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr ""
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr "कृपया JDK 1.5 वा JDK 1.5 JDK इन्स्टल गर्नुहोस "
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr ""
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr "पूर्व"
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr ""
+
+#: Editor.java:571
+msgid "Print"
+msgstr ""
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr ""
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr ""
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr ""
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr ""
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr ""
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr ""
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr ""
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr ""
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr ""
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr ""
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr ""
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr ""
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr ""
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr ""
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr ""
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr ""
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr ""
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr ""
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr ""
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr "बचत गर्नुहोस "
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr ""
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr ""
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr ""
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr ""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr ""
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr ""
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr ""
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr ""
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr ""
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr ""
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr ""
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr ""
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr ""
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr ""
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr ""
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr ""
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr ""
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr ""
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr ""
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr ""
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr ""
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr ""
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr ""
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr ""
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr ""
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr ""
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr ""
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr ""
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr ""
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr ""
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr ""
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr ""
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr ""
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr ""
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr ""
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr ""
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr ""
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr ""
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr ""
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr ""
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr ""
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr ""
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr ""
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr "बिश्राम समय "
+
+#: Editor.java:663
+msgid "Tools"
+msgstr ""
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr ""
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr ""
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr ""
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr ""
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr ""
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr ""
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr ""
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr ""
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr ""
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr "प्रमाणित गर्नुहोस "
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr ""
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr ""
+
+#: Base.java:2128
+msgid "Warning"
+msgstr "चेतावनी"
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr ""
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr ""
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr ""
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr ""
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr "हो "
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr ""
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr ""
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr ""
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr ""
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr ""
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr ""
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr ""
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr ""
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr ""
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr ""
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr "वातावरण "
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr ""
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr ""
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr ""
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr ""
+
+#: Base.java:2080
+msgid "index.html"
+msgstr "index.html"
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr ""
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr "platforms.html"
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr ""
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr ""
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr ""
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr ""
+
+#: Preferences.java:391
+msgid "upload"
+msgstr ""
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr ""
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr ""
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr ""
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_ne.properties b/app/src/processing/app/i18n/Resources_ne.properties
new file mode 100644
index 000000000..e47122cec
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_ne.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+!About\ Arduino=
+
+#: Editor.java:650
+!Add\ File...=
+
+#: Base.java:963
+Add\ Library...=\u0938\u0919\u094d\u0930\u0939 \u0925\u092a\u094d\u0928\u0941\u0939\u094b\u0938\u094d
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
+
+#: Preferences.java:85
+Arabic=\u0905\u0930\u092c\u0940
+
+#: Preferences.java:86
+!Aragonese=
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+!Browse=
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+Cancel=\u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938
+
+#: Sketch.java:455
+!Cannot\ Rename=
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+!Close=
+
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
+
+#: EditorConsole.java:152
+!Console\ Error=
+
+#: Editor.java:1157 Editor.java:2707
+!Copy=
+
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+Could\ not\ delete\ {0}={0} \u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u092e\u093f\u0932\u0947\u0928
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+!Could\ not\ remove\ old\ version\ of\ {0}=
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+!Could\ not\ replace\ {0}=
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+!Cut=
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+!Danish=
+
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
+
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+!Don't\ Save=
+
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
+
+#: Editor.java:2564
+!Done\ printing.=
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+!Dutch=
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+!Edit=
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+!English=
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=\u0924\u094d\u0930\u0941\u091f\u0940
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+!Error\ opening\ serial\ port\ ''{0}''.=
+
+#: Preferences.java:277
+!Error\ reading\ preferences=
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+!Error\ while\ printing.=
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+!Estonian=
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+!Examples=
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+FAQ.html=FAQ.html
+
+#: Editor.java:491
+!File=
+
+#: Preferences.java:94
+!Filipino=
+
+#: FindReplace.java:124 FindReplace.java:127
+Find=\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938
+
+#: Editor.java:1249
+!Find\ Next=
+
+#: Editor.java:1259
+!Find\ Previous=
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+!Find...=
+
+#: FindReplace.java:80
+Find\:=\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\:
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+French=\u092b\u094d\u0930\u0947\u0928\u094d\u091a
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+German=\u091c\u0930\u094d\u092e\u0928
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+Greek=\u0917\u094d\u0930\u0940\u0915
+
+#: Base.java:2085
+Guide_Environment.html=Guide_Environment.html
+
+#: Base.java:2071
+Guide_MacOSX.html=Guide_MacOSX.html
+
+#: Base.java:2095
+Guide_Troubleshooting.html=Guide_Troubleshooting.html
+
+#: Base.java:2073
+Guide_Windows.html=Guide_Windows.html
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+!Help=
+
+#: Preferences.java:99
+Hindi=\u0939\u093f\u0928\u094d\u0926\u0940
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+!Hungarian=
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+!Import\ Library...=
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
+
+#: Preferences.java:101
+!Indonesian=
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+Italian=\u0907\u091f\u093e\u0932\u093f\u092f\u0928
+
+#: Preferences.java:103
+Japanese=\u091c\u093e\u092a\u0928\u093f\u091c
+
+#: Preferences.java:104
+Korean=\u0915\u094b\u0930\u093f\u092f\u0928
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+!Lithuaninan=
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+Message=\u0938\u0928\u094d\u0926\u0947\u0936
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+!Moving=
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+New=\u0928\u092f\u093e\u0901
+
+#: EditorToolbar.java:46
+!New\ Editor\ Window=
+
+#: EditorHeader.java:292
+!New\ Tab=
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+!Next\ Tab=
+
+#: Preferences.java:78 UpdateCheck.java:108
+No=\u0939\u094b\u0907\u0928
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=\u0939\u0941\u0928\u094d\u091b
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+Open=\u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938
+
+#: Editor.java:2688
+!Open\ URL=
+
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=\u090f\u0909\u091f\u093e \u0928\u092f\u093e\u0901 \u0906\u0930\u094d\u0921\u0941\u0928\u094b \u0938\u094d\u0915\u0947\u091a \u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938 ...
+
+#: EditorToolbar.java:46
+!Open\ in\ Another\ Window=
+
+#: Base.java:903 Editor.java:501
+Open...=\u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938
+
+#: Editor.java:563
+!Page\ Setup=
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+!Paste=
+
+#: Preferences.java:109
+!Persian=
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=\u0915\u0943\u092a\u092f\u093e JDK 1.5 \u0935\u093e JDK 1.5 JDK \u0907\u0928\u094d\u0938\u094d\u091f\u0932 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938
+
+#: Preferences.java:110
+!Polish=
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
+
+#: FindReplace.java:123 FindReplace.java:128
+Previous=\u092a\u0942\u0930\u094d\u0935
+
+#: EditorHeader.java:326
+!Previous\ Tab=
+
+#: Editor.java:571
+!Print=
+
+#: Editor.java:2571
+!Printing\ canceled.=
+
+#: Editor.java:2547
+!Printing...=
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+!Problem\ Opening\ URL=
+
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+!Programmer=
+
+#: Base.java:783 Editor.java:593
+!Quit=
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+!Rename=
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
+
+#: FindReplace.java:122 FindReplace.java:129
+!Replace\ &\ Find=
+
+#: FindReplace.java:120 FindReplace.java:131
+!Replace\ All=
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+!Replace\ with\:=
+
+#: Preferences.java:113
+!Romanian=
+
+#: Preferences.java:114
+!Russian=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938
+
+#: Editor.java:537
+!Save\ As...=
+
+#: Editor.java:2317
+!Save\ Canceled.=
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
+
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+!Send=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+!Settings\ issues=
+
+#: Editor.java:641
+!Show\ Sketch\ Folder=
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+!Sketch=
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
+
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
+
+#: Sketch.java:720
+!Sketch\ is\ read-only=
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+!Sketchbook\ folder\ disappeared=
+
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+Time\ for\ a\ Break=\u092c\u093f\u0936\u094d\u0930\u093e\u092e \u0938\u092e\u092f
+
+#: Editor.java:663
+!Tools=
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+!Undo=
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+!Update=
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+!Uploading...=
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+Verify=\u092a\u094d\u0930\u092e\u093e\u0923\u093f\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938
+
+#: Editor.java:609
+!Verify\ /\ Compile=
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
+Warning=\u091a\u0947\u0924\u093e\u0935\u0928\u0940
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+Yes=\u0939\u094b
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+environment=\u0935\u093e\u0924\u093e\u0935\u0930\u0923
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+index.html=index.html
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+platforms.html=platforms.html
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_nl.po b/app/src/processing/app/i18n/Resources_nl.po
index a2c3fdec3..628d3320f 100644
--- a/app/src/processing/app/i18n/Resources_nl.po
+++ b/app/src/processing/app/i18n/Resources_nl.po
@@ -10,8 +10,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: 2012-11-08 10:50+0000\n"
-"Last-Translator: MrWhammy Closing the last open sketch will quit Arduino."
+msgstr ""
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr ""
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr ""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr ""
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr "Een bibliotheek met de naam {0} bestaat al"
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr ""
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr ""
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr "Over Arduino"
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr "Voeg bibliotheek toe..."
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr ""
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr ""
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr "Arabisch"
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr "Aragonees"
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr ""
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr ""
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr ""
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr ""
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr ""
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr ""
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr ""
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr ""
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr ""
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr ""
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr ""
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr ""
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr "Bladeren"
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr ""
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr ""
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr "Annuleren"
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr ""
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr "Catalaans"
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr ""
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr "Sluiten"
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr ""
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr ""
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr "Compileren van sketch..."
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr ""
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr "Kopiëren"
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr ""
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr ""
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr ""
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr ""
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr ""
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr ""
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr ""
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr ""
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr ""
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr ""
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr ""
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr ""
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr ""
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr ""
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr ""
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr ""
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr ""
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr ""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr ""
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr ""
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr ""
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr ""
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr ""
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr ""
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr ""
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr ""
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr "Knippen"
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr ""
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr "Deens"
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr ""
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr ""
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr ""
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr ""
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr "Niet opslaan"
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr ""
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr ""
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr ""
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr ""
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr "Nederlands"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr "Bewerken"
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
+msgid "English"
+msgstr "Engels"
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr ""
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr "Fout"
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr ""
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr "Fout bij compileren"
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr ""
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr ""
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr "Fout bij het openen van seriële poort {0}"
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr "Fout bij het lezen van intstellingen"
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr ""
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr ""
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr ""
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr "Ests"
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr "Voorbeeld"
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr ""
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr ""
+
+#: Editor.java:491
+msgid "File"
+msgstr "Bestand"
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr ""
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr ""
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr "Zoek volgende"
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr "Zoek vorige"
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr ""
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr "Zoek..."
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr "Zoek:"
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr ""
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr ""
+
+#: Preferences.java:95
+msgid "French"
+msgstr "Frans"
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr ""
+
+#: Preferences.java:97
+msgid "German"
+msgstr "Duits"
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr "Grieks"
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr ""
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr ""
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr ""
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr ""
+
+#: Editor.java:1015
+msgid "Help"
+msgstr ""
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr "Hindi"
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr ""
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr ""
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr "Hongaars"
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr ""
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr ""
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr ""
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr ""
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr ""
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr ""
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr "Italiaans"
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr ""
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr "Koreaans"
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr ""
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr ""
+
+#: Base.java:2112
+msgid "Message"
+msgstr "Bericht"
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr ""
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr ""
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr ""
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr "Nieuw"
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr ""
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr ""
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr ""
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr "Neen"
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr ""
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr ""
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr ""
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr ""
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr ""
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr ""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr ""
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr ""
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr "OK"
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr ""
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr "Open"
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr ""
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr "Open een Arduino sketch..."
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr ""
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr "Open..."
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr ""
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr "Plakken"
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr ""
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr ""
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr "Pools"
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr "Instellingen"
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr ""
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr ""
+
+#: Editor.java:571
+msgid "Print"
+msgstr "Afdrukken"
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr ""
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr ""
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr ""
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr "Probleem met het openen van URL"
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr ""
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr ""
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr ""
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr ""
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr ""
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr "Afsluiten"
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr ""
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr ""
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr ""
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr ""
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr ""
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr ""
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr ""
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr "Vervang met:"
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr "Roemeens"
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr "Russisch"
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr "Opslaan"
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr "Opslaan als..."
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr ""
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr ""
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr ""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr ""
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr ""
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr ""
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr ""
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr ""
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr ""
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr ""
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr ""
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr "Problemen met instellingen"
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr ""
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr ""
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr ""
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr ""
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr "Sketch bestaat niet"
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr ""
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr ""
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr ""
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr ""
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr "Sketchbook map is verdwenen"
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr "Sketchbook locatie:"
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr ""
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr ""
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr ""
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr "Spaans"
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr "Zonneschijn"
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr ""
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr ""
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr "Het \"BYTE\" keyword wordt niet langer ondersteund"
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr ""
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr ""
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr ""
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr ""
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr ""
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr ""
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr ""
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr ""
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr ""
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr ""
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr ""
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr ""
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr ""
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr "Tijd voor een pauze"
+
+#: Editor.java:663
+msgid "Tools"
+msgstr ""
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr ""
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr "Ongedaan maken"
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr ""
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr ""
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr ""
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr ""
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr ""
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr "Uploaden..."
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr ""
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr ""
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr ""
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr ""
+
+#: Base.java:2128
+msgid "Warning"
+msgstr "Waarschuwing"
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr ""
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr ""
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr ""
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr ""
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr "Ja"
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr ""
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr ""
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr ""
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr "Je vergat je sketchbook"
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr ""
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr ""
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr ""
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr ""
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr ""
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr ""
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr "omgeving"
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr ""
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr ""
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr ""
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr ""
+
+#: Base.java:2080
+msgid "index.html"
+msgstr "index.html"
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr ""
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr ""
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr ""
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr ""
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr ""
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr ""
+
+#: Preferences.java:391
+msgid "upload"
+msgstr ""
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr ""
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr ""
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr ""
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_nl_NL.properties b/app/src/processing/app/i18n/Resources_nl_NL.properties
new file mode 100644
index 000000000..bb7a74558
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_nl_NL.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+A\ library\ named\ {0}\ already\ exists=Een bibliotheek met de naam {0} bestaat al
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+About\ Arduino=Over Arduino
+
+#: Editor.java:650
+!Add\ File...=
+
+#: Base.java:963
+Add\ Library...=Voeg bibliotheek toe...
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
+
+#: Preferences.java:85
+Arabic=Arabisch
+
+#: Preferences.java:86
+Aragonese=Aragonees
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+Browse=Bladeren
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+Cancel=Annuleren
+
+#: Sketch.java:455
+!Cannot\ Rename=
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+Catalan=Catalaans
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+Close=Sluiten
+
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=Compileren van sketch...
+
+#: EditorConsole.java:152
+!Console\ Error=
+
+#: Editor.java:1157 Editor.java:2707
+Copy=Kopi\u00ebren
+
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+!Could\ not\ delete\ {0}=
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+!Could\ not\ remove\ old\ version\ of\ {0}=
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+!Could\ not\ replace\ {0}=
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+Cut=Knippen
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+Danish=Deens
+
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
+
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+Don't\ Save=Niet opslaan
+
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
+
+#: Editor.java:2564
+!Done\ printing.=
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+Dutch=Nederlands
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+Edit=Bewerken
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+English=Engels
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+Error=Fout
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+Error\ compiling.=Fout bij compileren
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+Error\ opening\ serial\ port\ ''{0}''.=Fout bij het openen van seri\u00eble poort {0}
+
+#: Preferences.java:277
+Error\ reading\ preferences=Fout bij het lezen van intstellingen
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+!Error\ while\ printing.=
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+Estonian=Ests
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+Examples=Voorbeeld
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+File=Bestand
+
+#: Preferences.java:94
+!Filipino=
+
+#: FindReplace.java:124 FindReplace.java:127
+!Find=
+
+#: Editor.java:1249
+Find\ Next=Zoek volgende
+
+#: Editor.java:1259
+Find\ Previous=Zoek vorige
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+Find...=Zoek...
+
+#: FindReplace.java:80
+Find\:=Zoek\:
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+French=Frans
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+German=Duits
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+Greek=Grieks
+
+#: Base.java:2085
+!Guide_Environment.html=
+
+#: Base.java:2071
+!Guide_MacOSX.html=
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+!Guide_Windows.html=
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+!Help=
+
+#: Preferences.java:99
+Hindi=Hindi
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+Hungarian=Hongaars
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+!Import\ Library...=
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
+
+#: Preferences.java:101
+!Indonesian=
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+Italian=Italiaans
+
+#: Preferences.java:103
+!Japanese=
+
+#: Preferences.java:104
+Korean=Koreaans
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+!Lithuaninan=
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+Message=Bericht
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+!Moving=
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+New=Nieuw
+
+#: EditorToolbar.java:46
+!New\ Editor\ Window=
+
+#: EditorHeader.java:292
+!New\ Tab=
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+!Next\ Tab=
+
+#: Preferences.java:78 UpdateCheck.java:108
+No=Neen
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+OK=OK
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+Open=Open
+
+#: Editor.java:2688
+!Open\ URL=
+
+#: Base.java:636
+Open\ an\ Arduino\ sketch...=Open een Arduino sketch...
+
+#: EditorToolbar.java:46
+!Open\ in\ Another\ Window=
+
+#: Base.java:903 Editor.java:501
+Open...=Open...
+
+#: Editor.java:563
+!Page\ Setup=
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+Paste=Plakken
+
+#: Preferences.java:109
+!Persian=
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+!Please\ install\ JDK\ 1.5\ or\ later=
+
+#: Preferences.java:110
+Polish=Pools
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+Preferences=Instellingen
+
+#: FindReplace.java:123 FindReplace.java:128
+!Previous=
+
+#: EditorHeader.java:326
+!Previous\ Tab=
+
+#: Editor.java:571
+Print=Afdrukken
+
+#: Editor.java:2571
+!Printing\ canceled.=
+
+#: Editor.java:2547
+!Printing...=
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+Problem\ Opening\ URL=Probleem met het openen van URL
+
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+!Programmer=
+
+#: Base.java:783 Editor.java:593
+Quit=Afsluiten
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+!Rename=
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
+
+#: FindReplace.java:122 FindReplace.java:129
+!Replace\ &\ Find=
+
+#: FindReplace.java:120 FindReplace.java:131
+!Replace\ All=
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+Replace\ with\:=Vervang met\:
+
+#: Preferences.java:113
+Romanian=Roemeens
+
+#: Preferences.java:114
+Russian=Russisch
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+Save=Opslaan
+
+#: Editor.java:537
+Save\ As...=Opslaan als...
+
+#: Editor.java:2317
+!Save\ Canceled.=
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
+
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+!Send=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+Settings\ issues=Problemen met instellingen
+
+#: Editor.java:641
+!Show\ Sketch\ Folder=
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+!Sketch=
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=Sketch bestaat niet
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
+
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
+
+#: Sketch.java:720
+!Sketch\ is\ read-only=
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+Sketchbook\ folder\ disappeared=Sketchbook map is verdwenen
+
+#: Preferences.java:315
+Sketchbook\ location\:=Sketchbook locatie\:
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+Spanish=Spaans
+
+#: Base.java:540
+Sunshine=Zonneschijn
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Het "BYTE" keyword wordt niet langer ondersteund
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+Time\ for\ a\ Break=Tijd voor een pauze
+
+#: Editor.java:663
+!Tools=
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+Undo=Ongedaan maken
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+!Update=
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+Uploading...=Uploaden...
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+!Verify=
+
+#: Editor.java:609
+!Verify\ /\ Compile=
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
+Warning=Waarschuwing
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+Yes=Ja
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+You\ forgot\ your\ sketchbook=Je vergat je sketchbook
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+environment=omgeving
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+index.html=index.html
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+!platforms.html=
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_no_nb.properties b/app/src/processing/app/i18n/Resources_no_nb.properties
deleted file mode 100644
index 59692e40a..000000000
--- a/app/src/processing/app/i18n/Resources_no_nb.properties
+++ /dev/null
@@ -1,1230 +0,0 @@
-# Norwegian bokm\u00e5l translations for PACKAGE package.
-# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# Rune Fauske Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Lukker du den siste skissen, avsluttes Arduino.
-
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Hvis du ikke lagrer, vil endringene g\u00e5 tapt.
-
-#: Sketch.java:402
-#, java-format
-A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Det eksisterer allerede en fil med navn "{0}" i "{1}"
-
-#: Editor.java:2122
-#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=En mappe med f\u00f8lgende navn "{0}" eksisterer allerede. Kan ikke \u00e5pne skissen.
-
-#: ../../../processing/app/Base.java:2894
-#, java-format
-!A\ library\ named\ {0}\ already\ exists=
-
-#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=En ny versjon av Arduino er tilgjengelig,\n\u00f8nsker du \u00e5 bes\u00f8ke nedlastingssiden for Arduino?
-
-#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Det oppstod et problem under \u00e5pning av filer brukt\ntil lagring av tekst fra konsoll.
-
-#: Editor.java:1102
-About\ Arduino=Om Arduino
-
-#: Editor.java:643
-Add\ File...=Legg til fil...
-
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
-
-#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Det oppstod en feil under reparering av tegnkoding for filen.\nIkke fors\u00f8k \u00e5 lagre denne skissen siden den kan overskrive\nden gamle versjonen. Benytt \u00c5pne for \u00e5 \u00e5pne skissen p\u00e5 nytt og pr\u00f8v igjen.\n
-
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=En ukjent feil oppstod under lasting av\nplattformspesifik kode for din maskin.
-
-#: Preferences.java:84
-!Arabic=
-
-#: Preferences.java:85
-!Aragonese=
-
-#: tools/Archiver.java:48
-Archive\ Sketch=Arkiver skisse
-
-#: tools/Archiver.java:109
-Archive\ sketch\ as\:=Arkiver skissen som\:
-
-#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=Arkivering av skissen avbrutt.
-
-#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arkivering av skissen ble avbrutt fordi\nskissen ikke kunne lagres.
-
-#: ../../../processing/app/I18n.java:83
-!Arduino\ ARM\ (32-bits)\ Boards=
-
-#: ../../../processing/app/I18n.java:82
-!Arduino\ AVR\ Boards=
-
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan ikke kj\u00f8re fordi det ikke var mulig\n\u00e5 opprette en mappe for dine innstillinger.
-
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino kan ikke kj\u00f8re fordi det ikke var mulig\n\u00e5 opprette en mappe til \u00e5 lagre skisseboken din.
-
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino er avhengig av JDK (ikke bare JRE)\nfor \u00e5 kj\u00f8re. Vennligst innstaller JDK 1.5 eller nyere.\nMer informasjon finnes i referansedokumentasjonen.
-
-#: ../../../processing/app/EditorStatus.java:471
-!Arduino\:\ =
-
-#: Sketch.java:592
-#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Er du sikker p\u00e5 at du vil slette "{0}"?
-
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Er du sikker p\u00e5 at du vil slette denne skissen?
-
-#: tools/AutoFormat.java:91
-Auto\ Format=Autoformater
-
-#: tools/AutoFormat.java:931
-Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Autoformatering avbrutt\: For mange venstre klammeparantes.
-
-#: tools/AutoFormat.java:922
-Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Autoformatering avbrutt\: For mange venstreparanteser.
-
-#: tools/AutoFormat.java:928
-Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Autoformatering avbrutt\: For mange h\u00f8yre klammeparantes.
-
-#: tools/AutoFormat.java:919
-Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Autoformatering avbrutt\: For mange h\u00f8yreparanteser.
-
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=Autoformatering ferdig.
-
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=Automatisk assosier .ino filer med Arduino
-
-#: SerialMonitor.java:110
-Autoscroll=Bla automatisk
-
-#: Editor.java:2572
-#, java-format
-Bad\ error\ line\:\ {0}=Ugyldig feil p\u00e5 linje\: {0}
-
-#: Editor.java:2089
-Bad\ file\ selected=Ugyldig fil valgt
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Editor.java:682
-Board=Kort
-
-#: ../../../processing/app/debug/TargetBoard.java:42
-#, java-format
-!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
-
-#: ../../../processing/app/EditorStatus.java:472
-!Board\:\ =
-
-#: SerialMonitor.java:112
-Both\ NL\ &\ CR=B\u00e5de NL & CR
-
-#: Preferences.java:80
-Browse=Bla i gjennom
-
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=Byggemappen forsvant eller kunne ikke skrives til
-
-#: ../../../processing/app/Preferences.java:80
-!Bulgarian=
-
-#: Editor.java:699
-Burn\ Bootloader=Brenne oppstartslaster
-
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Brenner oppstartslaster til I/O kort (dette kan ta et minutt...
-
-#: ../../../processing/app/Base.java:368
-!Can't\ open\ source\ sketch\!=
-
-#: ../../../processing/app/Preferences.java:92
-!Canadian\ French=
-
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
-Cancel=Avbryt
-
-#: Sketch.java:459
-Cannot\ Rename=Kan ikke d\u00f8pe om
-
-#: SerialMonitor.java:112
-Carriage\ return=Vognretur
-
-#: Preferences.java:86
-Catalan=Katalansk
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=Se etter oppdateringer ved oppstart
-
-#: Preferences.java:87
-Chinese\ Simplified=Kinesisk forenklet
-
-#: Preferences.java:88
-!Chinese\ Traditional=
-
-#: Editor.java:514 Editor.java:1977
-Close=Lukk
-
-#: Editor.java:1194 Editor.java:2702
-Comment/Uncomment=Kommenter/Fjern kommentar
-
-#: debug/Uploader.java:54 debug/Compiler.java:43
-#, java-format
-Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilatorfeil, vennligst send denne koden til {0}
-
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Kompilerer skisse...
-
-#: EditorConsole.java:152
-Console\ Error=Konsollfeil
-
-#: Editor.java:1143 Editor.java:2660
-Copy=Kopier
-
-#: Editor.java:1163 Editor.java:2676
-Copy\ as\ HTML=Kopier som HTML
-
-#: ../../../processing/app/EditorStatus.java:456
-!Copy\ error=
-
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=Kopier for Forum
-
-#: Sketch.java:1093
-#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Kunne ikke legge ''{0}'' til skissen.
-
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=Kunne ikke kopiere til en riktig plassering.
-
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=Kunne ikke opprette skissemappen.
-
-#: Editor.java:2159
-Could\ not\ create\ the\ sketch.=Kunne ikke opprette skissen.
-
-#: Sketch.java:621
-#, java-format
-Could\ not\ delete\ "{0}".=Kunne ikke slette "{0}".
-
-#: Sketch.java:1070
-#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Kunne ikke slette den eksisterende ''{0}'' filen.
-
-#: Base.java:2247 Base.java:2270
-#, java-format
-Could\ not\ delete\ {0}=Kunne ikke slette {0}
-
-#: ../../../processing/app/debug/TargetPlatform.java:74
-#, java-format
-!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
-
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
-#, java-format
-!Could\ not\ find\ tool\ {0}=
-
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
-#, java-format
-!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-
-#: Base.java:1648
-#, java-format
-Could\ not\ open\ the\ URL\n{0}=Kunne ikke \u00e5pne URLen\n{0}
-
-#: Base.java:1672
-#, java-format
-Could\ not\ open\ the\ folder\n{0}=Kunne ikke \u00e5pne mappen\n{0}
-
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Skissen kunne ikke lagres p\u00e5 nytt. Det kan tenkes at du er ille ute n\u00e5\nog det er p\u00e5 tide \u00e5 kopiere og lime inn kildekoden i et annet redigeringsprogram.
-
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=Kunne ikke lagre skissen p\u00e5 nytt
-
-#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Kunne ikke lese instillinger for fargetema.\nDu m\u00e5 installere Processing p\u00e5 nytt.
-
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunne ikke lese standard innstillinger.\nDu m\u00e5 installere Arduino p\u00e5 nytt.
-
-#: Preferences.java:242
-#, java-format
-Could\ not\ read\ preferences\ from\ {0}=Klarte ikke \u00e5 lese innstillinger fra {0}
-
-#: Base.java:2196
-#, java-format
-Could\ not\ remove\ old\ version\ of\ {0}=Kunne ikke fjerne gammel versjon av {0}
-
-#: Sketch.java:487 Sketch.java:532
-#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=Kunne ikke omd\u00f8pe "{0}" til "{1}"
-
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=Kunne ikke omd\u00f8pe skissen. {0}
-
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=Kunne ikke omd\u00f8pe skissen. {1}
-
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=Kunne ikke omd\u00f8pe skissen. {2}
-
-#: Base.java:2206
-#, java-format
-Could\ not\ replace\ {0}=Kunne ikke erstatte {0}
-
-#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=Kunne ikke arkivere skisse
-
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=Kunne ikke bestemme st\u00f8rrelsen av programmet\: {0}
-
-#: Sketch.java:620
-Couldn't\ do\ it=Kunne ikke gj\u00f8re det
-
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
-!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
-
-#: ../../../processing/app/Preferences.java:82
-!Croatian=
-
-#: Editor.java:1135 Editor.java:2652
-Cut=Klipp ut
-
-#: ../../../processing/app/Preferences.java:83
-!Czech=
-
-#: Preferences.java:89
-Danish=Dansk
-
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Mindre innrykk
-
-#: Sketch.java:595 EditorHeader.java:314
-Delete=Slett
-
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Enheten svarer ikke, sjekk at riktig serieport er valgt eller RESET kortet like f\u00f8r eksportering
-
-#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=Forkast alle endringer og last skissen p\u00e5 nytt?
-
-#: Editor.java:2017
-Don't\ Save=Ikke lagre
-
-#: Editor.java:2228 Editor.java:2264
-Done\ Saving.=Lagret
-
-#: Editor.java:2463
-Done\ burning\ bootloader.=Brenning av oppstartslaster er ferdig
-
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=Kompilering er ferdig.
-
-#: Editor.java:2517
-Done\ printing.=Utskrift ferdig.
-
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=Opplasting ferdig.
-
-#: Preferences.java:90
-Dutch=Nederlandsk
-
-#: Editor.java:1116
-Edit=Rediger
-
-#: Preferences.java:354
-Editor\ font\ size\:\ =Skriftst\u00f8rrelse for redigeringsprogrammet\:
-
-#: Preferences.java:337
-!Editor\ language\:\ =
-
-#: Preferences.java:91
-English=Engelsk
-
-#: Editor.java:1049
-Environment=Milj\u00f8
-
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
-Error=Feil
-
-#: Sketch.java:1069 Sketch.java:1092
-Error\ adding\ file=Feil ved tillegging av fil
-
-#: debug/Compiler.java:426
-Error\ compiling.=Feil ved kompilering.
-
-#: Base.java:1433
-Error\ getting\ the\ Arduino\ data\ folder.=Feil oppstod ved henting av datamappe for Arduino
-
-#: Serial.java:567
-#, java-format
-Error\ inside\ Serial.{0}()=Feil i Serial.{0}()
-
-#: ../../../processing/app/Base.java:1232
-!Error\ loading\ libraries=
-
-#: ../../../processing/app/debug/TargetPlatform.java:95
-#: ../../../processing/app/debug/TargetPlatform.java:106
-#: ../../../processing/app/debug/TargetPlatform.java:117
-#, java-format
-!Error\ loading\ {0}=
-
-#: Serial.java:154
-#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=Feil ved \u00e5pning av serieport ''{0}''.
-
-#: Preferences.java:261
-Error\ reading\ preferences=Feil under lesing av innstillinger
-
-#: Preferences.java:263
-#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Feil ved lesing av filen med innstillinger. Vennligst slett (eller flytt)\n{0} og start Arduino p\u00e5 nytt.
-
-#: ../../../cc/arduino/packages/DiscoveryManager.java:25
-!Error\ starting\ discovery\ method\:\ =
-
-#: ../../../processing/app/Serial.java:125
-#, java-format
-!Error\ touching\ serial\ port\ ''{0}''.=
-
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=Feil under brenning av oppstartslaster.
-
-#: ../../../processing/app/Editor.java:2555
-!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
-
-#: SketchCode.java:83
-#, java-format
-Error\ while\ loading\ code\ {0}=File ved lasting av koden {0}
-
-#: Editor.java:2520
-Error\ while\ printing.=Feil under utskrift.
-
-#: ../../../processing/app/Editor.java:2409
-#: ../../../processing/app/Editor.java:2449
-!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-
-#: Preferences.java:92
-!Estonian=
-
-#: Editor.java:509
-Examples=Eksempler
-
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport avbrutt, endringer m\u00e5 lagres f\u00f8rst.
-
-#: Base.java:1814
-FAQ.html=FAQ.html
-
-#: Editor.java:484
-File=Fil
-
-#: Preferences.java:94
-Filipino=Filippinsk
-
-#: FindReplace.java:124 FindReplace.java:127
-Find=Finn
-
-#: Editor.java:1235
-Find\ Next=Finn neste
-
-#: Editor.java:1245
-Find\ Previous=Finn forrige
-
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=Finn i Referanse
-
-#: Editor.java:1220
-Find...=Finn...
-
-#: FindReplace.java:80
-Find\:=Finn\:
-
-#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
-#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=Fiks tegnkoding & Last p\u00e5 nytt
-
-#: ../../../processing/app/Base.java:2057
-!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
-!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-
-#: Preferences.java:93
-French=Fransk
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Ofte spurte sp\u00f8rsm\u00e5l
-
-#: Preferences.java:95
-Galician=Galisisk
-
-#: ../../../processing/app/Preferences.java:94
-!Georgian=
-
-#: Preferences.java:96
-German=Tysk
-
-#: Editor.java:1041
-Getting\ Started=Kom i gang
-
-#: Preferences.java:97
-Greek=Gresk
-
-#: Base.java:1799
-Guide_Environment.html=Guide_Environment.html
-
-#: Base.java:1785
-Guide_MacOSX.html=Guide_MacOSX.html
-
-#: Base.java:1809
-Guide_Troubleshooting.html=Guide_Troubleshooting.html
-
-#: Base.java:1787
-Guide_Windows.html=Guide_Windows.html
-
-#: ../../../processing/app/Preferences.java:95
-!Hebrew=
-
-#: Editor.java:1002
-Help=Hjelp
-
-#: ../../../processing/app/Preferences.java:98
-!Hindi=
-
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Hva med \u00e5 lagre skissen f\u00f8r \ndu pr\u00f8ver \u00e5 omd\u00f8pe den?
-
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=Dette var surrealistisk
-
-#: Preferences.java:98
-Hungarian=Ungarsk
-
-#: FindReplace.java:96
-Ignore\ Case=Ikke skill mellom store og sm\u00e5 bokstaver
-
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Overser ugyldig biblioteksnavn
-
-#: Base.java:1132
-Ignoring\ sketch\ with\ bad\ name=Overser skisse med ugyldig navn
-
-#: Editor.java:629
-Import\ Library...=Importer bibliotek...
-
-#: ../../../processing/app/Sketch.java:736
-!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Mer innrykk
-
-#: Preferences.java:99
-!Indonesian=
-
-#: ../../../processing/app/Base.java:1204
-#, java-format
-!Invalid\ library\ found\ in\ {0}\:\ {1}=
-
-#: Preferences.java:100
-Italian=Italiensk
-
-#: Preferences.java:101
-Japanese=Japansk
-
-#: Preferences.java:102
-!Korean=
-
-#: Preferences.java:103
-Latvian=Latvisk
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
-
-#: Preferences.java:104
-!Lithuaninan=
-
-#: ../../../processing/app/Sketch.java:1660
-!Low\ memory\ available,\ stability\ problems\ may\ occur=
-
-#: ../../../processing/app/Preferences.java:106
-!Marathi=
-
-#: Base.java:1826
-Message=Melding
-
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
-
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* mangler fra enden til en /* kommentar */
-
-#: Preferences.java:433
-More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Flere instillinger kan redigeres direkte i filen
-
-#: Editor.java:2109
-Moving=Flytter
-
-#: Sketch.java:286
-Name\ for\ new\ file\:=Navn p\u00e5 ny fil\:
-
-#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
-!Network\ upload\ using\ programmer\ not\ supported=
-
-#: Editor.java:486 EditorToolbar.java:41
-New=Ny
-
-#: EditorToolbar.java:46
-New\ Editor\ Window=Nytt redigeringsvindu
-
-#: EditorHeader.java:292
-New\ Tab=Ny fane
-
-#: SerialMonitor.java:112
-Newline=Linjeskift
-
-#: EditorHeader.java:340
-Next\ Tab=Neste fane
-
-#: UpdateCheck.java:108 Preferences.java:77
-No=Nei
-
-#: debug/Compiler.java:79
-No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Ingen kort valgt, vennligs velg et kort fra Verkt\u00f8y > Kort menyen.
-
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
-No\ changes\ necessary\ for\ Auto\ Format.=Ingen endringer n\u00f8dvendig for autoformatering.
-
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=Ingen filer ble lagt til skissen.
-
-#: Platform.java:167
-No\ launcher\ available=Ikke noe startprogramm tilgjengelig
-
-#: SerialMonitor.java:112
-No\ line\ ending=Ingen linjeslutt
-
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u00c6rlig talt, n\u00e5 er det p\u00e5 tide med litt frisk luft.
-
-#: Editor.java:1823
-#, java-format
-No\ reference\ available\ for\ "{0}"=Ingen referanse tilgjengelig for "{0}"
-
-#: ../../../processing/app/Base.java:309
-!No\ valid\ configured\ cores\ found\!\ Exiting...=
-
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Ikkefatal feil under tilordning av Look & Feel.
-
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-Nope=Niks
-
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
-
-#: ../../../processing/app/Preferences.java:108
-!Norwegian\ Bokm\u00e5l=
-
-#: ../../../processing/app/Sketch.java:1656
-!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=OK
-
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=En fil ble lagt til skissen.
-
-#: EditorToolbar.java:41
-Open=\u00c5pne
-
-#: Editor.java:2641
-Open\ URL=\u00c5pne URL
-
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=\u00c5pne en Arduino skisse...
-
-#: EditorToolbar.java:46
-Open\ in\ Another\ Window=\u00c5pne i et annet vindu
-
-#: Editor.java:494 Base.java:903
-Open...=\u00c5pne...
-
-#: Editor.java:556
-Page\ Setup=Sideoppsett
-
-#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
-!Password\:=
-
-#: Editor.java:1175 Editor.java:2684
-Paste=Lim inn
-
-#: Preferences.java:105
-Persian=Persisk
-
-#: debug/Compiler.java:465
-Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Vennligst importer SPI biblioteket fra Skisse > Importer bibliotek menyen.
-
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=Vennligst installer JDK 1.5 eller nyere
-
-#: Preferences.java:106
-!Polish=
-
-#: ../../../processing/app/Editor.java:718
-!Port=
-
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
-
-#: Editor.java:576 Preferences.java:279
-Preferences=Innstillinger
-
-#: FindReplace.java:123 FindReplace.java:128
-Previous=Forrige
-
-#: EditorHeader.java:326
-Previous\ Tab=Forrige fane
-
-#: Editor.java:564
-Print=Skriv ut
-
-#: Editor.java:2524
-Printing\ canceled.=Utskrift avbrutt.
-
-#: Editor.java:2500
-Printing...=Skriver ut...
-
-#: Base.java:1671
-Problem\ Opening\ Folder=Problem ved \u00e5pning av mappe
-
-#: Base.java:1647
-Problem\ Opening\ URL=Problemer ved \u00e5pning av URL
-
-#: Base.java:220
-Problem\ Setting\ the\ Platform=Problemer under setting av platform
-
-#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
-!Problem\ accessing\ board\ folder\ /www/sd=
-
-#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
-!Problem\ accessing\ files\ in\ folder\ =
-
-#: Base.java:1432
-Problem\ getting\ data\ folder=Problem ved henting av datamappe
-
-#: Sketch.java:1465
-#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=Feil under flytting av {0} til byggemappen
-
-#: debug/Uploader.java:209
-Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problemer ved opplasting til kortet. Se http\://www.arduino.cc/en/Guide/Troubleshooting\#upload for forslag.
-
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=Omd\u00f8ping feilet
-
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing kan kun \u00e5pne egne skisser\nog andre filer som slutter med .ino eller .pde
-
-#: ../../../processing/app/I18n.java:86
-!Processor=
-
-#: Editor.java:695
-Programmer=Programmerer
-
-#: Editor.java:586 Base.java:782
-Quit=Avslutt
-
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=Gj\u00f8r om
-
-#: Editor.java:1065
-Reference=Referanse
-
-#: EditorHeader.java:300
-Rename=D\u00f8p om
-
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
-Replace=Erstatt
-
-#: FindReplace.java:122 FindReplace.java:129
-Replace\ &\ Find=Erstatt & Finn
-
-#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=Erstatt alle
-
-#: Sketch.java:1047
-#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=Erstatt den eksisterende versjonen av {0}?
-
-#: FindReplace.java:81
-Replace\ with\:=Bytt ut med\:
-
-#: Preferences.java:109
-Romanian=Rumensk
-
-#: Preferences.java:110
-!Russian=
-
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
-Save=Lagre
-
-#: Editor.java:530
-Save\ As...=Lagre som...
-
-#: Editor.java:2270
-Save\ Canceled.=Lagring avbrutt
-
-#: Editor.java:2420
-Save\ changes\ before\ export?=Lagre endringer f\u00f8r eksport?
-
-#: Editor.java:1973
-#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Lagre endringer i "{0}"?
-
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Lagre skissemappe som...
-
-#: Editor.java:2223 Editor.java:2261
-Saving...=Lagrer...
-
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=Velg (eller opprett ny) mappe for skisser...
-
-#: Editor.java:1184 Editor.java:2692
-Select\ All=Velg alt
-
-#: ../../../processing/app/Base.java:2845
-!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Velg et bilde eller en annen datafil som skal kopieres til skissen
-
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=Velg en ny plassering for skisseboken
-
-#: ../../../processing/app/debug/Compiler.java:146
-!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
-
-#: SerialMonitor.java:93
-Send=Send
-
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Seriell overv\u00e5ker
-
-#: Serial.java:147
-#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serieporten ''{0}'' er allerede i bruk. Pr\u00f8v \u00e5 avslutte eventuelle program som kan tenkes \u00e5 benytte den.
-
-#: ../../../processing/app/Serial.java:121
-#, java-format
-!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-
-#: Serial.java:167
-#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Fant ikke serieporten ''{0}''. Valgte du den riktige fra Verkt\u00f8y > Serieport menyen?
-
-#: Editor.java:2296
-#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Fant ikke serieporten {0}.\nLast opp p\u00e5 nytt med en anne serieport?
-
-#: Base.java:1440
-Settings\ issues=Problemer med innstillinger
-
-#: Editor.java:634
-Show\ Sketch\ Folder=Vis skissemappe
-
-#: ../../../processing/app/EditorStatus.java:468
-!Show\ verbose\ output\ during\ compilation=
-
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =Vis detaljert informasjon under\:
-
-#: Editor.java:600
-Sketch=Skisse
-
-#: Sketch.java:1796
-Sketch\ Disappeared=Skissen forsvant
-
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=Skissen eksisterer ikke
-
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=Skissen er skrivebeskyttet
-
-#: Sketch.java:298
-Sketch\ is\ Untitled=Skissen har ikke navn
-
-#: Sketch.java:724
-Sketch\ is\ read-only=Skissen er skrivebeskyttet
-
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Skissen er for stor. Se http\://www.arduino.cc/en/Guide/Troubleshooting\#size for forslag til hvordan st\u00f8rrelsen kan reduseres
-
-#: Editor.java:503
-Sketchbook=Skissebok
-
-#: Base.java:257
-Sketchbook\ folder\ disappeared=Mappen for skisser er forsvunnet
-
-#: Preferences.java:299
-Sketchbook\ location\:=Skissebok plassering\:
-
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Noen filer er markert som "skrivebeskyttet". Derfor m\u00e5 \nskissen lagres p\u00e5 nytt i en annen lokasjon\nog pr\u00f8v p\u00e5 nytt.
-
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Fordi noen filer er merket "skrivebeskyttet", m\u00e5 \ndenne skissen lagres p\u00e5 nytt til en annen lokasjon.
-
-#: Sketch.java:461
-#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Beklager, en skisse (eller mappe) med navnet "{0}" eksisterer allerede.
-
-#: Preferences.java:111
-Spanish=Spansk
-
-#: Base.java:537
-Sunshine=Solskinn
-
-#: Preferences.java:83
-!System\ Default=
-
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
-
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' n\u00f8kkelordet er ikke st\u00f8ttet lenger.
-
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client klassen har blitt omd\u00f8pt til EthernetClient.
-
-#: debug/Compiler.java:477
-The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server klassen har blitt omd\u00f8pt til EthernetServer.
-
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp klassen har blitt omd\u00f8pt til EthernetUdp
-
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Feilmeldingen f\u00f8lger. Arduino vil imidlertid kj\u00f8re fint.
-
-#: Editor.java:2100
-#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Filen "{0}" m\u00e5 ligge i en skissemappe\nmed f\u00f8lgende navn "{1}".\nOpprett denne mappen, flytt filen og fortsett?
-
-#: Base.java:1202
-#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Biblioteket "{0}" kan ikke benyttes.\nBiblioteksnavn kan kun inneholde bokstaver og tall.\n(kun ASCII, ingen mellomrom, og kan ikke starte med et tall)
-
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Hovedfilen kan ikke ha etternavn.\n(Kanskje det er p\u00e5 tide for deg \u00e5 ta steget opp til et\n"skikkelig" programmeringsmilj\u00f8)
-
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=Navnet kan ikke starte med punktum.
-
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Den valgte skissen eksisterer ikke lenger.\nDu m\u00e5 kanskje starte om Arduino for \u00e5 oppdatere\nskissebokmenyen
-
-#: Base.java:1125
-#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Skissen "{0}" kan ikke benyttes.\nSkissenavn kan kun inneholde bokstaver og tall\n(kun ASCII, ingen mellomrom, og kan ikke starte med et tall).\nFor \u00e5 bli kvitt denne meldingen, fjern skissen fra\n{1}
-
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Skissemappen har forsvunnet.\n Vil fors\u00f8ke \u00e5 lagre p\u00e5 nytt i samme lokasjon,\nmen alt utenom kildekoden vil g\u00e5 tapt.
-
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Navnet p\u00e5 skissen m\u00e5tte endres. Skissenavn kan kun inneholde\nASCII karakterer og nummer (men kan ikke starte med et nummer).\nDe b\u00f8r ogs\u00e5 v\u00e6re kortere en 64 karakterer.
-
-#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Mappen for skisser eksisterer ikke lenger.\nArduino vil n\u00e5 g\u00e5 over til \u00e5 bruke standard mappe for\nskisser, og hvis n\u00f8dvendig opprette en ny mappe\n.Etterp\u00e5 vil Arduino slutte \u00e5 omtale seg selv i\ntredje person.
-
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Denne filen har allerede blitt kopiert til den\nlokasjonen som du pr\u00f8ver \u00e5 legge den til.\nKan'ke gj\u00f8re ikkeno'.
-
-#: ../../../processing/app/EditorStatus.java:467
-!This\ report\ would\ have\ more\ information\ with=
-
-#: Base.java:532
-Time\ for\ a\ Break=Tid for pause
-
-#: Editor.java:656
-Tools=Verkt\u00f8y
-
-#: Editor.java:1057
-Troubleshooting=Feils\u00f8king
-
-#: ../../../processing/app/Preferences.java:117
-!Turkish=
-
-#: ../../../processing/app/Editor.java:2507
-!Type\ board\ password\ to\ access\ its\ console=
-
-#: ../../../processing/app/Sketch.java:1673
-!Type\ board\ password\ to\ upload\ a\ new\ sketch=
-
-#: ../../../processing/app/Preferences.java:118
-!Ukrainian=
-
-#: ../../../processing/app/Editor.java:2524
-#: ../../../processing/app/NetworkMonitor.java:145
-!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
-
-#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
-
-#: ../../../processing/app/Editor.java:2526
-!Unable\ to\ connect\:\ wrong\ password?=
-
-#: ../../../processing/app/Editor.java:2512
-!Unable\ to\ open\ serial\ monitor=
-
-#: Sketch.java:1433
-#, java-format
-Uncaught\ exception\ type\:\ {0}=Ufanget unntak av typen\: {0}
-
-#: Editor.java:1119 Editor.java:1341
-Undo=Angre
-
-#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Uspesifisert platform er ikke lenger tilgjengelig.\nLegg til "launcher\=/sti/til/app" i preferences.txtfor \u00e5 kunne \u00e5pne URLer og mapper.
-
-#: UpdateCheck.java:111
-Update=Oppdater
-
-#: Preferences.java:412
-Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Oppdater skissefilene til ny filtype under lagring (.pde -> .ino)
-
-#: Editor.java:538 EditorToolbar.java:41
-Upload=Last opp
-
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Last opp med en Programmerer
-
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=Opplasting avbrutt.
-
-#: ../../../processing/app/Sketch.java:1678
-!Upload\ cancelled=
-
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=Laster opp til I/O kort...
-
-#: Sketch.java:1661
-Uploading...=Laster opp...
-
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Finn i utvalg
-
-#: Preferences.java:393
-Use\ external\ editor=Bruk eksternt redigeringsprogram
-
-#: EditorToolbar.java:41 EditorToolbar.java:46
-Verify=Verifiser
-
-#: Editor.java:602
-Verify\ /\ Compile=Verifiser / Kompiler
-
-#: Preferences.java:384
-Verify\ code\ after\ upload=Sjekk kode etter opplasting
-
-#: Editor.java:1091
-Visit\ Arduino.cc=Bes\u00f8k Arduino.cc
-
-#: Base.java:1842
-Warning=Advarsel
-
-#: debug/Compiler.java:501
-Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.recive() har blitt omd\u00f8pt til Wire.read()
-
-#: debug/Compiler.java:495
-Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() har blitt omd\u00f8pt til Wire.write().
-
-#: FindReplace.java:105
-Wrap\ Around=Fortsett fra toppen igjen
-
-#: debug/Uploader.java:213
-Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Feil mikrokontroller funnet. Valgte du riktig kort fra Verkt\u00f8y > Kort menyen?
-
-#: UpdateCheck.java:108 Preferences.java:76
-Yes=Ja
-
-#: Sketch.java:1078
-You\ can't\ fool\ me=Du lurer ikke meg
-
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Du kan ikke ha en .cpp fil med sammen navn som skissen.
-
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan ikke omd\u00f8pe skissen til "{0}"\nfordi skissen allerede har en .cpp fil med samme navn.
-
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan ikke lagre skissen som "{0}"\nfordi skissen allrede har en .cpp fil med samme navn.
-
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Du kan ikke lagre skissen i en mappe inn \ni seg selv. Dette vil fortsette i all evighet.
-
-#: Base.java:1602
-You\ forgot\ your\ sketchbook=Du glemte skisseboken din
-
-#: ../../../processing/app/AbstractMonitor.java:92
-!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Du har n\u00e5dd maksimalt antall skissenavn som kan genereres\nautomatisk i l\u00f8pet av en dag. Hva med \u00e5 ta seg en tur i stedet?
-
-#: ../../../processing/app/Base.java:2847
-!ZIP\ files\ or\ folders=
-
-#: ../../../processing/app/Base.java:2870
-!Zip\ doesn't\ contain\ a\ library=
-
-#: Sketch.java:368
-#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" er ikke en gyldig filtype
-
-#: SketchCode.java:258
-#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" inneholder ukjente karakterer. Hvis denne kildekoden var laget med en eldre versjon av Processing, m\u00e5 du kanskje bruke Verkt\u00f8y -> Fiks tegnkoding & Last p\u00e5 nytt for \u00e5 oppdatere skissen til \u00e5 benytte UTF-8 koding. Hvis ikke m\u00e5 du kanskje slette de ukjente karakterene for \u00e5 blit kvitt denne feilmeldingen.
-
-#: debug/Compiler.java:466
-\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nFra Arduino 0019, er Ethernet bilioteket avhengig av SPI biblioteket.\nDet ser ut som du benytter et bibliotek som er avhangig av SPI biblioteket.\n\n
-
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nFra Arduino 1.0, er ikke 'BYTE' n\u00f8kkelordet lenger st\u00f8ttet.\nVennligst benytt Serial.write() i stedet.\n\n
-
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nFra Arduino 1.0 er Client klassen i Ethernet biblioteket blitt omd\u00f8pttil EthernetClient.\n\n
-
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nFra Arduino 1.0 er Server klassen i Ethernet biblioteket blitt omd\u00f8pt til EthernetServer.\n\n
-
-#: ../../../processing/app/debug/Compiler.java:451
-!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nFra Arduion 1.0 er Wire.receive() funksjonen omd\u00f8pt til Wire.read() for konsistens med andre bibliotek.\n\n
-
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nFra Arduino 1.0 er Wire.send() funksjonen omd\u00f8pt til Wire.write() for konsistens med andre bibliotek.\n\n
-
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
-!baud=
-
-#: Preferences.java:373
-compilation\ =kompilering
-
-#: ../../../processing/app/NetworkMonitor.java:111
-!connected\!=
-
-#: Sketch.java:544
-createNewFile()\ returned\ false=createNewFile() returnerte negativ
-
-#: ../../../processing/app/EditorStatus.java:469
-!enabled\ in\ File\ >\ Preferences.=
-
-#: Base.java:1804
-environment=milj\u00f8
-
-#: Editor.java:1094
-http\://arduino.cc/=http\://arduino.cc/
-
-#: ../../../processing/app/debug/Compiler.java:49
-!http\://github.com/arduino/Arduino/issues=
-
-#: UpdateCheck.java:118
-http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
-
-#: UpdateCheck.java:53
-http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-
-#: Base.java:1789
-http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-
-#: Preferences.java:609
-#, java-format
-ignoring\ invalid\ font\ size\ {0}=ser bort fra ugyldig skriftst\u00f8rrelse {0}
-
-#: Base.java:1794
-index.html=index.html
-
-#: Editor.java:927 Editor.java:934
-name\ is\ null=navn er null
-
-#: Base.java:1804
-platforms.html=platforms.html
-
-#: Serial.java:424
-#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Byte bufferet for readByteUntil() er for lite for {0} byter opp til og med char {1}
-
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: intern feil.. kunne ikke finne kode
-
-#: Editor.java:923
-serialMenu\ is\ null=seriemeny er null
-
-#: debug/Uploader.java:199
-#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=den valgte serieporten {0} eksisterer ikke, eller kortet ditt er ikke tilkoblet
-
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
-upload=last opp
-
-#: Editor.java:373
-#, java-format
-{0}\ files\ added\ to\ the\ sketch.={0} filer ble lagt til skissen.
-
-#: debug/Compiler.java:422
-#, java-format
-{0}\ returned\ {1}={0} returnerte {1}
-
-#: Editor.java:2166
-#, java-format
-{0}\ |\ Arduino\ {1}={0} | Arduino {1}
-
-#: Editor.java:1826
-#, java-format
-{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_pl.po b/app/src/processing/app/i18n/Resources_pl.po
index dc5d5cb1b..4b7d84c60 100644
--- a/app/src/processing/app/i18n/Resources_pl.po
+++ b/app/src/processing/app/i18n/Resources_pl.po
@@ -5,69 +5,64 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: Arduino IDE 1.5\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-01 10:24-0400\n"
-"PO-Revision-Date: 2012-04-01 10:24-0400\n"
-"Last-Translator: Maciej Wojnicki, Maciej Wójciga <>\n"
-"Language-Team: Polish\n"
-"Language: pl\n"
+"POT-Creation-Date: 2012-03-29 10:24-0400\n"
+"PO-Revision-Date: 2013-09-10 10:35+0000\n"
+"Last-Translator: cmaglie Closing the last open sketch will quit Arduino."
msgstr ""
-" Zamknięcie ostatniego szkicu spowoduje zamknięcie Arduino."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
msgstr ""
-" Jeśli ich nie zapiszesz, "
-"zmiany będą utracone."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
-msgstr "Plik o nazwie \"{0}\" już istnieje w \"{1}\""
+msgstr ""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr "Folder o nazwie \"{0}\" już istnieje. Nie mogę otworzyć szkicu."
+msgstr ""
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
msgstr ""
@@ -77,26 +72,22 @@ msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
msgstr ""
-"Nowa wersja Arduino jest już dostępna,\n"
-"czy chciałbyć odwiedzić oficjalną stronę Arduino?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
msgstr ""
-"Wystąpił błąd podczas otwierania plików\n"
-"przechowujących wartość wyjścia konsoli."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
-msgstr "O Arduino"
+msgstr ""
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "Dodaj plik..."
+msgstr ""
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
msgstr ""
@@ -106,45 +97,38 @@ msgid ""
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
msgstr ""
-"Wystąpił błąd podczas próby naprawienia kodowania pliku.\n"
-"Nie próbuj zapisać tego szkicu ponieważ może on nadpisać\n"
-"poprzednią wersję. Użyj Otwórz aby ponownie otworzyć szkic i spróbuj jeszcze raz.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
msgstr ""
-"Wystąpił nieznany błąd podczas próby wgrania\n"
-"kodu specyficznego dla platformy na Twoje urządzenie."
-#: Preferences.java:84
+#: Preferences.java:85
msgid "Arabic"
msgstr ""
-#: Preferences.java:85
+#: Preferences.java:86
msgid "Aragonese"
msgstr ""
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Archiwizuj szkic"
+msgstr ""
#: tools/Archiver.java:109
msgid "Archive sketch as:"
-msgstr "Archiwizuj szkic jako:"
+msgstr ""
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Archiwizacja szkicu anulowana."
+msgstr ""
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
msgstr ""
-"Archiwizowanie szkicu zostało anulowane ponieważ\n"
-"szkic nie mógł być zapisany poprawnie."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
@@ -154,129 +138,138 @@ msgstr ""
msgid "Arduino AVR Boards"
msgstr ""
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
msgstr ""
-"Arduino nie zostanie uruchomione bo nie może\n"
-"stworzyć folderu do przechowywania ustawień."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
msgstr ""
-"Arduino nie zostanie uruchomione\n"
-"ponieważ nie może utworzyć folderu do przechowania Twojego szkicu."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
msgstr ""
-"Arduino wymaga pełnego JDK (nie tylko JRE)\n"
-"do działania. Zainstaluj JDK 1.5 lud nowsze.\n"
-"Więcej informacji na ten temat znajdziesz w dokumentacji"
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
msgstr ""
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Czy jesteś pewny że chcesz usunąć \"{0}\"?"
+msgstr ""
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Czy jesteś pewny że chcesz usunąć ten szkic?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Automatyczne formatowanie"
+msgstr ""
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
msgid "Auto Format Canceled: Too many left curly braces."
msgstr ""
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
msgid "Auto Format Canceled: Too many left parentheses."
msgstr ""
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
msgid "Auto Format Canceled: Too many right curly braces."
msgstr ""
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
msgid "Auto Format Canceled: Too many right parentheses."
msgstr ""
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "Automatyczne formatowanie zakończone."
+msgstr ""
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Automatycznie przypisz pliki .ino do Arduino"
+msgstr ""
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Autoprzewijanie"
-
-#: Editor.java:2572
-#, java-format
-msgid "Bad error line: {0}"
-msgstr "Bład w linii: {0}"
-
-#: Editor.java:2089
-msgid "Bad file selected"
-msgstr "Wybrano niepoprawny plik"
-
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
msgstr ""
-#: Editor.java:682
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
-msgstr "Płytka"
+msgstr ""
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
msgstr ""
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
msgstr ""
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "Zarówno NL jak i CR"
+msgstr ""
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Przeglądaj"
+msgstr ""
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "Folder projektu nie został odnaleziony lub nie mógł zostać zapisany"
+msgstr ""
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
msgstr ""
-#: Editor.java:699
-msgid "Burn Bootloader"
-msgstr "Wypal Bootloader"
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
-#: Editor.java:2457
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Wypalanie bootloadera na płytce (może to potrwać chwilę)…"
+msgstr ""
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
@@ -286,103 +279,119 @@ msgstr ""
msgid "Canadian French"
msgstr ""
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
-msgstr "Anuluj"
+msgstr ""
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr "Nie można zmienić nazwy"
+msgstr ""
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Powrót do początku linii (CR)"
-
-#: Preferences.java:86
-msgid "Catalan"
-msgstr "Kataloński"
-
-#: Preferences.java:403
-msgid "Check for updates on startup"
-msgstr "Sprawdź aktualizacje podczas uruchamiania"
+msgstr ""
#: Preferences.java:87
-msgid "Chinese Simplified"
-msgstr "Chiński uproszczony"
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
msgid "Chinese Traditional"
msgstr ""
-#: Editor.java:514 Editor.java:1977
+#: Editor.java:521 Editor.java:2024
msgid "Close"
-msgstr "Zamknij"
+msgstr ""
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
msgstr ""
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Błąd kompilatora, prześlij ten kod do {0}"
+msgstr ""
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Kompiluję szkic..."
+msgstr ""
#: EditorConsole.java:152
msgid "Console Error"
-msgstr "Błąd konsoli"
+msgstr ""
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
-msgstr "Kopiuj"
+msgstr ""
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
-msgstr "Kopiuj jako HTML"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
msgstr ""
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Kopiuj dla Forum"
+msgstr ""
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "Nie można dodać ''{0}'' do szkicu."
+msgstr ""
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "Nie można przenieść do odpowiedniej lokalizacji."
+msgstr ""
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "Nie można utworzyć folderu szkicu."
+msgstr ""
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
-msgstr "Nie można utworzyć szkicu."
+msgstr ""
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Nie można usunąć \"{0}\"."
+msgstr ""
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Nie można było usunąć istniejącego pliku ''{0}''."
+msgstr ""
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "Nie można usunąć {0}"
+msgstr ""
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -399,95 +408,87 @@ msgstr ""
msgid "Could not find tool {0} from package {1}"
msgstr ""
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr "Nie mogę otworzyć URL\n"
+msgstr ""
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
msgstr ""
-"Nie mogę otworzyć folderu\n"
-"{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
msgstr ""
-"Nie można było prawidłowo ponownie zapisać pliku. Może to być początek kłopotów,\n"
-"dlatego najlepiej skopiuj kod i przeklej go do innego edytora tekstu."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
-msgstr "Nie można było ponownie zapisać szkicu"
+msgstr ""
#: Theme.java:52
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
msgstr ""
-"Nie można odczytać ustawień kolorów szablonu.\n"
-"Musisz przeinstalować Processing."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
msgstr ""
-"Nie można odczytać ustawień.\n"
-"Musisz przeinstalować Arduino."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "Nie można odczytać preferencji z"
+msgstr ""
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "Could not remove old version of {0}"
+msgstr ""
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "Nie można zmienić nazwy \"{0}\" na \"{1}\""
+msgstr ""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "Nie można zmienić nazwy szkicu. (0)"
+msgstr ""
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Nie można zmienić nazwy szkicu. (1)"
+msgstr ""
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Nie można zmienić nazwy szkicu. (2)"
+msgstr ""
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
-msgstr "Nie można zamienić {0}"
+msgstr ""
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Nie można było zarchiwizować szkicu"
+msgstr ""
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Nie można określić wielkości pliku: {0}"
+msgstr ""
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "Nie można było tego zrobić"
+msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
@@ -498,108 +499,114 @@ msgstr ""
msgid "Croatian"
msgstr ""
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
-msgstr "Wytnij"
+msgstr ""
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
msgstr ""
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
-msgstr "Duński"
+msgstr ""
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Zmniejsz wcięcie"
+msgstr ""
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr "Usuń"
+msgstr ""
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
msgstr ""
-"Urządzenie nie odpowiada, sprawdź czy wybrano odpowiedni port szeregowy "
-"lub zresetuj płytkę przed eksportowaniem szkicu"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Odrzucić wszystkie zmiany i przeładować szkic?"
+msgstr ""
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "Nie zapisuj"
+msgstr ""
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
-msgstr "Zapisano."
+msgstr ""
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "Wypalanie bootloadera zakończone pomyślnie."
+msgstr ""
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
-msgstr "Kompilowanie zakończone."
+msgstr ""
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
-msgstr "Drukowanie zakończone."
+msgstr ""
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
-msgstr "Ładowanie zakończone pomyślnie."
-
-#: Preferences.java:90
-msgid "Dutch"
-msgstr "Holenderski"
-
-#: Editor.java:1116
-msgid "Edit"
-msgstr "Edycja"
-
-#: Preferences.java:354
-msgid "Editor font size: "
-msgstr "Wielkość czcionki edytora"
-
-#: Preferences.java:337
-msgid "Editor language: "
msgstr ""
#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
msgid "English"
-msgstr "Angielski"
+msgstr ""
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
msgid "Environment"
-msgstr "Środowiski"
+msgstr ""
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
-msgstr "Błąd"
+msgstr ""
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
-msgstr "Błąd podczas dodawania pliku"
+msgstr ""
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Błąd kompilacji"
+msgstr ""
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "Problem z dostępem do folderu danych Arduino."
+msgstr ""
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "Błąd w Serial.{0}()"
+msgstr ""
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
@@ -612,36 +619,34 @@ msgstr ""
msgid "Error loading {0}"
msgstr ""
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr "Błąd podczas otwierania portu szeregowego ''{0}''."
+msgstr ""
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
-msgstr "Błąd odczytywania preferencji"
+msgstr ""
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
msgstr ""
-"Błąd odczytywania pliku preferencji. Skasuj go (lub przenieś)\n"
-"{0} i zrestartuj Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
msgstr ""
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
msgstr ""
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Wystąpił błąd podczas wypalania bootloadera."
+msgstr ""
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
@@ -650,167 +655,185 @@ msgstr ""
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Błąd podczas wgrywania kodu {0}"
+msgstr ""
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "Wystąpił błąd podczas drukowania."
+msgstr ""
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
msgstr ""
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
msgstr ""
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
msgid "Examples"
-msgstr "Przykłady"
+msgstr ""
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Eksportowanie anulowane, zmiany muszą zostać najpierw zapisane."
+msgstr ""
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
-msgstr "FAQ.html"
+msgstr ""
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
-msgstr "Plik"
+msgstr ""
#: Preferences.java:94
msgid "Filipino"
-msgstr "Filipiński"
+msgstr ""
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
msgstr ""
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Znajdź następne"
+msgstr ""
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Znajdź wcześniejsze"
+msgstr ""
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
-msgstr "Znajdź w dokumentacji"
+msgstr ""
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Znajdź..."
+msgstr ""
#: FindReplace.java:80
msgid "Find:"
-msgstr "Znajdź"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr "Napraw kodowanie i załaduj ponownie"
-
-#: ../../../processing/app/Base.java:2057
-msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
msgstr ""
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
msgstr ""
-#: Preferences.java:93
-msgid "French"
-msgstr "Francuski"
-
-#: Editor.java:1083
-msgid "Frequently Asked Questions"
-msgstr "Często zadawane pytania"
-
#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
msgid "Galician"
-msgstr "Galijski"
+msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
-#: Preferences.java:96
-msgid "German"
-msgstr "Niemiecki"
-
-#: Editor.java:1041
-msgid "Getting Started"
-msgstr "Jak zacząć"
-
#: Preferences.java:97
+msgid "German"
+msgstr ""
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
msgid "Greek"
msgstr ""
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
-msgstr "Guide_Environment.html"
+msgstr ""
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
-msgstr "Guide_MacOSX.html"
+msgstr ""
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
-msgstr "Guide_Troubleshooting.html"
+msgstr ""
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
-msgstr "Guide_Windows.html"
+msgstr ""
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
-msgstr "Pomoc"
+msgstr ""
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
msgstr ""
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
msgstr ""
-"Czy chciałbyś zachować ten plik \n"
-"przed zmianą jego nazwy?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "To trochę nielogiczne"
+msgstr ""
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr ""
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr "Ignoruj"
+msgstr ""
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Ignoruj błędną nazwę szkicu"
+msgstr ""
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr ""
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Importuj bibliotekę..."
+msgstr ""
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -823,11 +846,11 @@ msgid ""
"Save sketch and update its extension?"
msgstr ""
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Zwiększ wcięcie"
+msgstr ""
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
msgstr ""
@@ -836,27 +859,27 @@ msgstr ""
msgid "Invalid library found in {0}: {1}"
msgstr ""
-#: Preferences.java:100
-msgid "Italian"
-msgstr "Włoski"
-
-#: Preferences.java:101
-msgid "Japanese"
-msgstr ""
-
#: Preferences.java:102
-msgid "Korean"
+msgid "Italian"
msgstr ""
#: Preferences.java:103
-msgid "Latvian"
-msgstr "Litewski"
-
-#: ../../../processing/app/Base.java:2903
-msgid "Library added to your libraries. Check \"Import library\" menu"
+msgid "Japanese"
msgstr ""
#: Preferences.java:104
+msgid "Korean"
+msgstr ""
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
msgid "Lithuaninan"
msgstr ""
@@ -864,111 +887,106 @@ msgstr ""
msgid "Low memory available, stability problems may occur"
msgstr ""
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
msgstr ""
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
-msgstr "Wiadomość"
-
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
msgstr ""
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Brakuje */ na końcu /* komentarza */"
+msgstr ""
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
-msgstr "Więcej preferencji może być edytowanych bezpośrednio w pliku"
+msgstr ""
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
-msgstr "Przenoszę"
+msgstr ""
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
-msgstr "Nazwa nowego pliku:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
-msgstr "Nowy"
+msgstr ""
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Nowe okno edytora"
+msgstr ""
#: EditorHeader.java:292
msgid "New Tab"
-msgstr "Nowa zakładka"
+msgstr ""
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Nowa linia (NL)"
+msgstr ""
#: EditorHeader.java:340
msgid "Next Tab"
-msgstr "Następna zakładka"
+msgstr ""
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr ""
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Nie wybrano modelu płytki; proszę wybierz model z menu Narzędzia (Tools) > Model płytki(Board)."
+msgstr ""
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
msgstr ""
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "Żadne pliki nie zostały dodane do szkicu."
+msgstr ""
#: Platform.java:167
msgid "No launcher available"
-msgstr "Brak dostępnego lounchera"
+msgstr ""
#: SerialMonitor.java:112
msgid "No line ending"
msgstr ""
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "Naprawdę, czas na odrobinę świeżego powietrza."
+msgstr ""
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "Nie ma dokumentacji dla \"{0}\""
+msgstr ""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
msgstr ""
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Błąd podczas ustawiania Look & Feel."
+msgstr ""
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
-msgstr "Nie"
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
@@ -981,60 +999,60 @@ msgid ""
"for tips on reducing your footprint."
msgstr ""
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
-msgstr "OK"
+msgstr ""
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
-msgstr "Jeden plik został dodany do szkicu"
+msgstr ""
#: EditorToolbar.java:41
msgid "Open"
-msgstr "Otwórz"
+msgstr ""
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
-msgstr "Otwórz URL"
+msgstr ""
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
-msgstr "Otwórz szkic Arduino..."
+msgstr ""
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Otwórz w nowym oknie"
+msgstr ""
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
-msgstr "Otwórz..."
+msgstr ""
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Ustawienia strony"
+msgstr ""
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
msgstr ""
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
-msgstr "Wklej"
+msgstr ""
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
-msgstr "Perski"
+msgstr ""
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Zaimportuj bibliotekę SPI z Szkic (Sketch) > Importuj bibliotekę (Import Library)."
+msgstr ""
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
-msgstr "Zainstaluj JDK 1.5 lub nowsze."
+msgstr ""
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
msgstr ""
@@ -1042,13 +1060,21 @@ msgstr ""
msgid "Port"
msgstr ""
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
msgstr ""
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
-msgstr "Preferencje"
+msgstr ""
#: FindReplace.java:123 FindReplace.java:128
msgid "Previous"
@@ -1056,31 +1082,31 @@ msgstr ""
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Wcześniejsza zakładka"
+msgstr ""
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
-msgstr "Drukuj"
+msgstr ""
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
-msgstr "Drukowanie anulowane."
+msgstr ""
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
-msgstr "Drukuję..."
+msgstr ""
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr "Problem z otworzeniem folderu"
+msgstr ""
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "Problem z otworzeniem URL"
+msgstr ""
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
-msgstr "Błąd podczas ustawiania platformy"
+msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
@@ -1090,60 +1116,56 @@ msgstr ""
msgid "Problem accessing files in folder "
msgstr ""
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "Problem z dostępem do folderu z danymi."
+msgstr ""
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Wystąpił problem podczas przenoszenia {0} do folderu projektu"
+msgstr ""
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr ""
-"Problem z przesyłaniem danych na płytkę. Sprawdź http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload aby otrzymać więcej informacji."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Problem ze zmianą nazwy"
+msgstr ""
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
msgstr ""
-"Processing może otwierać tylko własne szkice\n"
-"i inne pliki z rozszerzeniem .ino lub .pde"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
msgstr ""
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "Programator"
+msgstr ""
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
-msgstr "Wyjście"
+msgstr ""
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
-msgstr "Ponów"
+msgstr ""
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
-msgstr "Dokumentacja"
+msgstr ""
#: EditorHeader.java:300
msgid "Rename"
-msgstr "Zmień nazwę"
+msgstr ""
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr ""
@@ -1155,72 +1177,72 @@ msgstr ""
msgid "Replace All"
msgstr ""
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Zamienić istniejącą już wersję {0}?"
+msgstr ""
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Zamień"
+msgstr ""
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
-msgstr "Rumuński"
+msgstr ""
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
msgstr ""
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
-msgstr "Zapisz"
+msgstr ""
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Zapisz jako..."
+msgstr ""
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "Anulowano zapisywanie."
+msgstr ""
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
-msgstr "Zapisać zmiany przed eksportowaniem?"
+msgstr ""
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Zapisać zmiany jako \"{0}\"?"
+msgstr ""
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Zapisz folder szkicu jako..."
+msgstr ""
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
-msgstr "Zapisuję..."
+msgstr ""
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Wybierz (albo utwórz) folder szkiców..."
+msgstr ""
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Zaznacz wszystko"
+msgstr ""
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
msgstr ""
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Wybierz obraz lub plik z innymi danymi do wklejenia do Twojego szkicu"
+msgstr ""
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Ustal nową lokalizcję szkicownika"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
@@ -1230,174 +1252,174 @@ msgstr ""
msgid "Send"
msgstr ""
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "Monitor portu szeregowego"
+msgstr ""
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
msgstr ""
-"Port szeregowy ''{0}'' jest obecnie w uzyciu. Spróbuj zamknąć programy które mogą "
-"go używać."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
msgstr ""
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
msgstr ""
-"Port szeregowy ''{0}'' nie został znaleziony. Czy wybrałeś prawidłowy z menu Narzędzia (Tools) > "
-"Port szeregowy (Serial Port) ?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
msgstr ""
-"Port szeregowy {0} nie został znaleziony.\n"
-"Ponówić ładowanie danych przez inny port?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Problem z ustawieniami"
+msgstr ""
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Pokaż folder szkicu"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
msgstr ""
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Pokaż pełen raport podczas: "
+msgstr ""
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
-msgstr "Szkic"
+msgstr ""
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "Szkic zniknął"
+msgstr ""
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "Szkic nie istnieje"
+msgstr ""
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr "Ten szkic jest oznaczony jako \"Tylko do odczytu\" "
+msgstr ""
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "Szkic nie ma nazwy"
+msgstr ""
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "Ten szkic jest oznaczony jako \"Tylko do odczytu\" "
+msgstr ""
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
msgstr ""
-"Szkic jest za duży; zobacz porady na http://www.arduino.cc/en/Guide/Troubleshooting#size "
-"w celu zmniejszenia go."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
msgid "Sketchbook"
-msgstr "Szkicownik"
+msgstr ""
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "Folder szkicownika nie istnieje."
+msgstr ""
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "Lokalizacja szkicownika"
+msgstr ""
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
msgstr ""
-"Niektóre pliki są oznaczone jako \"Tylko do odczytu\", więc musisz\n"
-"zachować szkic w innej lokalizacji i spróbować ponownie."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
msgstr ""
-"Niektóre pliki są oznaczone jako \"Tylko do odczytu\", więc musisz\n"
-"zachować szkic w innej lokalizacji."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Szkic (lub folder) o nazwie \"{0}\" już istnieje."
+msgstr ""
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
-msgstr "Hiszpański"
+msgstr ""
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr "Słońce!"
+msgstr ""
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
msgid "System Default"
msgstr ""
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
msgstr ""
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr "Słowo 'BYTE' nie jest już wspierane."
+msgstr ""
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "Klasa Client zmieniła nazwę na EthernetClient."
+msgstr ""
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
-msgstr "Klasa Server zmieniła nazwę na EthernetServer."
+msgstr ""
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "Klasa Udp zmieniła nazwę na EthernetUdp."
+msgstr ""
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "Wystąpił błąd opisany poniżej, Arduino powinno jednak pracować poprawnie."
+msgstr ""
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
msgstr ""
-"Plik \"{0}\" musi być wewnątrz\n"
-"folderu szkicu o nazwie \"{1}\".\n"
-"Utwórzyć folder, przenieść plik i kontynuować?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
@@ -1405,31 +1427,25 @@ msgid ""
"(ASCII only and no spaces, and it cannot start with a number)"
msgstr ""
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
msgstr ""
-"Plik główny nie może używać rozszerzenia.\n"
-"(Być może nadszedł czas abyś zaczął używać\n"
-"\"prawdziwego\" środowiska programistycznego?)"
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr "Nazwa nie może zaczynać się od kropki."
+msgstr ""
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
msgstr ""
-"Wybrany szkic nie istnieje.\n"
-"Być może musisz zrestartować Arduino\n"
-"aby odświeżyć listę szkiców."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1438,33 +1454,22 @@ msgid ""
"To get rid of this message, remove the sketch from\n"
"{1}"
msgstr ""
-"Nazwa szkicu \"{0}\" nie może zostać użyta.\n"
-"Nazwy szkiców mogą zawierać jedynie podstawowe litery i cyfry\n"
-"(ASCII, bez spacji, nie mogą zaczynać się cyfrą).\n"
-"Aby pozbyć się tej wiadomości, usuń szkic z\n"
-"{1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
msgstr ""
-"Folder szkicu zniknął.\n"
-"Ponowię probę aby zapisać szkic w tym samym miejscu,\n"
-"jednak wszystkie dane oprócz kodu zostaną utracone."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
msgstr ""
-"Nazwa pliku musiała być zmieniona. Nazwy szkiców mogą zawierać jedynie\n"
-"znaki ASCII oraz liczby (ale nie mogą zaczynać się od liczby).\n"
-"Powinny również zawierać mniej niż 64 znaki."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
@@ -1472,37 +1477,29 @@ msgid ""
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
msgstr ""
-"Folder szkicownika (Sketchbook) nie istnieje.\n"
-"Arduino spróbuje utworzyć folder szkicownika\n"
-"w domyślnej lokalizacji jeśli to konieczne.\n"
-"Potem Arduino przestanie gadać o sobie\n"
-"w trzeciej osobie."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
msgstr ""
-"Ten plik już został skopiowany do miejsca\n"
-"z którego chcesz go dodać.\n"
-"Nie zrobię tego."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
msgstr ""
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr "Czas na przerwę"
+msgstr ""
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
-msgstr "Narzędzia"
+msgstr ""
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "Rozwiązywanie problemów"
+msgstr ""
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
@@ -1526,7 +1523,7 @@ msgid "Unable to connect: is the sketch using the bridge?"
msgstr ""
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
+msgid "Unable to connect: retrying"
msgstr ""
#: ../../../processing/app/Editor.java:2526
@@ -1537,14 +1534,14 @@ msgstr ""
msgid "Unable to open serial monitor"
msgstr ""
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Nierozpoznany rodzaj wyjątku: {0}"
+msgstr ""
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
-msgstr "Cofnij"
+msgstr ""
#: Platform.java:168
msgid ""
@@ -1552,77 +1549,78 @@ msgid ""
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
msgstr ""
-"Brak określonej platformy, brak dostępnego launchera.\n"
-"Aby umożliwić otwieranie URL oraz folderów, dodaj linię\n"
-"\"launcher=/path/to/app\" do pliku preferences.txt"
#: UpdateCheck.java:111
msgid "Update"
-msgstr "Aktualizacja"
+msgstr ""
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr "Aktualizuj rozszerzenie szkiców podczas zapisywania (.pde -> .ino)"
+msgstr ""
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
-msgstr "Załaduj"
+msgstr ""
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Załaduj używając programatora"
+msgstr ""
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "Ładowanie anulowane."
+msgstr ""
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
msgstr ""
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Ładuję dane na płytkę…"
+msgstr ""
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
-msgstr "Ładowanie..."
+msgstr ""
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Szukaj według zaznaczenia"
+msgstr ""
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
-msgstr "Użyj zewnętrznego edytora"
+msgstr ""
#: EditorToolbar.java:41 EditorToolbar.java:46
msgid "Verify"
-msgstr "Weryfikuj"
+msgstr ""
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Weryfikuj / Kompiluj"
+msgstr ""
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr "Weryfikuj kod po załadowaniu"
+msgstr ""
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
-msgstr "Odwiedź Arduino.cc"
+msgstr ""
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr "Ostrzeżenie"
+msgstr ""
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
-msgstr "Funkcja Wire.receive() zmieniła nazwę na Wire.read()."
+msgstr ""
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "Funkcja Wire.send() zmieniła nazwę na Wire.write()."
+msgstr ""
#: FindReplace.java:105
msgid "Wrap Around"
@@ -1633,74 +1631,64 @@ msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
msgstr ""
-"Wykryto inny mikrokontroler. Czy wybrałeś odpowiedni model płytki z menu Narzędzia (Tools) "
-"> Model płytki (Board)?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr ""
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
-msgstr "Nie przechytrzysz mnie."
+msgstr ""
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "Nie możesz używać pliku .cpp o tej samej nazwie co szkic."
+msgstr ""
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-"Nie możesz zmienić nazwy szkicu na \"{0}\"\n"
-"ponieważ szkic już posiada plik .cpp o tej samej nazwie."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
msgstr ""
-"Nie możesz zapisać szkicu jako \"{0}\"\n"
-"ponieważ szkic już posiada plik .cpp o tej samej nazwie."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
msgstr ""
-"Nie możesz zapisać szkicu w folderze znajdującym się\n"
-"w swoim środku. To by trwało w nieskończoność."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
-msgstr "Zapomniałeś o folderze szkicownika"
+msgstr ""
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
msgstr ""
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
msgstr ""
-"Wykorzystałeś limit auto-nazw szkicy\n"
-"na dzisiaj. Może pora na spacer?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
msgstr ""
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
msgstr ""
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" nie jest prawidłowym rozszerzeniem."
+msgstr ""
#: SketchCode.java:258
#, java-format
@@ -1710,117 +1698,85 @@ msgid ""
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
msgstr ""
-"\"{0}\" zawiera nierozpoznawalne znaki. Jeżeli kod był stworzony przy pomocy "
-"starszej wersji Processing, wejdź do menu Tools -> Fix Encoding & "
-"Reload w celu zaktualizowania szkicu do używania kodowania UTF-8. Jeśli to nie zadziała, "
-"usuń wszystkie błędne znaki w celu pozbycia się tego ostrzeżenia."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
msgstr ""
-"Od wersji Arduino 0019, biblioteka Ethernet zależy od biblioteki SPI.\n"
-"Wygląda na to że używasz innej bilioteki również zależnej od biblioteki SPI."
-"\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
msgstr ""
-"Od wersji Arduino 1.0, słowo 'BYTE' nie jest wspierane.\n"
-"Użyj proszę funkcji Serial.write()\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
-"\n"
-msgstr ""
-"\n"
-"Od wersji Arduino 1.0, klasa Client z biblioteki Ethernet zmieniła nazwę "
-"na EthernetClient.\n"
-"\n"
-
-#: debug/Compiler.java:478
-msgid ""
-"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
-"\n"
-msgstr ""
-"\n"
-"Od wersji Arduino 1.0, klasa Server z biblioteki Ethernet zmieniła nazwę "
-"na EthernetServer.\n"
-"\n"
-
-#: ../../../processing/app/debug/Compiler.java:451
-msgid ""
-"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
msgstr ""
-#: debug/Compiler.java:502
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
msgstr ""
-"\n"
-"Od wersji 1.0, funkcja Wire.receive() zmieniła nazwę na Wire.read() "
-"zachować spójność nazewnictwa z innymi bibliotekami.\n"
-"\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
msgstr ""
-"\n"
-"Od wersji Arduino 1.0, funkcja Wire.send() zmieniła nazwę Wire.write() aby "
-"zachować spójność nazewnictwa z innymi bibliotekami.\n"
-"\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
msgstr ""
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "kompilacja"
+msgstr ""
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
msgstr ""
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
-msgstr "funkcja createNewFile() zwróciła false"
+msgstr ""
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
-msgstr "środowisko"
+msgstr ""
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
-msgstr "http://arduino.cc/"
+msgstr ""
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
@@ -1828,81 +1784,74 @@ msgstr ""
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
-msgstr "http://www.arduino.cc/en/Main/Software"
+msgstr ""
#: UpdateCheck.java:53
msgid "http://www.arduino.cc/latest.txt"
-msgstr "http://www.arduino.cc/latest.txt"
+msgstr ""
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
-msgstr "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "ignorowanie błędnej wielkości czcionki {0}"
+msgstr ""
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
-msgstr "index.html"
+msgstr ""
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "nazwa jest null"
+msgstr ""
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
-msgstr "platforms.html"
+msgstr ""
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
msgstr ""
-"Bufor bajtowy readBytesUntil() jest za mały dla {0} bajtów "
-"włącznie z char {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
-msgstr "removeCode: internal error.. nie można znaleźć kodu"
+msgstr ""
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "serialMenu jest null"
+msgstr ""
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
msgstr ""
-"port szeregowy {0} nie istnieje lub twoja płytka nie jest podłączona"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
+#: Preferences.java:391
+msgid "upload"
msgstr ""
-#: Preferences.java:375
-msgid "upload"
-msgstr "załaduj"
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "{0} zostało dodanych do szkicu"
+msgstr ""
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
-msgstr "{0} zwrócił {1}"
+msgstr ""
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
-msgstr "{0} | Arduino {1}"
+msgstr ""
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
-msgstr "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_pl.properties b/app/src/processing/app/i18n/Resources_pl.properties
index b98879c52..fba208f06 100644
--- a/app/src/processing/app/i18n/Resources_pl.properties
+++ b/app/src/processing/app/i18n/Resources_pl.properties
@@ -3,79 +3,79 @@
# This file is distributed under the same license as the PACKAGE package.
# Maciej Wojnicki, Maciej W\u00f3jciga <>, 2012.
#
-!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-01 10\:24-0400\nPO-Revision-Date\: 2012-04-01 10\:24-0400\nLast-Translator\: Maciej Wojnicki, Maciej W\u00f3jciga <>\nLanguage-Team\: Polish\nLanguage\: pl\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Zamkni\u0119cie ostatniego szkicu spowoduje zamkni\u0119cie Arduino.
+#: Base.java:773
+!\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Je\u015bli ich nie zapiszesz, zmiany b\u0119d\u0105 utracone.
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
-A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Plik o nazwie "{0}" ju\u017c istnieje w "{1}"
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Folder o nazwie "{0}" ju\u017c istnieje. Nie mog\u0119 otworzy\u0107 szkicu.
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
!A\ library\ named\ {0}\ already\ exists=
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Nowa wersja Arduino jest ju\u017c dost\u0119pna,\nczy chcia\u0142by\u0107 odwiedzi\u0107 oficjaln\u0105 stron\u0119 Arduino?
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Wyst\u0105pi\u0142 b\u0142\u0105d podczas otwierania plik\u00f3w\nprzechowuj\u0105cych warto\u015b\u0107 wyj\u015bcia konsoli.
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
-#: Editor.java:1102
-About\ Arduino=O Arduino
+#: Editor.java:1116
+!About\ Arduino=
-#: Editor.java:643
-Add\ File...=Dodaj plik...
+#: Editor.java:650
+!Add\ File...=
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
!Add\ Library...=
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Wyst\u0105pi\u0142 b\u0142\u0105d podczas pr\u00f3by naprawienia kodowania pliku.\nNie pr\u00f3buj zapisa\u0107 tego szkicu poniewa\u017c mo\u017ce on nadpisa\u0107\npoprzedni\u0105 wersj\u0119. U\u017cyj Otw\u00f3rz aby ponownie otworzy\u0107 szkic i spr\u00f3buj jeszcze raz.\n
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas pr\u00f3by wgrania\nkodu specyficznego dla platformy na Twoje urz\u0105dzenie.
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
!Aragonese=
#: tools/Archiver.java:48
-Archive\ Sketch=Archiwizuj szkic
+!Archive\ Sketch=
#: tools/Archiver.java:109
-Archive\ sketch\ as\:=Archiwizuj szkic jako\:
+!Archive\ sketch\ as\:=
#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=Archiwizacja szkicu anulowana.
+!Archive\ sketch\ canceled.=
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Archiwizowanie szkicu zosta\u0142o anulowane poniewa\u017c\nszkic nie m\u00f3g\u0142 by\u0107 zapisany poprawnie.
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
#: ../../../processing/app/I18n.java:83
!Arduino\ ARM\ (32-bits)\ Boards=
@@ -83,62 +83,68 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav
#: ../../../processing/app/I18n.java:82
!Arduino\ AVR\ Boards=
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nie zostanie uruchomione bo nie mo\u017ce\nstworzy\u0107 folderu do przechowywania ustawie\u0144.
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nie zostanie uruchomione\nponiewa\u017c nie mo\u017ce utworzy\u0107\u00a0folderu do przechowania Twojego szkicu.
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino wymaga pe\u0142nego JDK (nie tylko JRE)\ndo dzia\u0142ania. Zainstaluj JDK 1.5 lud nowsze.\nWi\u0119cej informacji na ten temat znajdziesz w dokumentacji
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
#: ../../../processing/app/EditorStatus.java:471
!Arduino\:\ =
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Czy jeste\u015b pewny \u017ce chcesz usun\u0105\u0107 "{0}"?
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Czy jeste\u015b pewny \u017ce chcesz usun\u0105\u0107 ten szkic?
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
#: tools/AutoFormat.java:91
-Auto\ Format=Automatyczne formatowanie
+!Auto\ Format=
-#: tools/AutoFormat.java:931
+#: tools/AutoFormat.java:934
!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
-#: tools/AutoFormat.java:922
+#: tools/AutoFormat.java:925
!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
-#: tools/AutoFormat.java:928
+#: tools/AutoFormat.java:931
!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
-#: tools/AutoFormat.java:919
+#: tools/AutoFormat.java:922
!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=Automatyczne formatowanie zako\u0144czone.
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=Automatycznie przypisz pliki .ino do Arduino
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
#: SerialMonitor.java:110
-Autoscroll=Autoprzewijanie
+!Autoscroll=
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
-Bad\ error\ line\:\ {0}=B\u0142ad w linii\: {0}
+!Bad\ error\ line\:\ {0}=
-#: Editor.java:2089
-Bad\ file\ selected=Wybrano niepoprawny plik
+#: Editor.java:2136
+!Bad\ file\ selected=
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
-#: Editor.java:682
-Board=P\u0142ytka
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
@@ -147,23 +153,29 @@ Board=P\u0142ytka
#: ../../../processing/app/EditorStatus.java:472
!Board\:\ =
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
#: SerialMonitor.java:112
-Both\ NL\ &\ CR=Zar\u00f3wno NL jak i CR
+!Both\ NL\ &\ CR=
-#: Preferences.java:80
-Browse=Przegl\u0105daj
+#: Preferences.java:81
+!Browse=
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=Folder projektu nie zosta\u0142 odnaleziony lub nie m\u00f3g\u0142 zosta\u0107 zapisany
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
#: ../../../processing/app/Preferences.java:80
!Bulgarian=
-#: Editor.java:699
-Burn\ Bootloader=Wypal Bootloader
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Wypalanie bootloadera na p\u0142ytce (mo\u017ce to potrwa\u0107 chwil\u0119)\u2026
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
#: ../../../processing/app/Base.java:368
!Can't\ open\ source\ sketch\!=
@@ -171,80 +183,92 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Wypalanie b
#: ../../../processing/app/Preferences.java:92
!Canadian\ French=
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
-Cancel=Anuluj
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
-#: Sketch.java:459
-Cannot\ Rename=Nie mo\u017cna zmieni\u0107 nazwy
+#: Sketch.java:455
+!Cannot\ Rename=
#: SerialMonitor.java:112
-Carriage\ return=Powr\u00f3t do pocz\u0105tku linii (CR)
-
-#: Preferences.java:86
-Catalan=Katalo\u0144ski
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=Sprawd\u017a aktualizacje podczas uruchamiania
+!Carriage\ return=
#: Preferences.java:87
-Chinese\ Simplified=Chi\u0144ski uproszczony
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
!Chinese\ Traditional=
-#: Editor.java:514 Editor.java:1977
-Close=Zamknij
+#: Editor.java:521 Editor.java:2024
+!Close=
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
!Comment/Uncomment=
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
-Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=B\u0142\u0105d kompilatora, prze\u015blij ten kod do {0}
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Kompiluj\u0119 szkic...
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
#: EditorConsole.java:152
-Console\ Error=B\u0142\u0105d konsoli
+!Console\ Error=
-#: Editor.java:1143 Editor.java:2660
-Copy=Kopiuj
+#: Editor.java:1157 Editor.java:2707
+!Copy=
-#: Editor.java:1163 Editor.java:2676
-Copy\ as\ HTML=Kopiuj jako HTML
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
#: ../../../processing/app/EditorStatus.java:456
!Copy\ error=
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=Kopiuj dla Forum
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Nie mo\u017cna doda\u0107 ''{0}'' do szkicu.
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=Nie mo\u017cna przenie\u015b\u0107 do odpowiedniej lokalizacji.
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=Nie mo\u017cna utworzy\u0107 folderu szkicu.
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
-#: Editor.java:2159
-Could\ not\ create\ the\ sketch.=Nie mo\u017cna utworzy\u0107 szkicu.
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=Nie mo\u017cna usun\u0105\u0107 "{0}".
+!Could\ not\ delete\ "{0}".=
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Nie mo\u017cna by\u0142o usun\u0105\u0107 istniej\u0105cego pliku ''{0}''.
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
-Could\ not\ delete\ {0}=Nie mo\u017cna usun\u0105\u0107 {0}
+!Could\ not\ delete\ {0}=
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
@@ -258,140 +282,146 @@ Could\ not\ delete\ {0}=Nie mo\u017cna usun\u0105\u0107 {0}
#, java-format
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=Nie mog\u0119 otworzy\u0107 URL\n
+!Could\ not\ open\ the\ URL\n{0}=
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=Nie mog\u0119 otworzy\u0107\u00a0folderu\n{0}
+!Could\ not\ open\ the\ folder\n{0}=
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Nie mo\u017cna by\u0142o prawid\u0142owo ponownie zapisa\u0107 pliku. Mo\u017ce to by\u0107 pocz\u0105tek k\u0142opot\u00f3w,\ndlatego najlepiej skopiuj kod i przeklej go do innego edytora tekstu.
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
-#: Sketch.java:1810
-Could\ not\ re-save\ sketch=Nie mo\u017cna by\u0142o ponownie zapisa\u0107 szkicu
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nie mo\u017cna odczyta\u0107 ustawie\u0144 kolor\u00f3w szablonu.\nMusisz przeinstalowa\u0107 Processing.
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nie mo\u017cna odczyta\u0107 ustawie\u0144.\nMusisz przeinstalowa\u0107 Arduino.
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
-Could\ not\ read\ preferences\ from\ {0}=Nie mo\u017cna odczyta\u0107 preferencji z
+!Could\ not\ read\ preferences\ from\ {0}=
-#: Base.java:2196
+#: Base.java:2482
#, java-format
-Could\ not\ remove\ old\ version\ of\ {0}=Could not remove old version of {0}
+!Could\ not\ remove\ old\ version\ of\ {0}=
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=Nie mo\u017cna zmieni\u0107 nazwy "{0}" na "{1}"
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=Nie mo\u017cna zmieni\u0107 nazwy szkicu. (0)
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=Nie mo\u017cna zmieni\u0107 nazwy szkicu. (1)
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=Nie mo\u017cna zmieni\u0107 nazwy szkicu. (2)
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
-#: Base.java:2206
+#: Base.java:2492
#, java-format
-Could\ not\ replace\ {0}=Nie mo\u017cna zamieni\u0107 {0}
+!Could\ not\ replace\ {0}=
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=Nie mo\u017cna by\u0142o zarchiwizowa\u0107 szkicu
+!Couldn't\ archive\ sketch=
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=Nie mo\u017cna okre\u015bli\u0107 wielko\u015bci pliku\: {0}
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
-#: Sketch.java:620
-Couldn't\ do\ it=Nie mo\u017cna by\u0142o tego zrobi\u0107
+#: Sketch.java:616
+!Couldn't\ do\ it=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
#: ../../../processing/app/Preferences.java:82
!Croatian=
-#: Editor.java:1135 Editor.java:2652
-Cut=Wytnij
+#: Editor.java:1149 Editor.java:2699
+!Cut=
#: ../../../processing/app/Preferences.java:83
!Czech=
-#: Preferences.java:89
-Danish=Du\u0144ski
+#: Preferences.java:90
+!Danish=
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Zmniejsz wci\u0119cie
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
-#: Sketch.java:595 EditorHeader.java:314
-Delete=Usu\u0144
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Urz\u0105dzenie nie odpowiada, sprawd\u017a czy wybrano odpowiedni port szeregowy lub zresetuj p\u0142ytk\u0119 przed eksportowaniem szkicu
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=Odrzuci\u0107 wszystkie zmiany i prze\u0142adowa\u0107 szkic?
+!Discard\ all\ changes\ and\ reload\ sketch?=
-#: Editor.java:2017
-Don't\ Save=Nie zapisuj
+#: Editor.java:2064
+!Don't\ Save=
-#: Editor.java:2228 Editor.java:2264
-Done\ Saving.=Zapisano.
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
-#: Editor.java:2463
-Done\ burning\ bootloader.=Wypalanie bootloadera zako\u0144czone pomy\u015blnie.
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=Kompilowanie zako\u0144czone.
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
-#: Editor.java:2517
-Done\ printing.=Drukowanie zako\u0144czone.
+#: Editor.java:2564
+!Done\ printing.=
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=\u0141adowanie zako\u0144czone pomy\u015blnie.
-
-#: Preferences.java:90
-Dutch=Holenderski
-
-#: Editor.java:1116
-Edit=Edycja
-
-#: Preferences.java:354
-Editor\ font\ size\:\ =Wielko\u015b\u0107 czcionki edytora
-
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
#: Preferences.java:91
-English=Angielski
+!Dutch=
-#: Editor.java:1049
-Environment=\u015arodowiski
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
-Error=B\u0142\u0105d
+#: Editor.java:1130
+!Edit=
-#: Sketch.java:1069 Sketch.java:1092
-Error\ adding\ file=B\u0142\u0105d podczas dodawania pliku
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
-#: debug/Compiler.java:426
-Error\ compiling.=B\u0142\u0105d kompilacji
+#: Preferences.java:353
+!Editor\ language\:\ =
-#: Base.java:1433
-Error\ getting\ the\ Arduino\ data\ folder.=Problem z dost\u0119pem do folderu danych Arduino.
+#: Preferences.java:92
+!English=
-#: Serial.java:567
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+!Error=
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
#, java-format
-Error\ inside\ Serial.{0}()=B\u0142\u0105d w Serial.{0}()
+!Error\ inside\ Serial.{0}()=
#: ../../../processing/app/Base.java:1232
!Error\ loading\ libraries=
@@ -402,264 +432,274 @@ Error\ inside\ Serial.{0}()=B\u0142\u0105d w Serial.{0}()
#, java-format
!Error\ loading\ {0}=
-#: Serial.java:154
+#: Serial.java:181
#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=B\u0142\u0105d podczas otwierania portu szeregowego ''{0}''.
+!Error\ opening\ serial\ port\ ''{0}''.=
-#: Preferences.java:261
-Error\ reading\ preferences=B\u0142\u0105d odczytywania preferencji
+#: Preferences.java:277
+!Error\ reading\ preferences=
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=B\u0142\u0105d odczytywania pliku preferencji. Skasuj go (lub przenie\u015b)\n{0} i zrestartuj Arduino.
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
!Error\ starting\ discovery\ method\:\ =
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
!Error\ touching\ serial\ port\ ''{0}''.=
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=Wyst\u0105pi\u0142 b\u0142\u0105d podczas wypalania bootloadera.
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
#: ../../../processing/app/Editor.java:2555
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
#: SketchCode.java:83
#, java-format
-Error\ while\ loading\ code\ {0}=B\u0142\u0105d podczas wgrywania kodu {0}
+!Error\ while\ loading\ code\ {0}=
-#: Editor.java:2520
-Error\ while\ printing.=Wyst\u0105pi\u0142 b\u0142\u0105d podczas drukowania.
+#: Editor.java:2567
+!Error\ while\ printing.=
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
-#: Preferences.java:92
+#: Preferences.java:93
!Estonian=
-#: Editor.java:509
-Examples=Przyk\u0142ady
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksportowanie anulowane, zmiany musz\u0105 zosta\u0107 najpierw zapisane.
+#: Editor.java:516
+!Examples=
-#: Base.java:1814
-FAQ.html=FAQ.html
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
-#: Editor.java:484
-File=Plik
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+!File=
#: Preferences.java:94
-Filipino=Filipi\u0144ski
+!Filipino=
#: FindReplace.java:124 FindReplace.java:127
!Find=
-#: Editor.java:1235
-Find\ Next=Znajd\u017a nast\u0119pne
+#: Editor.java:1249
+!Find\ Next=
-#: Editor.java:1245
-Find\ Previous=Znajd\u017a wcze\u015bniejsze
+#: Editor.java:1259
+!Find\ Previous=
-#: Editor.java:1073 Editor.java:2728
-Find\ in\ Reference=Znajd\u017a w dokumentacji
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
-#: Editor.java:1220
-Find...=Znajd\u017a...
+#: Editor.java:1234
+!Find...=
#: FindReplace.java:80
-Find\:=Znajd\u017a
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=Napraw kodowanie i za\u0142aduj ponownie
+!Fix\ Encoding\ &\ Reload=
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-#: Preferences.java:93
-French=Francuski
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Cz\u0119sto zadawane pytania
-
#: Preferences.java:95
-Galician=Galijski
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
#: ../../../processing/app/Preferences.java:94
!Georgian=
-#: Preferences.java:96
-German=Niemiecki
-
-#: Editor.java:1041
-Getting\ Started=Jak zacz\u0105\u0107
-
#: Preferences.java:97
+!German=
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
!Greek=
-#: Base.java:1799
-Guide_Environment.html=Guide_Environment.html
+#: Base.java:2085
+!Guide_Environment.html=
-#: Base.java:1785
-Guide_MacOSX.html=Guide_MacOSX.html
+#: Base.java:2071
+!Guide_MacOSX.html=
-#: Base.java:1809
-Guide_Troubleshooting.html=Guide_Troubleshooting.html
+#: Base.java:2095
+!Guide_Troubleshooting.html=
-#: Base.java:1787
-Guide_Windows.html=Guide_Windows.html
+#: Base.java:2073
+!Guide_Windows.html=
#: ../../../processing/app/Preferences.java:95
!Hebrew=
-#: Editor.java:1002
-Help=Pomoc
+#: Editor.java:1015
+!Help=
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
!Hindi=
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Czy chcia\u0142by\u015b zachowa\u0107 ten plik \nprzed zmian\u0105 jego nazwy?
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=To troch\u0119 nielogiczne
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
-#: Preferences.java:98
+#: Preferences.java:100
!Hungarian=
#: FindReplace.java:96
-Ignore\ Case=Ignoruj
+!Ignore\ Case=
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Ignoruj b\u0142\u0119dn\u0105 nazw\u0119 szkicu
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
-#: Base.java:1132
+#: Base.java:1436
!Ignoring\ sketch\ with\ bad\ name=
-#: Editor.java:629
-Import\ Library...=Importuj bibliotek\u0119...
+#: Editor.java:636
+!Import\ Library...=
#: ../../../processing/app/Sketch.java:736
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Zwi\u0119ksz wci\u0119cie
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
-#: Preferences.java:99
+#: Preferences.java:101
!Indonesian=
#: ../../../processing/app/Base.java:1204
#, java-format
!Invalid\ library\ found\ in\ {0}\:\ {1}=
-#: Preferences.java:100
-Italian=W\u0142oski
-
-#: Preferences.java:101
-!Japanese=
-
#: Preferences.java:102
-!Korean=
+!Italian=
#: Preferences.java:103
-Latvian=Litewski
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+!Japanese=
#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/Sketch.java:1660
!Low\ memory\ available,\ stability\ problems\ may\ occur=
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
!Marathi=
-#: Base.java:1826
-Message=Wiadomo\u015b\u0107
+#: Base.java:2112
+!Message=
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Brakuje */ na ko\u0144cu /* komentarza */
+#: Editor.java:2156
+!Moving=
-#: Preferences.java:433
-More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Wi\u0119cej preferencji mo\u017ce by\u0107 edytowanych bezpo\u015brednio w pliku
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
-#: Editor.java:2109
-Moving=Przenosz\u0119
-
-#: Sketch.java:286
-Name\ for\ new\ file\:=Nazwa nowego pliku\:
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
-#: Editor.java:486 EditorToolbar.java:41
-New=Nowy
+#: EditorToolbar.java:41 Editor.java:493
+!New=
#: EditorToolbar.java:46
-New\ Editor\ Window=Nowe okno edytora
+!New\ Editor\ Window=
#: EditorHeader.java:292
-New\ Tab=Nowa zak\u0142adka
+!New\ Tab=
#: SerialMonitor.java:112
-Newline=Nowa linia (NL)
+!Newline=
#: EditorHeader.java:340
-Next\ Tab=Nast\u0119pna zak\u0142adka
+!Next\ Tab=
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
!No=
-#: debug/Compiler.java:79
-No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nie wybrano modelu p\u0142ytki; prosz\u0119 wybierz model z menu Narz\u0119dzia (Tools) > Model p\u0142ytki(Board).
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
!No\ changes\ necessary\ for\ Auto\ Format.=
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=\u017badne pliki nie zosta\u0142y dodane do szkicu.
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
#: Platform.java:167
-No\ launcher\ available=Brak dost\u0119pnego lounchera
+!No\ launcher\ available=
#: SerialMonitor.java:112
!No\ line\ ending=
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Naprawd\u0119, czas na odrobin\u0119 \u015bwie\u017cego powietrza.
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=Nie ma dokumentacji dla "{0}"
+!No\ reference\ available\ for\ "{0}"=
#: ../../../processing/app/Base.java:309
!No\ valid\ configured\ cores\ found\!\ Exiting...=
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=B\u0142\u0105d podczas ustawiania Look & Feel.
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-Nope=Nie
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
@@ -667,81 +707,87 @@ Nope=Nie
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
-OK=OK
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
-#: Editor.java:369 Sketch.java:996
-One\ file\ added\ to\ the\ sketch.=Jeden plik zosta\u0142 dodany do szkicu
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
#: EditorToolbar.java:41
-Open=Otw\u00f3rz
+!Open=
-#: Editor.java:2641
-Open\ URL=Otw\u00f3rz URL
+#: Editor.java:2688
+!Open\ URL=
-#: Base.java:633
-Open\ an\ Arduino\ sketch...=Otw\u00f3rz szkic Arduino...
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
#: EditorToolbar.java:46
-Open\ in\ Another\ Window=Otw\u00f3rz w nowym oknie
+!Open\ in\ Another\ Window=
-#: Editor.java:494 Base.java:903
-Open...=Otw\u00f3rz...
+#: Base.java:903 Editor.java:501
+!Open...=
-#: Editor.java:556
-Page\ Setup=Ustawienia strony
+#: Editor.java:563
+!Page\ Setup=
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
!Password\:=
-#: Editor.java:1175 Editor.java:2684
-Paste=Wklej
+#: Editor.java:1189 Editor.java:2731
+!Paste=
-#: Preferences.java:105
-Persian=Perski
+#: Preferences.java:109
+!Persian=
-#: debug/Compiler.java:465
-Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Zaimportuj bibliotek\u0119 SPI z Szkic (Sketch) > Importuj bibliotek\u0119 (Import Library).
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=Zainstaluj JDK 1.5 lub nowsze.
+#: Base.java:239
+!Please\ install\ JDK\ 1.5\ or\ later=
-#: Preferences.java:106
+#: Preferences.java:110
!Polish=
#: ../../../processing/app/Editor.java:718
!Port=
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
-#: Editor.java:576 Preferences.java:279
-Preferences=Preferencje
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
#: FindReplace.java:123 FindReplace.java:128
!Previous=
#: EditorHeader.java:326
-Previous\ Tab=Wcze\u015bniejsza zak\u0142adka
+!Previous\ Tab=
-#: Editor.java:564
-Print=Drukuj
+#: Editor.java:571
+!Print=
-#: Editor.java:2524
-Printing\ canceled.=Drukowanie anulowane.
+#: Editor.java:2571
+!Printing\ canceled.=
-#: Editor.java:2500
-Printing...=Drukuj\u0119...
+#: Editor.java:2547
+!Printing...=
-#: Base.java:1671
-Problem\ Opening\ Folder=Problem z otworzeniem folderu
+#: Base.java:1957
+!Problem\ Opening\ Folder=
-#: Base.java:1647
-Problem\ Opening\ URL=Problem z otworzeniem URL
+#: Base.java:1933
+!Problem\ Opening\ URL=
-#: Base.java:220
-Problem\ Setting\ the\ Platform=B\u0142\u0105d podczas ustawiania platformy
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
!Problem\ accessing\ board\ folder\ /www/sd=
@@ -749,41 +795,41 @@ Problem\ Setting\ the\ Platform=B\u0142\u0105d podczas ustawiania platformy
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
!Problem\ accessing\ files\ in\ folder\ =
-#: Base.java:1432
-Problem\ getting\ data\ folder=Problem z dost\u0119pem do folderu z danymi.
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=Wyst\u0105pi\u0142 problem podczas przenoszenia {0} do folderu projektu
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
#: debug/Uploader.java:209
-Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem z przesy\u0142aniem danych na p\u0142ytk\u0119. Sprawd\u017a http\://www.arduino.cc/en/Guide/Troubleshooting\#upload aby otrzyma\u0107 wi\u0119cej informacji.
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=Problem ze zmian\u0105 nazwy
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing mo\u017ce otwiera\u0107 tylko w\u0142asne szkice\ni inne pliki z rozszerzeniem .ino lub .pde
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
#: ../../../processing/app/I18n.java:86
!Processor=
-#: Editor.java:695
-Programmer=Programator
+#: Editor.java:704
+!Programmer=
-#: Editor.java:586 Base.java:782
-Quit=Wyj\u015bcie
+#: Base.java:783 Editor.java:593
+!Quit=
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
-Redo=Pon\u00f3w
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
-#: Editor.java:1065
-Reference=Dokumentacja
+#: Editor.java:1078
+!Reference=
#: EditorHeader.java:300
-Rename=Zmie\u0144 nazw\u0119
+!Rename=
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
!Replace=
#: FindReplace.java:122 FindReplace.java:129
@@ -792,56 +838,56 @@ Rename=Zmie\u0144 nazw\u0119
#: FindReplace.java:120 FindReplace.java:131
!Replace\ All=
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=Zamieni\u0107 istniej\u0105c\u0105 ju\u017c wersj\u0119 {0}?
+!Replace\ the\ existing\ version\ of\ {0}?=
#: FindReplace.java:81
-Replace\ with\:=Zamie\u0144
+!Replace\ with\:=
-#: Preferences.java:109
-Romanian=Rumu\u0144ski
+#: Preferences.java:113
+!Romanian=
-#: Preferences.java:110
+#: Preferences.java:114
!Russian=
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
-Save=Zapisz
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
-#: Editor.java:530
-Save\ As...=Zapisz jako...
+#: Editor.java:537
+!Save\ As...=
-#: Editor.java:2270
-Save\ Canceled.=Anulowano zapisywanie.
+#: Editor.java:2317
+!Save\ Canceled.=
-#: Editor.java:2420
-Save\ changes\ before\ export?=Zapisa\u0107 zmiany przed eksportowaniem?
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Zapisa\u0107 zmiany jako "{0}"?
+!Save\ changes\ to\ "{0}"?\ \ =
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Zapisz folder szkicu jako...
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
-#: Editor.java:2223 Editor.java:2261
-Saving...=Zapisuj\u0119...
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=Wybierz (albo utw\u00f3rz) folder szkic\u00f3w...
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
-#: Editor.java:1184 Editor.java:2692
-Select\ All=Zaznacz wszystko
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Wybierz obraz lub plik z innymi danymi do wklejenia do Twojego szkicu
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=Ustal now\u0105 lokalizcj\u0119 szkicownika
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
#: ../../../processing/app/debug/Compiler.java:146
!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
@@ -849,148 +895,158 @@ Select\ new\ sketchbook\ location=Ustal now\u0105 lokalizcj\u0119 szkicownika
#: SerialMonitor.java:93
!Send=
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Monitor portu szeregowego
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
-#: Serial.java:147
+#: Serial.java:174
#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port szeregowy ''{0}'' jest obecnie w uzyciu. Spr\u00f3buj zamkn\u0105\u0107 programy kt\u00f3re mog\u0105 go u\u017cywa\u0107.
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
-#: Serial.java:167
+#: Serial.java:194
#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port szeregowy ''{0}'' nie zosta\u0142 znaleziony. Czy wybra\u0142e\u015b prawid\u0142owy z menu Narz\u0119dzia (Tools) > Port szeregowy (Serial Port) ?
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port szeregowy {0} nie zosta\u0142 znaleziony.\nPon\u00f3wi\u0107 \u0142adowanie danych przez inny port?
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
-#: Base.java:1440
-Settings\ issues=Problem z ustawieniami
+#: Base.java:1681
+!Settings\ issues=
-#: Editor.java:634
-Show\ Sketch\ Folder=Poka\u017c folder szkicu
+#: Editor.java:641
+!Show\ Sketch\ Folder=
#: ../../../processing/app/EditorStatus.java:468
!Show\ verbose\ output\ during\ compilation=
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =Poka\u017c pe\u0142en raport podczas\:
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
-#: Editor.java:600
-Sketch=Szkic
+#: Editor.java:607
+!Sketch=
-#: Sketch.java:1796
-Sketch\ Disappeared=Szkic znikn\u0105\u0142
+#: Sketch.java:1754
+!Sketch\ Disappeared=
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=Szkic nie istnieje
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=Ten szkic jest oznaczony jako "Tylko do odczytu"
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
-#: Sketch.java:298
-Sketch\ is\ Untitled=Szkic nie ma nazwy
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
-#: Sketch.java:724
-Sketch\ is\ read-only=Ten szkic jest oznaczony jako "Tylko do odczytu"
+#: Sketch.java:720
+!Sketch\ is\ read-only=
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Szkic jest za du\u017cy; zobacz porady na http\://www.arduino.cc/en/Guide/Troubleshooting\#size w celu zmniejszenia go.
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
-#: Editor.java:503
-Sketchbook=Szkicownik
-
-#: Base.java:257
-Sketchbook\ folder\ disappeared=Folder szkicownika nie istnieje.
-
-#: Preferences.java:299
-Sketchbook\ location\:=Lokalizacja szkicownika
-
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Niekt\u00f3re pliki s\u0105 oznaczone jako "Tylko do odczytu", wi\u0119c musisz\nzachowa\u0107 szkic w innej lokalizacji i spr\u00f3bowa\u0107 ponownie.
-
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Niekt\u00f3re pliki s\u0105 oznaczone jako "Tylko do odczytu", wi\u0119c musisz\nzachowa\u0107 szkic w innej lokalizacji.
-
-#: Sketch.java:461
+#: ../../../processing/app/Sketch.java:1639
#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Szkic (lub folder) o nazwie "{0}" ju\u017c istnieje.
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
-#: Preferences.java:111
-Spanish=Hiszpa\u0144ski
+#: Editor.java:510
+!Sketchbook=
-#: Base.java:537
-Sunshine=S\u0142o\u0144ce\!
+#: Base.java:258
+!Sketchbook\ folder\ disappeared=
-#: Preferences.java:83
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
!System\ Default=
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
!Tamil=
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=S\u0142owo 'BYTE' nie jest ju\u017c wspierane.
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klasa Client zmieni\u0142a nazw\u0119 na EthernetClient.
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
-#: debug/Compiler.java:477
-The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klasa Server zmieni\u0142a nazw\u0119 na EthernetServer.
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klasa Udp zmieni\u0142a nazw\u0119 na EthernetUdp.
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Wyst\u0105pi\u0142 b\u0142\u0105d opisany poni\u017cej, Arduino powinno jednak pracowa\u0107 poprawnie.
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Plik "{0}" musi by\u0107 wewn\u0105trz\nfolderu szkicu o nazwie "{1}".\nUtw\u00f3rzy\u0107 folder, przenie\u015b\u0107 plik i kontynuowa\u0107?
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Plik g\u0142\u00f3wny nie mo\u017ce u\u017cywa\u0107 rozszerzenia.\n(By\u0107 mo\u017ce nadszed\u0142 czas aby\u015b zacz\u0105\u0142 u\u017cywa\u0107\n"prawdziwego" \u015brodowiska programistycznego?)
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=Nazwa nie mo\u017ce zaczyna\u0107 si\u0119 od kropki.
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Wybrany szkic nie istnieje.\nBy\u0107 mo\u017ce musisz zrestartowa\u0107 Arduino\naby od\u015bwie\u017cy\u0107\u00a0list\u0119 szkic\u00f3w.
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
-#: Base.java:1125
+#: Base.java:1430
#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Nazwa szkicu "{0}" nie mo\u017ce zosta\u0107 u\u017cyta.\nNazwy szkic\u00f3w mog\u0105 zawiera\u0107 jedynie podstawowe litery i cyfry\n(ASCII, bez spacji, nie mog\u0105 zaczyna\u0107 si\u0119 cyfr\u0105).\nAby pozby\u0107 si\u0119 tej wiadomo\u015bci, usu\u0144 szkic z\n{1}
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Folder szkicu znikn\u0105\u0142.\nPonowi\u0119 prob\u0119 aby zapisa\u0107 szkic w tym samym miejscu,\njednak wszystkie dane opr\u00f3cz kodu zostan\u0105 utracone.
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Nazwa pliku musia\u0142a by\u0107 zmieniona. Nazwy szkic\u00f3w mog\u0105 zawiera\u0107 jedynie\nznaki ASCII oraz liczby (ale nie mog\u0105 zaczyna\u0107 si\u0119 od liczby).\nPowinny r\u00f3wnie\u017c zawiera\u0107 mniej ni\u017c 64 znaki.
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
-#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Folder szkicownika (Sketchbook) nie istnieje.\nArduino spr\u00f3buje utworzy\u0107 folder szkicownika\nw domy\u015blnej lokalizacji je\u015bli to konieczne.\nPotem Arduino przestanie gada\u0107 o sobie\nw trzeciej osobie.
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ten plik ju\u017c zosta\u0142 skopiowany do miejsca\nz kt\u00f3rego chcesz go doda\u0107.\nNie zrobi\u0119 tego.
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
#: ../../../processing/app/EditorStatus.java:467
!This\ report\ would\ have\ more\ information\ with=
-#: Base.java:532
-Time\ for\ a\ Break=Czas na przerw\u0119
+#: Base.java:535
+!Time\ for\ a\ Break=
-#: Editor.java:656
-Tools=Narz\u0119dzia
+#: Editor.java:663
+!Tools=
-#: Editor.java:1057
-Troubleshooting=Rozwi\u0105zywanie problem\u00f3w
+#: Editor.java:1070
+!Troubleshooting=
#: ../../../processing/app/Preferences.java:117
!Turkish=
@@ -1009,7 +1065,7 @@ Troubleshooting=Rozwi\u0105zywanie problem\u00f3w
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+!Unable\ to\ connect\:\ retrying=
#: ../../../processing/app/Editor.java:2526
!Unable\ to\ connect\:\ wrong\ password?=
@@ -1017,214 +1073,213 @@ Troubleshooting=Rozwi\u0105zywanie problem\u00f3w
#: ../../../processing/app/Editor.java:2512
!Unable\ to\ open\ serial\ monitor=
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=Nierozpoznany rodzaj wyj\u0105tku\: {0}
+!Uncaught\ exception\ type\:\ {0}=
-#: Editor.java:1119 Editor.java:1341
-Undo=Cofnij
+#: Editor.java:1133 Editor.java:1355
+!Undo=
#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Brak okre\u015blonej platformy, brak dost\u0119pnego launchera.\nAby umo\u017cliwi\u0107 otwieranie URL oraz folder\u00f3w, dodaj lini\u0119\n"launcher\=/path/to/app" do pliku preferences.txt
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
#: UpdateCheck.java:111
-Update=Aktualizacja
+!Update=
-#: Preferences.java:412
-Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Aktualizuj rozszerzenie szkic\u00f3w podczas zapisywania (.pde -> .ino)
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
-#: Editor.java:538 EditorToolbar.java:41
-Upload=Za\u0142aduj
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Za\u0142aduj u\u017cywaj\u0105c programatora
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=\u0141adowanie anulowane.
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
#: ../../../processing/app/Sketch.java:1678
!Upload\ cancelled=
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=\u0141aduj\u0119 dane na p\u0142ytk\u0119\u2026
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
-#: Sketch.java:1661
-Uploading...=\u0141adowanie...
+#: Sketch.java:1622
+!Uploading...=
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Szukaj wed\u0142ug zaznaczenia
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
-#: Preferences.java:393
-Use\ external\ editor=U\u017cyj zewn\u0119trznego edytora
+#: Preferences.java:409
+!Use\ external\ editor=
#: EditorToolbar.java:41 EditorToolbar.java:46
-Verify=Weryfikuj
+!Verify=
-#: Editor.java:602
-Verify\ /\ Compile=Weryfikuj / Kompiluj
+#: Editor.java:609
+!Verify\ /\ Compile=
-#: Preferences.java:384
-Verify\ code\ after\ upload=Weryfikuj kod po za\u0142adowaniu
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
-#: Editor.java:1091
-Visit\ Arduino.cc=Odwied\u017a Arduino.cc
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
-#: Base.java:1842
-Warning=Ostrze\u017cenie
+#: Editor.java:1105
+!Visit\ Arduino.cc=
-#: debug/Compiler.java:501
-Wire.receive()\ has\ been\ renamed\ Wire.read().=Funkcja Wire.receive() zmieni\u0142a nazw\u0119 na Wire.read().
+#: Base.java:2128
+!Warning=
-#: debug/Compiler.java:495
-Wire.send()\ has\ been\ renamed\ Wire.write().=Funkcja Wire.send() zmieni\u0142a nazw\u0119 na Wire.write().
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
#: FindReplace.java:105
!Wrap\ Around=
#: debug/Uploader.java:213
-Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Wykryto inny mikrokontroler. Czy wybra\u0142e\u015b odpowiedni model p\u0142ytki z menu Narz\u0119dzia (Tools) > Model p\u0142ytki (Board)?
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
!Yes=
-#: Sketch.java:1078
-You\ can't\ fool\ me=Nie przechytrzysz mnie.
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nie mo\u017cesz u\u017cywa\u0107 pliku .cpp o tej samej nazwie co szkic.
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nie mo\u017cesz zmieni\u0107 nazwy szkicu na "{0}"\nponiewa\u017c szkic ju\u017c posiada plik .cpp o tej samej nazwie.
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nie mo\u017cesz zapisa\u0107 szkicu jako "{0}"\nponiewa\u017c szkic ju\u017c posiada plik .cpp o tej samej nazwie.
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nie mo\u017cesz zapisa\u0107 szkicu w folderze znajduj\u0105cym si\u0119\nw swoim \u015brodku. To by trwa\u0142o w niesko\u0144czono\u015b\u0107.
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
-#: Base.java:1602
-You\ forgot\ your\ sketchbook=Zapomnia\u0142e\u015b o folderze szkicownika
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
#: ../../../processing/app/AbstractMonitor.java:92
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Wykorzysta\u0142e\u015b limit auto-nazw szkicy\nna dzisiaj. Mo\u017ce pora na spacer?
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
!ZIP\ files\ or\ folders=
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
!Zip\ doesn't\ contain\ a\ library=
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" nie jest prawid\u0142owym rozszerzeniem.
+!".{0}"\ is\ not\ a\ valid\ extension.=
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" zawiera nierozpoznawalne znaki. Je\u017celi kod by\u0142 stworzony przy pomocy starszej wersji Processing, wejd\u017a do menu Tools -> Fix Encoding & Reload w celu zaktualizowania szkicu do u\u017cywania kodowania UTF-8. Je\u015bli to nie zadzia\u0142a, usu\u0144 wszystkie b\u0142\u0119dne znaki w celu pozbycia si\u0119 tego ostrze\u017cenia.
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
-#: debug/Compiler.java:466
-\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=Od wersji Arduino 0019, biblioteka Ethernet zale\u017cy od biblioteki SPI.\nWygl\u0105da na to \u017ce u\u017cywasz innej bilioteki r\u00f3wnie\u017c zale\u017cnej od biblioteki SPI.\n
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=Od wersji Arduino 1.0, s\u0142owo 'BYTE' nie jest wspierane.\nU\u017cyj prosz\u0119 funkcji Serial.write()\n
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nOd wersji Arduino 1.0, klasa Client z biblioteki Ethernet zmieni\u0142a nazw\u0119 na EthernetClient.\n\n
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nOd wersji Arduino 1.0, klasa Server z biblioteki Ethernet zmieni\u0142a nazw\u0119 na EthernetServer.\n\n
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nOd wersji 1.0, funkcja Wire.receive() zmieni\u0142a nazw\u0119 na Wire.read() zachowa\u0107 sp\u00f3jno\u015b\u0107 nazewnictwa z innymi bibliotekami.\n\n
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nOd wersji Arduino 1.0, funkcja Wire.send() zmieni\u0142a nazw\u0119 Wire.write() aby zachowa\u0107 sp\u00f3jno\u015b\u0107 nazewnictwa z innymi bibliotekami.\n\n
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
!baud=
-#: Preferences.java:373
-compilation\ =kompilacja
+#: Preferences.java:389
+!compilation\ =
#: ../../../processing/app/NetworkMonitor.java:111
!connected\!=
-#: Sketch.java:544
-createNewFile()\ returned\ false=funkcja createNewFile() zwr\u00f3ci\u0142a false
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
-#: Base.java:1804
-environment=\u015brodowisko
+#: Base.java:2090
+!environment=
-#: Editor.java:1094
-http\://arduino.cc/=http\://arduino.cc/
+#: Editor.java:1108
+!http\://arduino.cc/=
#: ../../../processing/app/debug/Compiler.java:49
!http\://github.com/arduino/Arduino/issues=
#: UpdateCheck.java:118
-http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
+!http\://www.arduino.cc/en/Main/Software=
#: UpdateCheck.java:53
-http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
+!http\://www.arduino.cc/latest.txt=
-#: Base.java:1789
-http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=ignorowanie b\u0142\u0119dnej wielko\u015bci czcionki {0}
+!ignoring\ invalid\ font\ size\ {0}=
-#: Base.java:1794
-index.html=index.html
+#: Base.java:2080
+!index.html=
-#: Editor.java:927 Editor.java:934
-name\ is\ null=nazwa jest null
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
-#: Base.java:1804
-platforms.html=platforms.html
+#: Base.java:2090
+!platforms.html=
-#: Serial.java:424
+#: Serial.java:451
#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Bufor bajtowy readBytesUntil() jest za ma\u0142y dla {0} bajt\u00f3w w\u0142\u0105cznie z char {1}
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
-#: Sketch.java:651
-removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. nie mo\u017cna znale\u017a\u0107 kodu
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
-#: Editor.java:923
-serialMenu\ is\ null=serialMenu jest null
+#: Editor.java:932
+!serialMenu\ is\ null=
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=port szeregowy {0} nie istnieje lub twoja p\u0142ytka nie jest pod\u0142\u0105czona
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
+#: Preferences.java:391
+!upload=
-#: Preferences.java:375
-upload=za\u0142aduj
-
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.={0} zosta\u0142o dodanych do szkicu
+!{0}\ files\ added\ to\ the\ sketch.=
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
-{0}\ returned\ {1}={0} zwr\u00f3ci\u0142 {1}
+!{0}\ returned\ {1}=
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
-{0}\ |\ Arduino\ {1}={0} | Arduino {1}
+!{0}\ |\ Arduino\ {1}=
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
-{0}.html={0}.html
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_pt.po b/app/src/processing/app/i18n/Resources_pt.po
new file mode 100644
index 000000000..bc17b293d
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_pt.po
@@ -0,0 +1,1857 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+msgid ""
+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: 2013-09-10 10:35+0000\n"
+"Last-Translator: cmaglie Closing the last open sketch will quit Arduino."
+msgstr ""
+
+#: Editor.java:2053
+msgid ""
+" If you don't "
+"save, your changes will be lost."
+msgstr ""
+
+#: Sketch.java:398
+#, java-format
+msgid "A file named \"{0}\" already exists in \"{1}\""
+msgstr ""
+
+#: Editor.java:2169
+#, java-format
+msgid "A folder named \"{0}\" already exists. Can't open sketch."
+msgstr ""
+
+#: Base.java:2690
+#, java-format
+msgid "A library named {0} already exists"
+msgstr ""
+
+#: UpdateCheck.java:103
+msgid ""
+"A new version of Arduino is available,\n"
+"would you like to visit the Arduino download page?"
+msgstr ""
+
+#: EditorConsole.java:153
+msgid ""
+"A problem occurred while trying to open the\n"
+"files used to store the console output."
+msgstr ""
+
+#: Editor.java:1116
+msgid "About Arduino"
+msgstr ""
+
+#: Editor.java:650
+msgid "Add File..."
+msgstr ""
+
+#: Base.java:963
+msgid "Add Library..."
+msgstr ""
+
+#: tools/FixEncoding.java:77
+msgid ""
+"An error occurred while trying to fix the file encoding.\n"
+"Do not attempt to save this sketch as it may overwrite\n"
+"the old version. Use Open to re-open the sketch and try again.\n"
+msgstr ""
+
+#: Base.java:228
+msgid ""
+"An unknown error occurred while trying to load\n"
+"platform-specific code for your machine."
+msgstr ""
+
+#: Preferences.java:85
+msgid "Arabic"
+msgstr ""
+
+#: Preferences.java:86
+msgid "Aragonese"
+msgstr ""
+
+#: tools/Archiver.java:48
+msgid "Archive Sketch"
+msgstr ""
+
+#: tools/Archiver.java:109
+msgid "Archive sketch as:"
+msgstr ""
+
+#: tools/Archiver.java:139
+msgid "Archive sketch canceled."
+msgstr ""
+
+#: tools/Archiver.java:75
+msgid ""
+"Archiving the sketch has been canceled because\n"
+"the sketch couldn't save properly."
+msgstr ""
+
+#: ../../../processing/app/I18n.java:83
+msgid "Arduino ARM (32-bits) Boards"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:82
+msgid "Arduino AVR Boards"
+msgstr ""
+
+#: Base.java:1682
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your settings."
+msgstr ""
+
+#: Base.java:1889
+msgid ""
+"Arduino cannot run because it could not\n"
+"create a folder to store your sketchbook."
+msgstr ""
+
+#: Base.java:240
+msgid ""
+"Arduino requires a full JDK (not just a JRE)\n"
+"to run. Please install JDK 1.5 or later.\n"
+"More information can be found in the reference."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:471
+msgid "Arduino: "
+msgstr ""
+
+#: Sketch.java:588
+#, java-format
+msgid "Are you sure you want to delete \"{0}\"?"
+msgstr ""
+
+#: Sketch.java:587
+msgid "Are you sure you want to delete this sketch?"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr ""
+
+#: tools/AutoFormat.java:91
+msgid "Auto Format"
+msgstr ""
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:931
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr ""
+
+#: tools/AutoFormat.java:922
+msgid "Auto Format Canceled: Too many right parentheses."
+msgstr ""
+
+#: tools/AutoFormat.java:944
+msgid "Auto Format finished."
+msgstr ""
+
+#: Preferences.java:439
+msgid "Automatically associate .ino files with Arduino"
+msgstr ""
+
+#: SerialMonitor.java:110
+msgid "Autoscroll"
+msgstr ""
+
+#: Editor.java:2619
+#, java-format
+msgid "Bad error line: {0}"
+msgstr ""
+
+#: Editor.java:2136
+msgid "Bad file selected"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+msgid "Board"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+msgid ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:472
+msgid "Board: "
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Both NL & CR"
+msgstr ""
+
+#: Preferences.java:81
+msgid "Browse"
+msgstr ""
+
+#: Sketch.java:1392 Sketch.java:1423
+msgid "Build folder disappeared or could not be written"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:80
+msgid "Bulgarian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr ""
+
+#: Editor.java:708
+msgid "Burn Bootloader"
+msgstr ""
+
+#: Editor.java:2504
+msgid "Burning bootloader to I/O Board (this may take a minute)..."
+msgstr ""
+
+#: ../../../processing/app/Base.java:368
+msgid "Can't open source sketch!"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:92
+msgid "Canadian French"
+msgstr ""
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+msgid "Cancel"
+msgstr ""
+
+#: Sketch.java:455
+msgid "Cannot Rename"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Carriage return"
+msgstr ""
+
+#: Preferences.java:87
+msgid "Catalan"
+msgstr ""
+
+#: Preferences.java:419
+msgid "Check for updates on startup"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr ""
+
+#: Preferences.java:88
+msgid "Chinese Simplified"
+msgstr ""
+
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr ""
+
+#: Editor.java:521 Editor.java:2024
+msgid "Close"
+msgstr ""
+
+#: Editor.java:1208 Editor.java:2749
+msgid "Comment/Uncomment"
+msgstr ""
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+msgid "Compiler error, please submit this code to {0}"
+msgstr ""
+
+#: Sketch.java:1608 Editor.java:1890
+msgid "Compiling sketch..."
+msgstr ""
+
+#: EditorConsole.java:152
+msgid "Console Error"
+msgstr ""
+
+#: Editor.java:1157 Editor.java:2707
+msgid "Copy"
+msgstr ""
+
+#: Editor.java:1177 Editor.java:2723
+msgid "Copy as HTML"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:456
+msgid "Copy error"
+msgstr ""
+
+#: Editor.java:1165 Editor.java:2715
+msgid "Copy for Forum"
+msgstr ""
+
+#: Sketch.java:1089
+#, java-format
+msgid "Could not add ''{0}'' to the sketch."
+msgstr ""
+
+#: Editor.java:2188
+msgid "Could not copy to a proper location."
+msgstr ""
+
+#: Editor.java:2179
+msgid "Could not create the sketch folder."
+msgstr ""
+
+#: Editor.java:2206
+msgid "Could not create the sketch."
+msgstr ""
+
+#: Sketch.java:617
+#, java-format
+msgid "Could not delete \"{0}\"."
+msgstr ""
+
+#: Sketch.java:1066
+#, java-format
+msgid "Could not delete the existing ''{0}'' file."
+msgstr ""
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+msgid "Could not delete {0}"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+msgid "Could not find tool {0}"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+msgid "Could not find tool {0} from package {1}"
+msgstr ""
+
+#: Base.java:1934
+#, java-format
+msgid ""
+"Could not open the URL\n"
+"{0}"
+msgstr ""
+
+#: Base.java:1958
+#, java-format
+msgid ""
+"Could not open the folder\n"
+"{0}"
+msgstr ""
+
+#: Sketch.java:1769
+msgid ""
+"Could not properly re-save the sketch. You may be in trouble at this point,\n"
+"and it might be time to copy and paste your code to another text editor."
+msgstr ""
+
+#: Sketch.java:1768
+msgid "Could not re-save sketch"
+msgstr ""
+
+#: Theme.java:52
+msgid ""
+"Could not read color theme settings.\n"
+"You'll need to reinstall Processing."
+msgstr ""
+
+#: Preferences.java:219
+msgid ""
+"Could not read default settings.\n"
+"You'll need to reinstall Arduino."
+msgstr ""
+
+#: Preferences.java:258
+#, java-format
+msgid "Could not read preferences from {0}"
+msgstr ""
+
+#: Base.java:2482
+#, java-format
+msgid "Could not remove old version of {0}"
+msgstr ""
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+msgid "Could not rename \"{0}\" to \"{1}\""
+msgstr ""
+
+#: Sketch.java:475
+msgid "Could not rename the sketch. (0)"
+msgstr ""
+
+#: Sketch.java:496
+msgid "Could not rename the sketch. (1)"
+msgstr ""
+
+#: Sketch.java:503
+msgid "Could not rename the sketch. (2)"
+msgstr ""
+
+#: Base.java:2492
+#, java-format
+msgid "Could not replace {0}"
+msgstr ""
+
+#: tools/Archiver.java:74
+msgid "Couldn't archive sketch"
+msgstr ""
+
+#: Sketch.java:1647
+msgid "Couldn't determine program size: {0}"
+msgstr ""
+
+#: Sketch.java:616
+msgid "Couldn't do it"
+msgstr ""
+
+#: debug/BasicUploader.java:209
+msgid ""
+"Couldn't find a Board on the selected port. Check that you have the correct "
+"port selected. If it is correct, try pressing the board's reset button "
+"after initiating the upload."
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:82
+msgid "Croatian"
+msgstr ""
+
+#: Editor.java:1149 Editor.java:2699
+msgid "Cut"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:83
+msgid "Czech"
+msgstr ""
+
+#: Preferences.java:90
+msgid "Danish"
+msgstr ""
+
+#: Editor.java:1224 Editor.java:2765
+msgid "Decrease Indent"
+msgstr ""
+
+#: EditorHeader.java:314 Sketch.java:591
+msgid "Delete"
+msgstr ""
+
+#: debug/Uploader.java:199
+msgid ""
+"Device is not responding, check the right serial port is selected or RESET "
+"the board right before exporting"
+msgstr ""
+
+#: tools/FixEncoding.java:57
+msgid "Discard all changes and reload sketch?"
+msgstr ""
+
+#: Editor.java:2064
+msgid "Don't Save"
+msgstr ""
+
+#: Editor.java:2275 Editor.java:2311
+msgid "Done Saving."
+msgstr ""
+
+#: Editor.java:2510
+msgid "Done burning bootloader."
+msgstr ""
+
+#: Editor.java:1911 Editor.java:1928
+msgid "Done compiling."
+msgstr ""
+
+#: Editor.java:2564
+msgid "Done printing."
+msgstr ""
+
+#: Editor.java:2395 Editor.java:2431
+msgid "Done uploading."
+msgstr ""
+
+#: Preferences.java:91
+msgid "Dutch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr ""
+
+#: Editor.java:1130
+msgid "Edit"
+msgstr ""
+
+#: Preferences.java:370
+msgid "Editor font size: "
+msgstr ""
+
+#: Preferences.java:353
+msgid "Editor language: "
+msgstr ""
+
+#: Preferences.java:92
+msgid "English"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr ""
+
+#: Editor.java:1062
+msgid "Environment"
+msgstr ""
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+msgid "Error"
+msgstr ""
+
+#: Sketch.java:1065 Sketch.java:1088
+msgid "Error adding file"
+msgstr ""
+
+#: debug/Compiler.java:369
+msgid "Error compiling."
+msgstr ""
+
+#: Base.java:1674
+msgid "Error getting the Arduino data folder."
+msgstr ""
+
+#: Serial.java:593
+#, java-format
+msgid "Error inside Serial.{0}()"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1232
+msgid "Error loading libraries"
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+msgid "Error loading {0}"
+msgstr ""
+
+#: Serial.java:181
+#, java-format
+msgid "Error opening serial port ''{0}''."
+msgstr ""
+
+#: Preferences.java:277
+msgid "Error reading preferences"
+msgstr ""
+
+#: Preferences.java:279
+#, java-format
+msgid ""
+"Error reading the preferences file. Please delete (or move)\n"
+"{0} and restart Arduino."
+msgstr ""
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+msgid "Error starting discovery method: "
+msgstr ""
+
+#: Serial.java:125
+#, java-format
+msgid "Error touching serial port ''{0}''."
+msgstr ""
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+msgid "Error while burning bootloader."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2555
+msgid "Error while burning bootloader: missing '{0}' configuration parameter"
+msgstr ""
+
+#: SketchCode.java:83
+#, java-format
+msgid "Error while loading code {0}"
+msgstr ""
+
+#: Editor.java:2567
+msgid "Error while printing."
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+msgid "Error while uploading: missing '{0}' configuration parameter"
+msgstr ""
+
+#: Preferences.java:93
+msgid "Estonian"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr ""
+
+#: Editor.java:516
+msgid "Examples"
+msgstr ""
+
+#: Editor.java:2482
+msgid "Export canceled, changes must first be saved."
+msgstr ""
+
+#: Base.java:2100
+msgid "FAQ.html"
+msgstr ""
+
+#: Editor.java:491
+msgid "File"
+msgstr ""
+
+#: Preferences.java:94
+msgid "Filipino"
+msgstr ""
+
+#: FindReplace.java:124 FindReplace.java:127
+msgid "Find"
+msgstr ""
+
+#: Editor.java:1249
+msgid "Find Next"
+msgstr ""
+
+#: Editor.java:1259
+msgid "Find Previous"
+msgstr ""
+
+#: Editor.java:1086 Editor.java:2775
+msgid "Find in Reference"
+msgstr ""
+
+#: Editor.java:1234
+msgid "Find..."
+msgstr ""
+
+#: FindReplace.java:80
+msgid "Find:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr ""
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+msgid "Fix Encoding & Reload"
+msgstr ""
+
+#: Base.java:1851
+msgid ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr ""
+
+#: debug/BasicUploader.java:80
+msgid "Forcing reset using 1200bps open/close on port "
+msgstr ""
+
+#: Preferences.java:95
+msgid "French"
+msgstr ""
+
+#: Editor.java:1097
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#: Preferences.java:96
+msgid "Galician"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:94
+msgid "Georgian"
+msgstr ""
+
+#: Preferences.java:97
+msgid "German"
+msgstr ""
+
+#: Editor.java:1054
+msgid "Getting Started"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr ""
+
+#: Preferences.java:98
+msgid "Greek"
+msgstr ""
+
+#: Base.java:2085
+msgid "Guide_Environment.html"
+msgstr ""
+
+#: Base.java:2071
+msgid "Guide_MacOSX.html"
+msgstr ""
+
+#: Base.java:2095
+msgid "Guide_Troubleshooting.html"
+msgstr ""
+
+#: Base.java:2073
+msgid "Guide_Windows.html"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:95
+msgid "Hebrew"
+msgstr ""
+
+#: Editor.java:1015
+msgid "Help"
+msgstr ""
+
+#: Preferences.java:99
+msgid "Hindi"
+msgstr ""
+
+#: Sketch.java:295
+msgid ""
+"How about saving the sketch first \n"
+"before trying to rename it?"
+msgstr ""
+
+#: Sketch.java:882
+msgid "How very Borges of you"
+msgstr ""
+
+#: Preferences.java:100
+msgid "Hungarian"
+msgstr ""
+
+#: FindReplace.java:96
+msgid "Ignore Case"
+msgstr ""
+
+#: Base.java:1058
+msgid "Ignoring bad library name"
+msgstr ""
+
+#: Base.java:1436
+msgid "Ignoring sketch with bad name"
+msgstr ""
+
+#: Editor.java:636
+msgid "Import Library..."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:736
+msgid ""
+"In Arduino 1.0, the default file extension has changed\n"
+"from .pde to .ino. New sketches (including those created\n"
+"by \"Save-As\") will use the new extension. The extension\n"
+"of existing sketches will be updated on save, but you can\n"
+"disable this in the Preferences dialog.\n"
+"\n"
+"Save sketch and update its extension?"
+msgstr ""
+
+#: Editor.java:1216 Editor.java:2757
+msgid "Increase Indent"
+msgstr ""
+
+#: Preferences.java:101
+msgid "Indonesian"
+msgstr ""
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+msgid "Invalid library found in {0}: {1}"
+msgstr ""
+
+#: Preferences.java:102
+msgid "Italian"
+msgstr ""
+
+#: Preferences.java:103
+msgid "Japanese"
+msgstr ""
+
+#: Preferences.java:104
+msgid "Korean"
+msgstr ""
+
+#: Preferences.java:105
+msgid "Latvian"
+msgstr ""
+
+#: Base.java:2699
+msgid "Library added to your libraries. Check \"Import library\" menu"
+msgstr ""
+
+#: Preferences.java:106
+msgid "Lithuaninan"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1660
+msgid "Low memory available, stability problems may occur"
+msgstr ""
+
+#: Preferences.java:107
+msgid "Marathi"
+msgstr ""
+
+#: Base.java:2112
+msgid "Message"
+msgstr ""
+
+#: Sketch.java:1712
+msgid "Missing the */ from the end of a /* comment */"
+msgstr ""
+
+#: Preferences.java:449
+msgid "More preferences can be edited directly in the file"
+msgstr ""
+
+#: Editor.java:2156
+msgid "Moving"
+msgstr ""
+
+#: Sketch.java:282
+msgid "Name for new file:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+msgid "Network upload using programmer not supported"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:493
+msgid "New"
+msgstr ""
+
+#: EditorToolbar.java:46
+msgid "New Editor Window"
+msgstr ""
+
+#: EditorHeader.java:292
+msgid "New Tab"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "Newline"
+msgstr ""
+
+#: EditorHeader.java:340
+msgid "Next Tab"
+msgstr ""
+
+#: Preferences.java:78 UpdateCheck.java:108
+msgid "No"
+msgstr ""
+
+#: debug/Compiler.java:126
+msgid "No board selected; please choose a board from the Tools > Board menu."
+msgstr ""
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+msgid "No changes necessary for Auto Format."
+msgstr ""
+
+#: Editor.java:373
+msgid "No files were added to the sketch."
+msgstr ""
+
+#: Platform.java:167
+msgid "No launcher available"
+msgstr ""
+
+#: SerialMonitor.java:112
+msgid "No line ending"
+msgstr ""
+
+#: Base.java:541
+msgid "No really, time for some fresh air for you."
+msgstr ""
+
+#: Editor.java:1872
+#, java-format
+msgid "No reference available for \"{0}\""
+msgstr ""
+
+#: ../../../processing/app/Base.java:309
+msgid "No valid configured cores found! Exiting..."
+msgstr ""
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr ""
+
+#: Base.java:191
+msgid "Non-fatal error while setting the Look & Feel."
+msgstr ""
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+msgid "Nope"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:108
+msgid "Norwegian Bokmål"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1656
+msgid ""
+"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
+"for tips on reducing your footprint."
+msgstr ""
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+msgid "OK"
+msgstr ""
+
+#: Sketch.java:992 Editor.java:376
+msgid "One file added to the sketch."
+msgstr ""
+
+#: EditorToolbar.java:41
+msgid "Open"
+msgstr ""
+
+#: Editor.java:2688
+msgid "Open URL"
+msgstr ""
+
+#: Base.java:636
+msgid "Open an Arduino sketch..."
+msgstr ""
+
+#: EditorToolbar.java:46
+msgid "Open in Another Window"
+msgstr ""
+
+#: Base.java:903 Editor.java:501
+msgid "Open..."
+msgstr ""
+
+#: Editor.java:563
+msgid "Page Setup"
+msgstr ""
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+msgid "Password:"
+msgstr ""
+
+#: Editor.java:1189 Editor.java:2731
+msgid "Paste"
+msgstr ""
+
+#: Preferences.java:109
+msgid "Persian"
+msgstr ""
+
+#: debug/Compiler.java:408
+msgid "Please import the SPI library from the Sketch > Import Library menu."
+msgstr ""
+
+#: Base.java:239
+msgid "Please install JDK 1.5 or later"
+msgstr ""
+
+#: Preferences.java:110
+msgid "Polish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:718
+msgid "Port"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr ""
+
+#: Preferences.java:295 Editor.java:583
+msgid "Preferences"
+msgstr ""
+
+#: FindReplace.java:123 FindReplace.java:128
+msgid "Previous"
+msgstr ""
+
+#: EditorHeader.java:326
+msgid "Previous Tab"
+msgstr ""
+
+#: Editor.java:571
+msgid "Print"
+msgstr ""
+
+#: Editor.java:2571
+msgid "Printing canceled."
+msgstr ""
+
+#: Editor.java:2547
+msgid "Printing..."
+msgstr ""
+
+#: Base.java:1957
+msgid "Problem Opening Folder"
+msgstr ""
+
+#: Base.java:1933
+msgid "Problem Opening URL"
+msgstr ""
+
+#: Base.java:227
+msgid "Problem Setting the Platform"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+msgid "Problem accessing board folder /www/sd"
+msgstr ""
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+msgid "Problem accessing files in folder "
+msgstr ""
+
+#: Base.java:1673
+msgid "Problem getting data folder"
+msgstr ""
+
+#: Sketch.java:1467
+#, java-format
+msgid "Problem moving {0} to the build folder"
+msgstr ""
+
+#: debug/Uploader.java:209
+msgid ""
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
+msgstr ""
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+msgid "Problem with rename"
+msgstr ""
+
+#: Editor.java:2137
+msgid ""
+"Processing can only open its own sketches\n"
+"and other files ending in .ino or .pde"
+msgstr ""
+
+#: ../../../processing/app/I18n.java:86
+msgid "Processor"
+msgstr ""
+
+#: Editor.java:704
+msgid "Programmer"
+msgstr ""
+
+#: Base.java:783 Editor.java:593
+msgid "Quit"
+msgstr ""
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+msgid "Redo"
+msgstr ""
+
+#: Editor.java:1078
+msgid "Reference"
+msgstr ""
+
+#: EditorHeader.java:300
+msgid "Rename"
+msgstr ""
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+msgid "Replace"
+msgstr ""
+
+#: FindReplace.java:122 FindReplace.java:129
+msgid "Replace & Find"
+msgstr ""
+
+#: FindReplace.java:120 FindReplace.java:131
+msgid "Replace All"
+msgstr ""
+
+#: Sketch.java:1043
+#, java-format
+msgid "Replace the existing version of {0}?"
+msgstr ""
+
+#: FindReplace.java:81
+msgid "Replace with:"
+msgstr ""
+
+#: Preferences.java:113
+msgid "Romanian"
+msgstr ""
+
+#: Preferences.java:114
+msgid "Russian"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+msgid "Save"
+msgstr ""
+
+#: Editor.java:537
+msgid "Save As..."
+msgstr ""
+
+#: Editor.java:2317
+msgid "Save Canceled."
+msgstr ""
+
+#: Editor.java:2467
+msgid "Save changes before export?"
+msgstr ""
+
+#: Editor.java:2020
+#, java-format
+msgid "Save changes to \"{0}\"? "
+msgstr ""
+
+#: Sketch.java:825
+msgid "Save sketch folder as..."
+msgstr ""
+
+#: Editor.java:2270 Editor.java:2308
+msgid "Saving..."
+msgstr ""
+
+#: Base.java:1909
+msgid "Select (or create new) folder for sketches..."
+msgstr ""
+
+#: Editor.java:1198 Editor.java:2739
+msgid "Select All"
+msgstr ""
+
+#: Base.java:2636
+msgid "Select a zip file or a folder containing the library you'd like to add"
+msgstr ""
+
+#: Sketch.java:975
+msgid "Select an image or other data file to copy to your sketch"
+msgstr ""
+
+#: Preferences.java:330
+msgid "Select new sketchbook location"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:146
+msgid "Selected board depends on '{0}' core (not installed)."
+msgstr ""
+
+#: SerialMonitor.java:93
+msgid "Send"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+msgid "Serial Monitor"
+msgstr ""
+
+#: Serial.java:174
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quiting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:121
+#, java-format
+msgid ""
+"Serial port ''{0}'' already in use. Try quitting any programs that may be "
+"using it."
+msgstr ""
+
+#: Serial.java:194
+#, java-format
+msgid ""
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr ""
+
+#: Editor.java:2343
+#, java-format
+msgid ""
+"Serial port {0} not found.\n"
+"Retry the upload with another serial port?"
+msgstr ""
+
+#: Base.java:1681
+msgid "Settings issues"
+msgstr ""
+
+#: Editor.java:641
+msgid "Show Sketch Folder"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:468
+msgid "Show verbose output during compilation"
+msgstr ""
+
+#: Preferences.java:387
+msgid "Show verbose output during: "
+msgstr ""
+
+#: Editor.java:607
+msgid "Sketch"
+msgstr ""
+
+#: Sketch.java:1754
+msgid "Sketch Disappeared"
+msgstr ""
+
+#: Base.java:1411
+msgid "Sketch Does Not Exist"
+msgstr ""
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+msgid "Sketch is Read-Only"
+msgstr ""
+
+#: Sketch.java:294
+msgid "Sketch is Untitled"
+msgstr ""
+
+#: Sketch.java:720
+msgid "Sketch is read-only"
+msgstr ""
+
+#: Sketch.java:1653
+msgid ""
+"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
+"tips on reducing it."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr ""
+
+#: Editor.java:510
+msgid "Sketchbook"
+msgstr ""
+
+#: Base.java:258
+msgid "Sketchbook folder disappeared"
+msgstr ""
+
+#: Preferences.java:315
+msgid "Sketchbook location:"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr ""
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save the sketch in another location,\n"
+"and try again."
+msgstr ""
+
+#: Sketch.java:721
+msgid ""
+"Some files are marked \"read-only\", so you'll\n"
+"need to re-save this sketch to another location."
+msgstr ""
+
+#: Sketch.java:457
+#, java-format
+msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
+msgstr ""
+
+#: Preferences.java:115
+msgid "Spanish"
+msgstr ""
+
+#: Base.java:540
+msgid "Sunshine"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr ""
+
+#: Preferences.java:84
+msgid "System Default"
+msgstr ""
+
+#: Preferences.java:116
+msgid "Tamil"
+msgstr ""
+
+#: debug/Compiler.java:414
+msgid "The 'BYTE' keyword is no longer supported."
+msgstr ""
+
+#: debug/Compiler.java:426
+msgid "The Client class has been renamed EthernetClient."
+msgstr ""
+
+#: debug/Compiler.java:420
+msgid "The Server class has been renamed EthernetServer."
+msgstr ""
+
+#: debug/Compiler.java:432
+msgid "The Udp class has been renamed EthernetUdp."
+msgstr ""
+
+#: Base.java:192
+msgid "The error message follows, however Arduino should run fine."
+msgstr ""
+
+#: Editor.java:2147
+#, java-format
+msgid ""
+"The file \"{0}\" needs to be inside\n"
+"a sketch folder named \"{1}\".\n"
+"Create this folder, move the file, and continue?"
+msgstr ""
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+msgid ""
+"The library \"{0}\" cannot be used.\n"
+"Library names must contain only basic letters and numbers.\n"
+"(ASCII only and no spaces, and it cannot start with a number)"
+msgstr ""
+
+#: Sketch.java:374
+msgid ""
+"The main file can't use an extension.\n"
+"(It may be time for your to graduate to a\n"
+"\"real\" programming environment)"
+msgstr ""
+
+#: Sketch.java:356
+msgid "The name cannot start with a period."
+msgstr ""
+
+#: Base.java:1412
+msgid ""
+"The selected sketch no longer exists.\n"
+"You may need to restart Arduino to update\n"
+"the sketchbook menu."
+msgstr ""
+
+#: Base.java:1430
+#, java-format
+msgid ""
+"The sketch \"{0}\" cannot be used.\n"
+"Sketch names must contain only basic letters and numbers\n"
+"(ASCII-only with no spaces, and it cannot start with a number).\n"
+"To get rid of this message, remove the sketch from\n"
+"{1}"
+msgstr ""
+
+#: Sketch.java:1755
+msgid ""
+"The sketch folder has disappeared.\n"
+" Will attempt to re-save in the same location,\n"
+"but anything besides the code will be lost."
+msgstr ""
+
+#: Sketch.java:2018
+msgid ""
+"The sketch name had to be modified. Sketch names can only consist\n"
+"of ASCII characters and numbers (but cannot start with a number).\n"
+"They should also be less less than 64 characters long."
+msgstr ""
+
+#: Base.java:259
+msgid ""
+"The sketchbook folder no longer exists.\n"
+"Arduino will switch to the default sketchbook\n"
+"location, and create a new sketchbook folder if\n"
+"necessary. Arduino will then stop talking about\n"
+"himself in the third person."
+msgstr ""
+
+#: Sketch.java:1075
+msgid ""
+"This file has already been copied to the\n"
+"location from which where you're trying to add it.\n"
+"I ain't not doin nuthin'."
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:467
+msgid "This report would have more information with"
+msgstr ""
+
+#: Base.java:535
+msgid "Time for a Break"
+msgstr ""
+
+#: Editor.java:663
+msgid "Tools"
+msgstr ""
+
+#: Editor.java:1070
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:117
+msgid "Turkish"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2507
+msgid "Type board password to access its console"
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1673
+msgid "Type board password to upload a new sketch"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:118
+msgid "Ukrainian"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+msgid "Unable to connect: is the sketch using the bridge?"
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:130
+msgid "Unable to connect: retrying"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2526
+msgid "Unable to connect: wrong password?"
+msgstr ""
+
+#: ../../../processing/app/Editor.java:2512
+msgid "Unable to open serial monitor"
+msgstr ""
+
+#: Sketch.java:1432
+#, java-format
+msgid "Uncaught exception type: {0}"
+msgstr ""
+
+#: Editor.java:1133 Editor.java:1355
+msgid "Undo"
+msgstr ""
+
+#: Platform.java:168
+msgid ""
+"Unspecified platform, no launcher available.\n"
+"To enable opening URLs or folders, add a \n"
+"\"launcher=/path/to/app\" line to preferences.txt"
+msgstr ""
+
+#: UpdateCheck.java:111
+msgid "Update"
+msgstr ""
+
+#: Preferences.java:428
+msgid "Update sketch files to new extension on save (.pde -> .ino)"
+msgstr ""
+
+#: EditorToolbar.java:41 Editor.java:545
+msgid "Upload"
+msgstr ""
+
+#: EditorToolbar.java:46 Editor.java:553
+msgid "Upload Using Programmer"
+msgstr ""
+
+#: Editor.java:2403 Editor.java:2439
+msgid "Upload canceled."
+msgstr ""
+
+#: ../../../processing/app/Sketch.java:1678
+msgid "Upload cancelled"
+msgstr ""
+
+#: Editor.java:2378
+msgid "Uploading to I/O Board..."
+msgstr ""
+
+#: Sketch.java:1622
+msgid "Uploading..."
+msgstr ""
+
+#: Editor.java:1269
+msgid "Use Selection For Find"
+msgstr ""
+
+#: Preferences.java:409
+msgid "Use external editor"
+msgstr ""
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+msgid "Verify"
+msgstr ""
+
+#: Editor.java:609
+msgid "Verify / Compile"
+msgstr ""
+
+#: Preferences.java:400
+msgid "Verify code after upload"
+msgstr ""
+
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr ""
+
+#: Editor.java:1105
+msgid "Visit Arduino.cc"
+msgstr ""
+
+#: Base.java:2128
+msgid "Warning"
+msgstr ""
+
+#: debug/Compiler.java:444
+msgid "Wire.receive() has been renamed Wire.read()."
+msgstr ""
+
+#: debug/Compiler.java:438
+msgid "Wire.send() has been renamed Wire.write()."
+msgstr ""
+
+#: FindReplace.java:105
+msgid "Wrap Around"
+msgstr ""
+
+#: debug/Uploader.java:213
+msgid ""
+"Wrong microcontroller found. Did you select the right board from the Tools "
+"> Board menu?"
+msgstr ""
+
+#: Preferences.java:77 UpdateCheck.java:108
+msgid "Yes"
+msgstr ""
+
+#: Sketch.java:1074
+msgid "You can't fool me"
+msgstr ""
+
+#: Sketch.java:411
+msgid "You can't have a .cpp file with the same name as the sketch."
+msgstr ""
+
+#: Sketch.java:421
+msgid ""
+"You can't rename the sketch to \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:861
+msgid ""
+"You can't save the sketch as \"{0}\"\n"
+"because the sketch already has a .cpp file with that name."
+msgstr ""
+
+#: Sketch.java:883
+msgid ""
+"You cannot save the sketch into a folder\n"
+"inside itself. This would go on forever."
+msgstr ""
+
+#: Base.java:1888
+msgid "You forgot your sketchbook"
+msgstr ""
+
+#: ../../../processing/app/AbstractMonitor.java:92
+msgid ""
+"You've pressed {0} but nothing was sent. Should you select a line ending?"
+msgstr ""
+
+#: Base.java:536
+msgid ""
+"You've reached the limit for auto naming of new sketches\n"
+"for the day. How about going for a walk instead?"
+msgstr ""
+
+#: Base.java:2638
+msgid "ZIP files or folders"
+msgstr ""
+
+#: Base.java:2661
+msgid "Zip doesn't contain a library"
+msgstr ""
+
+#: Sketch.java:364
+#, java-format
+msgid "\".{0}\" is not a valid extension."
+msgstr ""
+
+#: SketchCode.java:258
+#, java-format
+msgid ""
+"\"{0}\" contains unrecognized characters.If this code was created with an "
+"older version of Processing,you may need to use Tools -> Fix Encoding & "
+"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
+"todelete the bad characters to get rid of this warning."
+msgstr ""
+
+#: debug/Compiler.java:409
+msgid ""
+"\n"
+"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:415
+msgid ""
+"\n"
+"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
+"Please use Serial.write() instead.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:427
+msgid ""
+"\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:421
+msgid ""
+"\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:433
+msgid ""
+"\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:445
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: debug/Compiler.java:439
+msgid ""
+"\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
+"\n"
+msgstr ""
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+msgid "baud"
+msgstr ""
+
+#: Preferences.java:389
+msgid "compilation "
+msgstr ""
+
+#: ../../../processing/app/NetworkMonitor.java:111
+msgid "connected!"
+msgstr ""
+
+#: Sketch.java:540
+msgid "createNewFile() returned false"
+msgstr ""
+
+#: ../../../processing/app/EditorStatus.java:469
+msgid "enabled in File > Preferences."
+msgstr ""
+
+#: Base.java:2090
+msgid "environment"
+msgstr ""
+
+#: Editor.java:1108
+msgid "http://arduino.cc/"
+msgstr ""
+
+#: ../../../processing/app/debug/Compiler.java:49
+msgid "http://github.com/arduino/Arduino/issues"
+msgstr ""
+
+#: UpdateCheck.java:118
+msgid "http://www.arduino.cc/en/Main/Software"
+msgstr ""
+
+#: UpdateCheck.java:53
+msgid "http://www.arduino.cc/latest.txt"
+msgstr ""
+
+#: Base.java:2075
+msgid "http://www.arduino.cc/playground/Learning/Linux"
+msgstr ""
+
+#: Preferences.java:625
+#, java-format
+msgid "ignoring invalid font size {0}"
+msgstr ""
+
+#: Base.java:2080
+msgid "index.html"
+msgstr ""
+
+#: Editor.java:936 Editor.java:943
+msgid "name is null"
+msgstr ""
+
+#: Base.java:2090
+msgid "platforms.html"
+msgstr ""
+
+#: Serial.java:451
+#, java-format
+msgid ""
+"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
+"including char {1}"
+msgstr ""
+
+#: Sketch.java:647
+msgid "removeCode: internal error.. could not find code"
+msgstr ""
+
+#: Editor.java:932
+msgid "serialMenu is null"
+msgstr ""
+
+#: debug/Uploader.java:195
+#, java-format
+msgid ""
+"the selected serial port {0} does not exist or your board is not connected"
+msgstr ""
+
+#: Preferences.java:391
+msgid "upload"
+msgstr ""
+
+#: Editor.java:380
+#, java-format
+msgid "{0} files added to the sketch."
+msgstr ""
+
+#: debug/Compiler.java:365
+#, java-format
+msgid "{0} returned {1}"
+msgstr ""
+
+#: Editor.java:2213
+#, java-format
+msgid "{0} | Arduino {1}"
+msgstr ""
+
+#: Editor.java:1874
+#, java-format
+msgid "{0}.html"
+msgstr ""
diff --git a/app/src/processing/app/i18n/Resources_pt.properties b/app/src/processing/app/i18n/Resources_pt.properties
new file mode 100644
index 000000000..21f3d1d79
--- /dev/null
+++ b/app/src/processing/app/i18n/Resources_pt.properties
@@ -0,0 +1,1285 @@
+# English translations for PACKAGE package.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-09-10 10\:35+0000\nLast-Translator\: cmaglie Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=
+
+#: Editor.java:2053
+!\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
+
+#: Sketch.java:398
+#, java-format
+!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
+
+#: Editor.java:2169
+#, java-format
+!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
+
+#: Base.java:2690
+#, java-format
+!A\ library\ named\ {0}\ already\ exists=
+
+#: UpdateCheck.java:103
+!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
+
+#: EditorConsole.java:153
+!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=
+
+#: Editor.java:1116
+!About\ Arduino=
+
+#: Editor.java:650
+!Add\ File...=
+
+#: Base.java:963
+!Add\ Library...=
+
+#: tools/FixEncoding.java:77
+!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
+
+#: Base.java:228
+!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
+
+#: Preferences.java:85
+!Arabic=
+
+#: Preferences.java:86
+!Aragonese=
+
+#: tools/Archiver.java:48
+!Archive\ Sketch=
+
+#: tools/Archiver.java:109
+!Archive\ sketch\ as\:=
+
+#: tools/Archiver.java:139
+!Archive\ sketch\ canceled.=
+
+#: tools/Archiver.java:75
+!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
+
+#: ../../../processing/app/I18n.java:83
+!Arduino\ ARM\ (32-bits)\ Boards=
+
+#: ../../../processing/app/I18n.java:82
+!Arduino\ AVR\ Boards=
+
+#: Base.java:1682
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
+
+#: Base.java:1889
+!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
+
+#: Base.java:240
+!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=
+
+#: ../../../processing/app/EditorStatus.java:471
+!Arduino\:\ =
+
+#: Sketch.java:588
+#, java-format
+!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
+
+#: Sketch.java:587
+!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
+
+#: ../../../processing/app/Preferences.java:137
+!Armenian=
+
+#: ../../../processing/app/Preferences.java:138
+!Asturian=
+
+#: tools/AutoFormat.java:91
+!Auto\ Format=
+
+#: tools/AutoFormat.java:934
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=
+
+#: tools/AutoFormat.java:925
+!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=
+
+#: tools/AutoFormat.java:931
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=
+
+#: tools/AutoFormat.java:922
+!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=
+
+#: tools/AutoFormat.java:944
+!Auto\ Format\ finished.=
+
+#: Preferences.java:439
+!Automatically\ associate\ .ino\ files\ with\ Arduino=
+
+#: SerialMonitor.java:110
+!Autoscroll=
+
+#: Editor.java:2619
+#, java-format
+!Bad\ error\ line\:\ {0}=
+
+#: Editor.java:2136
+!Bad\ file\ selected=
+
+#: ../../../processing/app/Preferences.java:139
+!Belarusian=
+
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
+!Board=
+
+#: ../../../processing/app/debug/TargetBoard.java:42
+#, java-format
+!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+
+#: ../../../processing/app/EditorStatus.java:472
+!Board\:\ =
+
+#: ../../../processing/app/Preferences.java:140
+!Bosnian=
+
+#: SerialMonitor.java:112
+!Both\ NL\ &\ CR=
+
+#: Preferences.java:81
+!Browse=
+
+#: Sketch.java:1392 Sketch.java:1423
+!Build\ folder\ disappeared\ or\ could\ not\ be\ written=
+
+#: ../../../processing/app/Preferences.java:80
+!Bulgarian=
+
+#: ../../../processing/app/Preferences.java:141
+!Burmese\ (Myanmar)=
+
+#: Editor.java:708
+!Burn\ Bootloader=
+
+#: Editor.java:2504
+!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
+
+#: ../../../processing/app/Base.java:368
+!Can't\ open\ source\ sketch\!=
+
+#: ../../../processing/app/Preferences.java:92
+!Canadian\ French=
+
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
+!Cancel=
+
+#: Sketch.java:455
+!Cannot\ Rename=
+
+#: SerialMonitor.java:112
+!Carriage\ return=
+
+#: Preferences.java:87
+!Catalan=
+
+#: Preferences.java:419
+!Check\ for\ updates\ on\ startup=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (China)=
+
+#: ../../../processing/app/Preferences.java:142
+!Chinese\ (Hong\ Kong)=
+
+#: ../../../processing/app/Preferences.java:144
+!Chinese\ (Taiwan)=
+
+#: ../../../processing/app/Preferences.java:143
+!Chinese\ (Taiwan)\ (Big5)=
+
+#: Preferences.java:88
+!Chinese\ Simplified=
+
+#: Preferences.java:89
+!Chinese\ Traditional=
+
+#: Editor.java:521 Editor.java:2024
+!Close=
+
+#: Editor.java:1208 Editor.java:2749
+!Comment/Uncomment=
+
+#: debug/Compiler.java:49 debug/Uploader.java:45
+#, java-format
+!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=
+
+#: Sketch.java:1608 Editor.java:1890
+!Compiling\ sketch...=
+
+#: EditorConsole.java:152
+!Console\ Error=
+
+#: Editor.java:1157 Editor.java:2707
+!Copy=
+
+#: Editor.java:1177 Editor.java:2723
+!Copy\ as\ HTML=
+
+#: ../../../processing/app/EditorStatus.java:456
+!Copy\ error=
+
+#: Editor.java:1165 Editor.java:2715
+!Copy\ for\ Forum=
+
+#: Sketch.java:1089
+#, java-format
+!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
+
+#: Editor.java:2188
+!Could\ not\ copy\ to\ a\ proper\ location.=
+
+#: Editor.java:2179
+!Could\ not\ create\ the\ sketch\ folder.=
+
+#: Editor.java:2206
+!Could\ not\ create\ the\ sketch.=
+
+#: Sketch.java:617
+#, java-format
+!Could\ not\ delete\ "{0}".=
+
+#: Sketch.java:1066
+#, java-format
+!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
+
+#: Base.java:2533 Base.java:2556
+#, java-format
+!Could\ not\ delete\ {0}=
+
+#: ../../../processing/app/debug/TargetPlatform.java:74
+#, java-format
+!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
+#, java-format
+!Could\ not\ find\ tool\ {0}=
+
+#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
+#, java-format
+!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+
+#: Base.java:1934
+#, java-format
+!Could\ not\ open\ the\ URL\n{0}=
+
+#: Base.java:1958
+#, java-format
+!Could\ not\ open\ the\ folder\n{0}=
+
+#: Sketch.java:1769
+!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
+
+#: Sketch.java:1768
+!Could\ not\ re-save\ sketch=
+
+#: Theme.java:52
+!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=
+
+#: Preferences.java:219
+!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
+
+#: Preferences.java:258
+#, java-format
+!Could\ not\ read\ preferences\ from\ {0}=
+
+#: Base.java:2482
+#, java-format
+!Could\ not\ remove\ old\ version\ of\ {0}=
+
+#: Sketch.java:483 Sketch.java:528
+#, java-format
+!Could\ not\ rename\ "{0}"\ to\ "{1}"=
+
+#: Sketch.java:475
+!Could\ not\ rename\ the\ sketch.\ (0)=
+
+#: Sketch.java:496
+!Could\ not\ rename\ the\ sketch.\ (1)=
+
+#: Sketch.java:503
+!Could\ not\ rename\ the\ sketch.\ (2)=
+
+#: Base.java:2492
+#, java-format
+!Could\ not\ replace\ {0}=
+
+#: tools/Archiver.java:74
+!Couldn't\ archive\ sketch=
+
+#: Sketch.java:1647
+!Couldn't\ determine\ program\ size\:\ {0}=
+
+#: Sketch.java:616
+!Couldn't\ do\ it=
+
+#: debug/BasicUploader.java:209
+!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+
+#: ../../../processing/app/Preferences.java:82
+!Croatian=
+
+#: Editor.java:1149 Editor.java:2699
+!Cut=
+
+#: ../../../processing/app/Preferences.java:83
+!Czech=
+
+#: Preferences.java:90
+!Danish=
+
+#: Editor.java:1224 Editor.java:2765
+!Decrease\ Indent=
+
+#: EditorHeader.java:314 Sketch.java:591
+!Delete=
+
+#: debug/Uploader.java:199
+!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
+
+#: tools/FixEncoding.java:57
+!Discard\ all\ changes\ and\ reload\ sketch?=
+
+#: Editor.java:2064
+!Don't\ Save=
+
+#: Editor.java:2275 Editor.java:2311
+!Done\ Saving.=
+
+#: Editor.java:2510
+!Done\ burning\ bootloader.=
+
+#: Editor.java:1911 Editor.java:1928
+!Done\ compiling.=
+
+#: Editor.java:2564
+!Done\ printing.=
+
+#: Editor.java:2395 Editor.java:2431
+!Done\ uploading.=
+
+#: Preferences.java:91
+!Dutch=
+
+#: ../../../processing/app/Preferences.java:144
+!Dutch\ (Netherlands)=
+
+#: Editor.java:1130
+!Edit=
+
+#: Preferences.java:370
+!Editor\ font\ size\:\ =
+
+#: Preferences.java:353
+!Editor\ language\:\ =
+
+#: Preferences.java:92
+!English=
+
+#: ../../../processing/app/Preferences.java:145
+!English\ (United\ Kingdom)=
+
+#: Editor.java:1062
+!Environment=
+
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
+!Error=
+
+#: Sketch.java:1065 Sketch.java:1088
+!Error\ adding\ file=
+
+#: debug/Compiler.java:369
+!Error\ compiling.=
+
+#: Base.java:1674
+!Error\ getting\ the\ Arduino\ data\ folder.=
+
+#: Serial.java:593
+#, java-format
+!Error\ inside\ Serial.{0}()=
+
+#: ../../../processing/app/Base.java:1232
+!Error\ loading\ libraries=
+
+#: ../../../processing/app/debug/TargetPlatform.java:95
+#: ../../../processing/app/debug/TargetPlatform.java:106
+#: ../../../processing/app/debug/TargetPlatform.java:117
+#, java-format
+!Error\ loading\ {0}=
+
+#: Serial.java:181
+#, java-format
+!Error\ opening\ serial\ port\ ''{0}''.=
+
+#: Preferences.java:277
+!Error\ reading\ preferences=
+
+#: Preferences.java:279
+#, java-format
+!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
+
+#: ../../../cc/arduino/packages/DiscoveryManager.java:25
+!Error\ starting\ discovery\ method\:\ =
+
+#: Serial.java:125
+#, java-format
+!Error\ touching\ serial\ port\ ''{0}''.=
+
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+!Error\ while\ burning\ bootloader.=
+
+#: ../../../processing/app/Editor.java:2555
+!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: SketchCode.java:83
+#, java-format
+!Error\ while\ loading\ code\ {0}=
+
+#: Editor.java:2567
+!Error\ while\ printing.=
+
+#: ../../../processing/app/Editor.java:2409
+#: ../../../processing/app/Editor.java:2449
+!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+
+#: Preferences.java:93
+!Estonian=
+
+#: ../../../processing/app/Preferences.java:146
+!Estonian\ (Estonia)=
+
+#: Editor.java:516
+!Examples=
+
+#: Editor.java:2482
+!Export\ canceled,\ changes\ must\ first\ be\ saved.=
+
+#: Base.java:2100
+!FAQ.html=
+
+#: Editor.java:491
+!File=
+
+#: Preferences.java:94
+!Filipino=
+
+#: FindReplace.java:124 FindReplace.java:127
+!Find=
+
+#: Editor.java:1249
+!Find\ Next=
+
+#: Editor.java:1259
+!Find\ Previous=
+
+#: Editor.java:1086 Editor.java:2775
+!Find\ in\ Reference=
+
+#: Editor.java:1234
+!Find...=
+
+#: FindReplace.java:80
+!Find\:=
+
+#: ../../../processing/app/Preferences.java:147
+!Finnish=
+
+#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
+#: tools/FixEncoding.java:79
+!Fix\ Encoding\ &\ Reload=
+
+#: Base.java:1851
+!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+
+#: debug/BasicUploader.java:80
+!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
+
+#: Preferences.java:95
+!French=
+
+#: Editor.java:1097
+!Frequently\ Asked\ Questions=
+
+#: Preferences.java:96
+!Galician=
+
+#: ../../../processing/app/Preferences.java:94
+!Georgian=
+
+#: Preferences.java:97
+!German=
+
+#: Editor.java:1054
+!Getting\ Started=
+
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
+
+#: Preferences.java:98
+!Greek=
+
+#: Base.java:2085
+!Guide_Environment.html=
+
+#: Base.java:2071
+!Guide_MacOSX.html=
+
+#: Base.java:2095
+!Guide_Troubleshooting.html=
+
+#: Base.java:2073
+!Guide_Windows.html=
+
+#: ../../../processing/app/Preferences.java:95
+!Hebrew=
+
+#: Editor.java:1015
+!Help=
+
+#: Preferences.java:99
+!Hindi=
+
+#: Sketch.java:295
+!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
+
+#: Sketch.java:882
+!How\ very\ Borges\ of\ you=
+
+#: Preferences.java:100
+!Hungarian=
+
+#: FindReplace.java:96
+!Ignore\ Case=
+
+#: Base.java:1058
+!Ignoring\ bad\ library\ name=
+
+#: Base.java:1436
+!Ignoring\ sketch\ with\ bad\ name=
+
+#: Editor.java:636
+!Import\ Library...=
+
+#: ../../../processing/app/Sketch.java:736
+!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
+
+#: Editor.java:1216 Editor.java:2757
+!Increase\ Indent=
+
+#: Preferences.java:101
+!Indonesian=
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+!Invalid\ library\ found\ in\ {0}\:\ {1}=
+
+#: Preferences.java:102
+!Italian=
+
+#: Preferences.java:103
+!Japanese=
+
+#: Preferences.java:104
+!Korean=
+
+#: Preferences.java:105
+!Latvian=
+
+#: Base.java:2699
+!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
+
+#: Preferences.java:106
+!Lithuaninan=
+
+#: ../../../processing/app/Sketch.java:1660
+!Low\ memory\ available,\ stability\ problems\ may\ occur=
+
+#: Preferences.java:107
+!Marathi=
+
+#: Base.java:2112
+!Message=
+
+#: Sketch.java:1712
+!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=
+
+#: Preferences.java:449
+!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
+
+#: Editor.java:2156
+!Moving=
+
+#: Sketch.java:282
+!Name\ for\ new\ file\:=
+
+#: ../../../processing/app/Preferences.java:149
+!Nepali=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+!Network\ upload\ using\ programmer\ not\ supported=
+
+#: EditorToolbar.java:41 Editor.java:493
+!New=
+
+#: EditorToolbar.java:46
+!New\ Editor\ Window=
+
+#: EditorHeader.java:292
+!New\ Tab=
+
+#: SerialMonitor.java:112
+!Newline=
+
+#: EditorHeader.java:340
+!Next\ Tab=
+
+#: Preferences.java:78 UpdateCheck.java:108
+!No=
+
+#: debug/Compiler.java:126
+!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=
+
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+!No\ changes\ necessary\ for\ Auto\ Format.=
+
+#: Editor.java:373
+!No\ files\ were\ added\ to\ the\ sketch.=
+
+#: Platform.java:167
+!No\ launcher\ available=
+
+#: SerialMonitor.java:112
+!No\ line\ ending=
+
+#: Base.java:541
+!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
+
+#: Editor.java:1872
+#, java-format
+!No\ reference\ available\ for\ "{0}"=
+
+#: ../../../processing/app/Base.java:309
+!No\ valid\ configured\ cores\ found\!\ Exiting...=
+
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
+
+#: Base.java:191
+!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=
+
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+!Nope=
+
+#: ../../../processing/app/Preferences.java:108
+!Norwegian\ Bokm\u00e5l=
+
+#: ../../../processing/app/Sketch.java:1656
+!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
+!OK=
+
+#: Sketch.java:992 Editor.java:376
+!One\ file\ added\ to\ the\ sketch.=
+
+#: EditorToolbar.java:41
+!Open=
+
+#: Editor.java:2688
+!Open\ URL=
+
+#: Base.java:636
+!Open\ an\ Arduino\ sketch...=
+
+#: EditorToolbar.java:46
+!Open\ in\ Another\ Window=
+
+#: Base.java:903 Editor.java:501
+!Open...=
+
+#: Editor.java:563
+!Page\ Setup=
+
+#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
+!Password\:=
+
+#: Editor.java:1189 Editor.java:2731
+!Paste=
+
+#: Preferences.java:109
+!Persian=
+
+#: debug/Compiler.java:408
+!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
+
+#: Base.java:239
+!Please\ install\ JDK\ 1.5\ or\ later=
+
+#: Preferences.java:110
+!Polish=
+
+#: ../../../processing/app/Editor.java:718
+!Port=
+
+#: ../../../processing/app/Preferences.java:151
+!Portugese=
+
+#: ../../../processing/app/Preferences.java:127
+!Portuguese\ (Brazil)=
+
+#: ../../../processing/app/Preferences.java:128
+!Portuguese\ (Portugal)=
+
+#: Preferences.java:295 Editor.java:583
+!Preferences=
+
+#: FindReplace.java:123 FindReplace.java:128
+!Previous=
+
+#: EditorHeader.java:326
+!Previous\ Tab=
+
+#: Editor.java:571
+!Print=
+
+#: Editor.java:2571
+!Printing\ canceled.=
+
+#: Editor.java:2547
+!Printing...=
+
+#: Base.java:1957
+!Problem\ Opening\ Folder=
+
+#: Base.java:1933
+!Problem\ Opening\ URL=
+
+#: Base.java:227
+!Problem\ Setting\ the\ Platform=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
+!Problem\ accessing\ board\ folder\ /www/sd=
+
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
+!Problem\ accessing\ files\ in\ folder\ =
+
+#: Base.java:1673
+!Problem\ getting\ data\ folder=
+
+#: Sketch.java:1467
+#, java-format
+!Problem\ moving\ {0}\ to\ the\ build\ folder=
+
+#: debug/Uploader.java:209
+!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
+
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+!Problem\ with\ rename=
+
+#: Editor.java:2137
+!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
+
+#: ../../../processing/app/I18n.java:86
+!Processor=
+
+#: Editor.java:704
+!Programmer=
+
+#: Base.java:783 Editor.java:593
+!Quit=
+
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
+!Redo=
+
+#: Editor.java:1078
+!Reference=
+
+#: EditorHeader.java:300
+!Rename=
+
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
+!Replace=
+
+#: FindReplace.java:122 FindReplace.java:129
+!Replace\ &\ Find=
+
+#: FindReplace.java:120 FindReplace.java:131
+!Replace\ All=
+
+#: Sketch.java:1043
+#, java-format
+!Replace\ the\ existing\ version\ of\ {0}?=
+
+#: FindReplace.java:81
+!Replace\ with\:=
+
+#: Preferences.java:113
+!Romanian=
+
+#: Preferences.java:114
+!Russian=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
+!Save=
+
+#: Editor.java:537
+!Save\ As...=
+
+#: Editor.java:2317
+!Save\ Canceled.=
+
+#: Editor.java:2467
+!Save\ changes\ before\ export?=
+
+#: Editor.java:2020
+#, java-format
+!Save\ changes\ to\ "{0}"?\ \ =
+
+#: Sketch.java:825
+!Save\ sketch\ folder\ as...=
+
+#: Editor.java:2270 Editor.java:2308
+!Saving...=
+
+#: Base.java:1909
+!Select\ (or\ create\ new)\ folder\ for\ sketches...=
+
+#: Editor.java:1198 Editor.java:2739
+!Select\ All=
+
+#: Base.java:2636
+!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+
+#: Sketch.java:975
+!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
+
+#: Preferences.java:330
+!Select\ new\ sketchbook\ location=
+
+#: ../../../processing/app/debug/Compiler.java:146
+!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+
+#: SerialMonitor.java:93
+!Send=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+!Serial\ Monitor=
+
+#: Serial.java:174
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:121
+#, java-format
+!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+
+#: Serial.java:194
+#, java-format
+!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
+
+#: Editor.java:2343
+#, java-format
+!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
+
+#: Base.java:1681
+!Settings\ issues=
+
+#: Editor.java:641
+!Show\ Sketch\ Folder=
+
+#: ../../../processing/app/EditorStatus.java:468
+!Show\ verbose\ output\ during\ compilation=
+
+#: Preferences.java:387
+!Show\ verbose\ output\ during\:\ =
+
+#: Editor.java:607
+!Sketch=
+
+#: Sketch.java:1754
+!Sketch\ Disappeared=
+
+#: Base.java:1411
+!Sketch\ Does\ Not\ Exist=
+
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+!Sketch\ is\ Read-Only=
+
+#: Sketch.java:294
+!Sketch\ is\ Untitled=
+
+#: Sketch.java:720
+!Sketch\ is\ read-only=
+
+#: Sketch.java:1653
+!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
+
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
+
+#: Editor.java:510
+!Sketchbook=
+
+#: Base.java:258
+!Sketchbook\ folder\ disappeared=
+
+#: Preferences.java:315
+!Sketchbook\ location\:=
+
+#: ../../../processing/app/Preferences.java:152
+!Slovenian=
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
+
+#: Sketch.java:721
+!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
+
+#: Sketch.java:457
+#, java-format
+!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
+
+#: Preferences.java:115
+!Spanish=
+
+#: Base.java:540
+!Sunshine=
+
+#: ../../../processing/app/Preferences.java:153
+!Swedish=
+
+#: Preferences.java:84
+!System\ Default=
+
+#: Preferences.java:116
+!Tamil=
+
+#: debug/Compiler.java:414
+!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
+
+#: debug/Compiler.java:426
+!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
+
+#: debug/Compiler.java:420
+!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
+
+#: debug/Compiler.java:432
+!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
+
+#: Base.java:192
+!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=
+
+#: Editor.java:2147
+#, java-format
+!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
+
+#: Base.java:1054 Base.java:2674
+#, java-format
+!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
+
+#: Sketch.java:374
+!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
+
+#: Sketch.java:356
+!The\ name\ cannot\ start\ with\ a\ period.=
+
+#: Base.java:1412
+!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
+
+#: Base.java:1430
+#, java-format
+!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
+
+#: Sketch.java:1755
+!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
+
+#: Sketch.java:2018
+!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=
+
+#: Base.java:259
+!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
+
+#: Sketch.java:1075
+!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
+
+#: ../../../processing/app/EditorStatus.java:467
+!This\ report\ would\ have\ more\ information\ with=
+
+#: Base.java:535
+!Time\ for\ a\ Break=
+
+#: Editor.java:663
+!Tools=
+
+#: Editor.java:1070
+!Troubleshooting=
+
+#: ../../../processing/app/Preferences.java:117
+!Turkish=
+
+#: ../../../processing/app/Editor.java:2507
+!Type\ board\ password\ to\ access\ its\ console=
+
+#: ../../../processing/app/Sketch.java:1673
+!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+
+#: ../../../processing/app/Preferences.java:118
+!Ukrainian=
+
+#: ../../../processing/app/Editor.java:2524
+#: ../../../processing/app/NetworkMonitor.java:145
+!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+
+#: ../../../processing/app/NetworkMonitor.java:130
+!Unable\ to\ connect\:\ retrying=
+
+#: ../../../processing/app/Editor.java:2526
+!Unable\ to\ connect\:\ wrong\ password?=
+
+#: ../../../processing/app/Editor.java:2512
+!Unable\ to\ open\ serial\ monitor=
+
+#: Sketch.java:1432
+#, java-format
+!Uncaught\ exception\ type\:\ {0}=
+
+#: Editor.java:1133 Editor.java:1355
+!Undo=
+
+#: Platform.java:168
+!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
+
+#: UpdateCheck.java:111
+!Update=
+
+#: Preferences.java:428
+!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
+
+#: EditorToolbar.java:41 Editor.java:545
+!Upload=
+
+#: EditorToolbar.java:46 Editor.java:553
+!Upload\ Using\ Programmer=
+
+#: Editor.java:2403 Editor.java:2439
+!Upload\ canceled.=
+
+#: ../../../processing/app/Sketch.java:1678
+!Upload\ cancelled=
+
+#: Editor.java:2378
+!Uploading\ to\ I/O\ Board...=
+
+#: Sketch.java:1622
+!Uploading...=
+
+#: Editor.java:1269
+!Use\ Selection\ For\ Find=
+
+#: Preferences.java:409
+!Use\ external\ editor=
+
+#: EditorToolbar.java:41 EditorToolbar.java:46
+!Verify=
+
+#: Editor.java:609
+!Verify\ /\ Compile=
+
+#: Preferences.java:400
+!Verify\ code\ after\ upload=
+
+#: ../../../processing/app/Preferences.java:154
+!Vietnamese=
+
+#: Editor.java:1105
+!Visit\ Arduino.cc=
+
+#: Base.java:2128
+!Warning=
+
+#: debug/Compiler.java:444
+!Wire.receive()\ has\ been\ renamed\ Wire.read().=
+
+#: debug/Compiler.java:438
+!Wire.send()\ has\ been\ renamed\ Wire.write().=
+
+#: FindReplace.java:105
+!Wrap\ Around=
+
+#: debug/Uploader.java:213
+!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
+
+#: Preferences.java:77 UpdateCheck.java:108
+!Yes=
+
+#: Sketch.java:1074
+!You\ can't\ fool\ me=
+
+#: Sketch.java:411
+!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
+
+#: Sketch.java:421
+!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:861
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+
+#: Sketch.java:883
+!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
+
+#: Base.java:1888
+!You\ forgot\ your\ sketchbook=
+
+#: ../../../processing/app/AbstractMonitor.java:92
+!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+
+#: Base.java:536
+!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
+
+#: Base.java:2638
+!ZIP\ files\ or\ folders=
+
+#: Base.java:2661
+!Zip\ doesn't\ contain\ a\ library=
+
+#: Sketch.java:364
+#, java-format
+!".{0}"\ is\ not\ a\ valid\ extension.=
+
+#: SketchCode.java:258
+#, java-format
+!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
+
+#: debug/Compiler.java:409
+!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
+
+#: debug/Compiler.java:415
+!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
+
+#: debug/Compiler.java:427
+!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
+
+#: debug/Compiler.java:421
+!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
+
+#: debug/Compiler.java:433
+!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+
+#: debug/Compiler.java:445
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: debug/Compiler.java:439
+!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
+
+#: SerialMonitor.java:130 SerialMonitor.java:133
+!baud=
+
+#: Preferences.java:389
+!compilation\ =
+
+#: ../../../processing/app/NetworkMonitor.java:111
+!connected\!=
+
+#: Sketch.java:540
+!createNewFile()\ returned\ false=
+
+#: ../../../processing/app/EditorStatus.java:469
+!enabled\ in\ File\ >\ Preferences.=
+
+#: Base.java:2090
+!environment=
+
+#: Editor.java:1108
+!http\://arduino.cc/=
+
+#: ../../../processing/app/debug/Compiler.java:49
+!http\://github.com/arduino/Arduino/issues=
+
+#: UpdateCheck.java:118
+!http\://www.arduino.cc/en/Main/Software=
+
+#: UpdateCheck.java:53
+!http\://www.arduino.cc/latest.txt=
+
+#: Base.java:2075
+!http\://www.arduino.cc/playground/Learning/Linux=
+
+#: Preferences.java:625
+#, java-format
+!ignoring\ invalid\ font\ size\ {0}=
+
+#: Base.java:2080
+!index.html=
+
+#: Editor.java:936 Editor.java:943
+!name\ is\ null=
+
+#: Base.java:2090
+!platforms.html=
+
+#: Serial.java:451
+#, java-format
+!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=
+
+#: Sketch.java:647
+!removeCode\:\ internal\ error..\ could\ not\ find\ code=
+
+#: Editor.java:932
+!serialMenu\ is\ null=
+
+#: debug/Uploader.java:195
+#, java-format
+!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
+
+#: Preferences.java:391
+!upload=
+
+#: Editor.java:380
+#, java-format
+!{0}\ files\ added\ to\ the\ sketch.=
+
+#: debug/Compiler.java:365
+#, java-format
+!{0}\ returned\ {1}=
+
+#: Editor.java:2213
+#, java-format
+!{0}\ |\ Arduino\ {1}=
+
+#: Editor.java:1874
+#, java-format
+!{0}.html=
diff --git a/app/src/processing/app/i18n/Resources_pt_BR.po b/app/src/processing/app/i18n/Resources_pt_BR.po
index 73f07dc5d..352f7ff28 100644
--- a/app/src/processing/app/i18n/Resources_pt_BR.po
+++ b/app/src/processing/app/i18n/Resources_pt_BR.po
@@ -11,116 +11,116 @@
msgid ""
msgstr ""
-"Project-Id-Version: PT-BR Arduino IDE\n"
+"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: 2012-04-04 15:30+0000\n"
-"Last-Translator: Radamés Ajna Closing the last open sketch will quit Arduino."
-msgstr " Ao fechar o último sketch aberto o Arduino se encerrará."
+msgstr "Fechar o último sketch finalizará o Arduino."
-#: Editor.java:2006
+#: Editor.java:2053
msgid ""
-" If you don't "
"save, your changes will be lost."
-msgstr " Se você não salvar, suas alterações serão perdidas."
+msgstr " Se você não salvar, suas alterações serão perdidas."
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
msgid "A file named \"{0}\" already exists in \"{1}\""
msgstr "Um arquivo chamado \"{0}\" já existe em \"{1}\""
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
msgid "A folder named \"{0}\" already exists. Can't open sketch."
-msgstr "O nome para a pasta \"{0}\" já existe. Não foi possível abrir o sketch. "
+msgstr "Uma pasta chamada \"{0}\" já existe. Impossível abrir o sketch."
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
msgid "A library named {0} already exists"
-msgstr ""
+msgstr "Uma biblioteca chamada {0} já existe"
#: UpdateCheck.java:103
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
-msgstr "Uma nova versão de Arduino está disponível,\nvocê gostaria de visitar a página de download?"
+msgstr "Uma nova versão de Arduino está disponível, \\n você gostaria de visitar a página de Download?"
#: EditorConsole.java:153
msgid ""
"A problem occurred while trying to open the\n"
"files used to store the console output."
-msgstr "Ocorreu um problema ao tentar abrir os\narquivos utilizados para armazenar a saída do console."
+msgstr "Um problema ocorreu ao tentar abrir os\narquivos usados para armazenar a saída do console."
-#: Editor.java:1102
+#: Editor.java:1116
msgid "About Arduino"
-msgstr "Sobre o Arduino"
+msgstr "Sobre Arduino"
-#: Editor.java:643
+#: Editor.java:650
msgid "Add File..."
-msgstr "Adicionar Arquivo..."
+msgstr "Adicionar arquivo..."
-#: ../../../processing/app/Base.java:1102
+#: Base.java:963
msgid "Add Library..."
-msgstr ""
+msgstr "Adicionar Biblioteca..."
#: tools/FixEncoding.java:77
msgid ""
"An error occurred while trying to fix the file encoding.\n"
"Do not attempt to save this sketch as it may overwrite\n"
"the old version. Use Open to re-open the sketch and try again.\n"
-msgstr "Ocorreu um erro ao tentar corrigir a codificação do arquivo\nNão tente salvar esse sketch pois você pode sobrescrever a\nversão antiga. Utilize Abrir para reabrir o sketch e tentar novamente.\n"
+msgstr "Um erro ocorreu ao tentar corrigir a codificação do arquivo.\nNão tente salvar este sketch pois ele pode ser sobrescrever a\nversão antiga. Use Abrir para reabrir o sketch e tente novamente.\n"
-#: Base.java:221
+#: Base.java:228
msgid ""
"An unknown error occurred while trying to load\n"
"platform-specific code for your machine."
-msgstr "Ocorreu um erro desconhecido ao carregar\ncódigo específico da plataforma para o seu computador."
-
-#: Preferences.java:84
-msgid "Arabic"
-msgstr ""
+msgstr "Ocorreu um erro desconhecido ao tenta carregar\ncódigo específico da plataforma para sua máquina."
#: Preferences.java:85
+msgid "Arabic"
+msgstr "Árabe"
+
+#: Preferences.java:86
msgid "Aragonese"
-msgstr ""
+msgstr "Aragonês"
#: tools/Archiver.java:48
msgid "Archive Sketch"
-msgstr "Arquivar o Sketch"
+msgstr "Arquivar sketch"
#: tools/Archiver.java:109
msgid "Archive sketch as:"
@@ -128,281 +128,313 @@ msgstr "Arquivar sketch como:"
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
-msgstr "Arquivamento do sketch cancelado."
+msgstr "Arquivo de sketch cancelado."
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
-msgstr "Arquivamento do sketch foi cancelado pois\no sketch não pode ser salvo corretamente."
+msgstr "O arquivo do sketch foi cancelado porque\no sketch não pôde ser salvo corretamente."
#: ../../../processing/app/I18n.java:83
msgid "Arduino ARM (32-bits) Boards"
-msgstr ""
+msgstr "Placas Arduino ARM (32-bits)"
#: ../../../processing/app/I18n.java:82
msgid "Arduino AVR Boards"
-msgstr ""
+msgstr "Placas Arduino AVR"
-#: Base.java:1441
+#: Base.java:1682
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
-msgstr "Arduino não pode executar porque não foi possível\ncriar uma pasta para armazenar suas configurações."
+msgstr "O Arduino não pode rodar porque não consegue \\n criar uma pasta para armazenar as suas configurações."
-#: Base.java:1603
+#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
-msgstr "Não é possível executar o Arduino pois\na pasta do skecthbook não pôde ser criado."
+msgstr "O Arduino não pode rodar porque não consegue \\n criar uma pasta para armazenar as suas sketchbooks."
-#: Base.java:233
+#: Base.java:240
msgid ""
"Arduino requires a full JDK (not just a JRE)\n"
"to run. Please install JDK 1.5 or later.\n"
"More information can be found in the reference."
-msgstr "Arduino requer a JDK completa (não apenas a JRE)\npara rodar. Por favor instale a JDK 1.5 ou posterior.\nMais informações podem ser encontradas na referência."
+msgstr "O Arduino requer o JDK completo (não apenas uma JRE)\npara rodar. Por favor, instale o JDK 1.5 ou superior.\nMais informações podem ser encontradas nas Referências."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
-msgstr ""
+msgstr "Arduino: "
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
msgid "Are you sure you want to delete \"{0}\"?"
-msgstr "Você tem certeza que quer deletar \"{0}\" ?"
+msgstr "Tem certeza que quer excluir \"{0}\"?"
-#: Sketch.java:591
+#: Sketch.java:587
msgid "Are you sure you want to delete this sketch?"
-msgstr "Você tem certeza que quer deletar este sketch?"
+msgstr "Tem certeza que quer excluir este sketch?"
+
+#: ../../../processing/app/Preferences.java:137
+msgid "Armenian"
+msgstr "Armênio"
+
+#: ../../../processing/app/Preferences.java:138
+msgid "Asturian"
+msgstr "Asturiano"
#: tools/AutoFormat.java:91
msgid "Auto Format"
-msgstr "Auto Formatação"
+msgstr "Autoformatação"
+
+#: tools/AutoFormat.java:934
+msgid "Auto Format Canceled: Too many left curly braces."
+msgstr "Autoformatação cancelada: muitas chaves esquerdas."
+
+#: tools/AutoFormat.java:925
+msgid "Auto Format Canceled: Too many left parentheses."
+msgstr "Autoformatação cancelada: muitos parênteses esquerdos."
#: tools/AutoFormat.java:931
-msgid "Auto Format Canceled: Too many left curly braces."
-msgstr "Auto Formatação Cancelada: Excesso de colchetes à esquerda."
+msgid "Auto Format Canceled: Too many right curly braces."
+msgstr "Autoformatação cancelada: muitas chaves direitas."
#: tools/AutoFormat.java:922
-msgid "Auto Format Canceled: Too many left parentheses."
-msgstr "Auto Formatação Cancelada: Excesso de parênteses à esquerda."
-
-#: tools/AutoFormat.java:928
-msgid "Auto Format Canceled: Too many right curly braces."
-msgstr "Auto Formatação Cancelada: Excesso de colchetes à direita."
-
-#: tools/AutoFormat.java:919
msgid "Auto Format Canceled: Too many right parentheses."
-msgstr "Auto Formatação Cancelada: Excesso de parênteses à direita."
+msgstr "Autoformatação cancelada: muitos parênteses direitos."
-#: tools/AutoFormat.java:941
+#: tools/AutoFormat.java:944
msgid "Auto Format finished."
-msgstr "Auto Formatação terminada."
+msgstr "Autoformatação concluída."
-#: Preferences.java:423
+#: Preferences.java:439
msgid "Automatically associate .ino files with Arduino"
-msgstr "Associar automaticamente arquivos .ino com o Arduino"
+msgstr "Associar arquivos .ino ao Arduino automaticamente"
#: SerialMonitor.java:110
msgid "Autoscroll"
-msgstr "Rolagem automática"
+msgstr "Auto-rolagem"
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
msgid "Bad error line: {0}"
msgstr "Erro na linha: {0}"
-#: Editor.java:2089
+#: Editor.java:2136
msgid "Bad file selected"
-msgstr "Arquivo errado selecionado"
+msgstr "Arquivo inválido selecionado"
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-msgid "Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
+#: ../../../processing/app/Preferences.java:139
+msgid "Belarusian"
+msgstr "Bielorrusso"
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
msgid "Board"
msgstr "Placa"
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
msgid ""
-"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: "
-"{3}"
-msgstr ""
+"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
+" {3}"
+msgstr "Placa {0}:{1}:{2} não define uma preferência ''build.board''. Autoconfigurada para: {3}"
#: ../../../processing/app/EditorStatus.java:472
msgid "Board: "
-msgstr ""
+msgstr "Placa:"
+
+#: ../../../processing/app/Preferences.java:140
+msgid "Bosnian"
+msgstr "Bósnio"
#: SerialMonitor.java:112
msgid "Both NL & CR"
-msgstr "Ambos NL & CR"
+msgstr "Ambos, NL e CR"
-#: Preferences.java:80
+#: Preferences.java:81
msgid "Browse"
-msgstr "Navegar"
+msgstr "Navegador"
-#: Sketch.java:1393 Sketch.java:1424
+#: Sketch.java:1392 Sketch.java:1423
msgid "Build folder disappeared or could not be written"
-msgstr "A Pasta para compilação desapareceu ou não pode ser escrita"
+msgstr "A pasta de compilação desapareceu ou não pode ser escrita"
#: ../../../processing/app/Preferences.java:80
msgid "Bulgarian"
-msgstr ""
+msgstr "Búlgaro"
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+msgid "Burmese (Myanmar)"
+msgstr "Birmanês (Miamar)"
+
+#: Editor.java:708
msgid "Burn Bootloader"
msgstr "Gravar Bootloader"
-#: Editor.java:2457
+#: Editor.java:2504
msgid "Burning bootloader to I/O Board (this may take a minute)..."
-msgstr "Gravando bootloader para placa I/O (isso pode demorar alguns minutos)..."
+msgstr "Gravando o bootloader na placa de E/S (isso pode demorar um tempinho)..."
#: ../../../processing/app/Base.java:368
msgid "Can't open source sketch!"
-msgstr ""
+msgstr "Não é possível abrir o fonte do sketch!"
#: ../../../processing/app/Preferences.java:92
msgid "Canadian French"
-msgstr ""
+msgstr "Francês canadense"
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
msgid "Cancel"
msgstr "Cancelar"
-#: Sketch.java:459
+#: Sketch.java:455
msgid "Cannot Rename"
-msgstr "Não é possível Renomear"
+msgstr "Não é possível renomear"
#: SerialMonitor.java:112
msgid "Carriage return"
-msgstr "Carriage return"
+msgstr "Retorno de carro"
-#: Preferences.java:86
+#: Preferences.java:87
msgid "Catalan"
msgstr "Catalão"
-#: Preferences.java:403
+#: Preferences.java:419
msgid "Check for updates on startup"
-msgstr "Checar novas atualizações ao iniciar"
+msgstr "Checar atualizações ao iniciar"
-#: Preferences.java:87
-msgid "Chinese Simplified"
-msgstr "Chinês Simplificado "
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (China)"
+msgstr "Chinês (China)"
+
+#: ../../../processing/app/Preferences.java:142
+msgid "Chinese (Hong Kong)"
+msgstr "Chinês (Hong Kong)"
+
+#: ../../../processing/app/Preferences.java:144
+msgid "Chinese (Taiwan)"
+msgstr "Chinês (Taiwan)"
+
+#: ../../../processing/app/Preferences.java:143
+msgid "Chinese (Taiwan) (Big5)"
+msgstr "Chinês (Taiwan) (Big5)"
#: Preferences.java:88
-msgid "Chinese Traditional"
-msgstr ""
+msgid "Chinese Simplified"
+msgstr "Chinês Simplificado"
-#: Editor.java:514 Editor.java:1977
+#: Preferences.java:89
+msgid "Chinese Traditional"
+msgstr "Chinês Tradicional"
+
+#: Editor.java:521 Editor.java:2024
msgid "Close"
msgstr "Fechar"
-#: Editor.java:1194 Editor.java:2702
+#: Editor.java:1208 Editor.java:2749
msgid "Comment/Uncomment"
-msgstr "Comentar/Descomentar"
+msgstr "Comentar/descomentar"
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
msgid "Compiler error, please submit this code to {0}"
-msgstr "Erro do compilador, por favor envie este código para {0}"
+msgstr "Erro do compilador. Por favor, envie este código para {0}"
-#: Editor.java:1843 Sketch.java:1647
+#: Sketch.java:1608 Editor.java:1890
msgid "Compiling sketch..."
-msgstr "Compilando o sketch..."
+msgstr "Compilando sketch..."
#: EditorConsole.java:152
msgid "Console Error"
-msgstr "Erro do Console"
+msgstr "Console de erro"
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
msgid "Copy"
msgstr "Copiar"
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
msgid "Copy as HTML"
msgstr "Copiar como HTML"
#: ../../../processing/app/EditorStatus.java:456
msgid "Copy error"
-msgstr ""
+msgstr "Erro ao copiar"
-#: Editor.java:1151 Editor.java:2668
+#: Editor.java:1165 Editor.java:2715
msgid "Copy for Forum"
-msgstr "Copiar para o Forum"
+msgstr "Copiar para Fórum"
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
msgid "Could not add ''{0}'' to the sketch."
-msgstr "Não foi possível adicionar \"{0}\" ao sketch "
+msgstr "Não foi possível adicionar \"{0}\" ao sketch."
-#: Editor.java:2141
+#: Editor.java:2188
msgid "Could not copy to a proper location."
-msgstr "Não foi possível copiar para o local correto."
+msgstr "Não foi possível copiar para uma localização apropriada."
-#: Editor.java:2132
+#: Editor.java:2179
msgid "Could not create the sketch folder."
-msgstr "Não foi possível criar a pasta do cketch."
+msgstr "Não foi possível criar a pasta de sketch."
-#: Editor.java:2159
+#: Editor.java:2206
msgid "Could not create the sketch."
msgstr "Não foi possível criar o sketch."
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
msgid "Could not delete \"{0}\"."
-msgstr "Não foi possível apagar \"{0}\"."
+msgstr "Não foi possível excluir \"{0}\"."
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
msgid "Could not delete the existing ''{0}'' file."
-msgstr "Não é possível deletar o arquivo \"{0}\" existente."
+msgstr "Não foi possível excluir o arquivo existente, chamado \"{0}\"."
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
msgid "Could not delete {0}"
-msgstr "Não foi possível deletar {0}"
+msgstr "Não foi possível excluir {0}"
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
-msgstr ""
+msgstr "Não foi possível encontrar boards.txt em {0}. Isto é pré-1.5?"
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
#, java-format
msgid "Could not find tool {0}"
-msgstr ""
+msgstr "Não foi possível encontrar ferramenta {0}"
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
#, java-format
msgid "Could not find tool {0} from package {1}"
-msgstr ""
+msgstr "Não foi possível encontrar ferramenta {0} a partir do pacote {1}"
-#: Base.java:1648
+#: Base.java:1934
#, java-format
msgid ""
"Could not open the URL\n"
"{0}"
-msgstr "Não foi possível abrir a URL\n{0}"
+msgstr "Não foi possível abrir o URL\n{0}"
-#: Base.java:1672
+#: Base.java:1958
#, java-format
msgid ""
"Could not open the folder\n"
"{0}"
-msgstr "Não foi possível abrir pasta\n{0}"
+msgstr "Não foi possível abrir a pasta\n{0}"
-#: Sketch.java:1811
+#: Sketch.java:1769
msgid ""
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
"and it might be time to copy and paste your code to another text editor."
-msgstr "Não foi possível voltar a salvar corretamente o sketch. Você deve estar em apuros agora,\ne deve copiar e colar seu código em outro editor de texto."
+msgstr "Não foi possível salvar novamente o sketch. Você deve estar com problemas agora\ne acho que é hora de copiar e salvar seu código em outro editor de texto."
-#: Sketch.java:1810
+#: Sketch.java:1768
msgid "Could not re-save sketch"
msgstr "Não foi possível salvar novamente o sketch"
@@ -410,245 +442,257 @@ msgstr "Não foi possível salvar novamente o sketch"
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Processing."
-msgstr "As configurações de cor do tema não podem ser lidas.\nVocê precisa reinstalar o Processing."
+msgstr "Não foi possível ler as configurações do esquema de cores.\nVocê terá que reinstalar o Processing."
-#: Preferences.java:210
+#: Preferences.java:219
msgid ""
"Could not read default settings.\n"
"You'll need to reinstall Arduino."
-msgstr "Não foi possível ler as configurações padrão.\nSerá necessário instalar Arduino novamente."
+msgstr "Não foi possível ler as configurações padrão.\nVocê terá que reinstalar o Arduino."
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
msgid "Could not read preferences from {0}"
-msgstr "Não foi possível ler preferências de {0}"
+msgstr "Não foi possível ler as preferências de {0}"
-#: Base.java:2196
+#: Base.java:2482
#, java-format
msgid "Could not remove old version of {0}"
-msgstr "Não foi possível remover a versão antiga {0}"
+msgstr "Não foi possível remover a versão antiga de {0}"
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
msgid "Could not rename \"{0}\" to \"{1}\""
-msgstr "Não é possível renomear \"{0}\" para \"{1}\""
+msgstr "Não foi possível renomear \"{0}\" para \"{1}\""
-#: Sketch.java:479
+#: Sketch.java:475
msgid "Could not rename the sketch. (0)"
-msgstr "Não é possível renomear o sketch. (0)"
+msgstr "Não foi possível renomear o sketch. (0)"
-#: Sketch.java:500
+#: Sketch.java:496
msgid "Could not rename the sketch. (1)"
-msgstr "Não é possível renomear o sketch. (1)"
+msgstr "Não foi possível renomear o sketch. (1)"
-#: Sketch.java:507
+#: Sketch.java:503
msgid "Could not rename the sketch. (2)"
-msgstr "Não é possível renomear o sketch. (2)"
+msgstr "Não foi possível renomear o sketch. (2)"
-#: Base.java:2206
+#: Base.java:2492
#, java-format
msgid "Could not replace {0}"
msgstr "Não foi possível substituir {0}"
#: tools/Archiver.java:74
msgid "Couldn't archive sketch"
-msgstr "Não foi possível arquivar o sketch."
+msgstr "Não foi possível arquivar sketch"
-#: Sketch.java:1689
+#: Sketch.java:1647
msgid "Couldn't determine program size: {0}"
-msgstr "Não foi possível determinar o tamanho do programa: {0}"
+msgstr "Falha ao determinar tamanho do programa: {0}"
-#: Sketch.java:620
+#: Sketch.java:616
msgid "Couldn't do it"
-msgstr "Não foi possível fazer isso."
+msgstr "Não foi possível fazer isso"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
+#: debug/BasicUploader.java:209
msgid ""
"Couldn't find a Board on the selected port. Check that you have the correct "
"port selected. If it is correct, try pressing the board's reset button "
"after initiating the upload."
-msgstr ""
+msgstr "Não foi possível encontrar uma placa na porta selecionada. Verifique se você selecionou a porta correta. Em caso positivo, tente pressionar o botão reset na placa depois de iniciar o carregamento."
#: ../../../processing/app/Preferences.java:82
msgid "Croatian"
-msgstr ""
+msgstr "Croata"
-#: Editor.java:1135 Editor.java:2652
+#: Editor.java:1149 Editor.java:2699
msgid "Cut"
-msgstr "Copiar"
+msgstr "Cortar"
#: ../../../processing/app/Preferences.java:83
msgid "Czech"
-msgstr ""
+msgstr "Tcheco"
-#: Preferences.java:89
+#: Preferences.java:90
msgid "Danish"
msgstr "Dinamarquês"
-#: Editor.java:1210 Editor.java:2718
+#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
-msgstr "Diminuir Recuo"
+msgstr "Diminuir identação"
-#: Sketch.java:595 EditorHeader.java:314
+#: EditorHeader.java:314 Sketch.java:591
msgid "Delete"
-msgstr "Deletar"
+msgstr "Apagar"
-#: debug/Uploader.java:203
+#: debug/Uploader.java:199
msgid ""
"Device is not responding, check the right serial port is selected or RESET "
"the board right before exporting"
-msgstr "O dispositivo não esta respondendo, verifique se a porta serial correta foi selecionada ou RESET a placa antes de exportar"
+msgstr "O dispositivo não está respondendo. Confira se a porta serial é a correta ou REINICIE a placa antes de exportar"
#: tools/FixEncoding.java:57
msgid "Discard all changes and reload sketch?"
-msgstr "Descartar todas as alterações e reabrir o sketch?"
+msgstr "Descartar todas as alterações e recarregar o sketch?"
-#: Editor.java:2017
+#: Editor.java:2064
msgid "Don't Save"
-msgstr "Não salvar"
+msgstr "Não Salvar"
-#: Editor.java:2228 Editor.java:2264
+#: Editor.java:2275 Editor.java:2311
msgid "Done Saving."
-msgstr "Salvar concluído."
+msgstr "Salvo."
-#: Editor.java:2463
+#: Editor.java:2510
msgid "Done burning bootloader."
-msgstr "Gravação do bootloader finalizada."
+msgstr "Gravação do bootloader concluída."
-#: Editor.java:1864 Editor.java:1881
+#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
msgstr "Compilação terminada."
-#: Editor.java:2517
+#: Editor.java:2564
msgid "Done printing."
-msgstr "Impressão finalizada."
+msgstr "Impressão terminada."
-#: Editor.java:2348 Editor.java:2384
+#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
-msgstr "Transferência concluída."
+msgstr "Carregado."
-#: Preferences.java:90
+#: Preferences.java:91
msgid "Dutch"
msgstr "Holandês"
-#: Editor.java:1116
+#: ../../../processing/app/Preferences.java:144
+msgid "Dutch (Netherlands)"
+msgstr "Holandês (Holanda)"
+
+#: Editor.java:1130
msgid "Edit"
msgstr "Editar"
-#: Preferences.java:354
+#: Preferences.java:370
msgid "Editor font size: "
-msgstr "Editar tamanho da fonte: "
+msgstr "Tamanho da fonte do editor:"
-#: Preferences.java:337
+#: Preferences.java:353
msgid "Editor language: "
-msgstr ""
+msgstr "Idioma do editor:"
-#: Preferences.java:91
+#: Preferences.java:92
msgid "English"
msgstr "Inglês"
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+msgid "English (United Kingdom)"
+msgstr "Inglês (Britânico)"
+
+#: Editor.java:1062
msgid "Environment"
msgstr "Ambiente"
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
msgid "Error"
msgstr "Erro"
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
msgid "Error adding file"
msgstr "Erro ao adicionar arquivo"
-#: debug/Compiler.java:426
+#: debug/Compiler.java:369
msgid "Error compiling."
-msgstr "Erro ao compilar."
+msgstr "Erro compilando."
-#: Base.java:1433
+#: Base.java:1674
msgid "Error getting the Arduino data folder."
-msgstr "Erro ao obter pasta de dados do Arduino."
+msgstr "Erro ao obter a pasta de dados do Arduino."
-#: Serial.java:567
+#: Serial.java:593
#, java-format
msgid "Error inside Serial.{0}()"
-msgstr "Erro dentro da Serial.{0}()"
+msgstr "Erro dentro de Serial.{0}()"
#: ../../../processing/app/Base.java:1232
msgid "Error loading libraries"
-msgstr ""
+msgstr "Erro ao carregar bibliotecas"
#: ../../../processing/app/debug/TargetPlatform.java:95
#: ../../../processing/app/debug/TargetPlatform.java:106
#: ../../../processing/app/debug/TargetPlatform.java:117
#, java-format
msgid "Error loading {0}"
-msgstr ""
+msgstr "Erro ao carregar {0}"
-#: Serial.java:154
+#: Serial.java:181
#, java-format
msgid "Error opening serial port ''{0}''."
-msgstr "Erro ao abrir porta serial \"{0}\""
+msgstr "Erro ao abrir porta serial \"{0}\"."
-#: Preferences.java:261
+#: Preferences.java:277
msgid "Error reading preferences"
msgstr "Erro lendo preferências"
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
msgid ""
"Error reading the preferences file. Please delete (or move)\n"
"{0} and restart Arduino."
-msgstr "Erro ao ler arquivo de preferências. Por favor delete (ou mova)\n{0} e reinicie o Arduino."
+msgstr "Erro lendo o arquivo de preferências. Por favor, delete (ou remova) \\n {0} em reinicie o Arduino."
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
msgid "Error starting discovery method: "
-msgstr ""
+msgstr "Erro ao iniciar método discovery:"
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
msgid "Error touching serial port ''{0}''."
-msgstr ""
+msgstr "Erro ao tocar a porta serial \"{0}\"."
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
msgid "Error while burning bootloader."
-msgstr "Erro ao gravar bootloader."
+msgstr "Erro ao gravar o bootloader."
#: ../../../processing/app/Editor.java:2555
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
-msgstr ""
+msgstr "Erro ao gravar bootloader: faltando o parâmetro de configuração '{0}'"
#: SketchCode.java:83
#, java-format
msgid "Error while loading code {0}"
-msgstr "Erro ao tentar carregar código {0}"
+msgstr "Erro durante o carregamento do código {0}"
-#: Editor.java:2520
+#: Editor.java:2567
msgid "Error while printing."
-msgstr "Erro ao imprimir."
+msgstr "Erro durante impressão."
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
msgid "Error while uploading: missing '{0}' configuration parameter"
-msgstr ""
+msgstr "Erro ao carregar: faltando o parâmetro de configuração '{0}'"
-#: Preferences.java:92
+#: Preferences.java:93
msgid "Estonian"
-msgstr ""
+msgstr "Estoniano"
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+msgid "Estonian (Estonia)"
+msgstr "Estoniano (Estônia)"
+
+#: Editor.java:516
msgid "Examples"
msgstr "Exemplos"
-#: Editor.java:2435
+#: Editor.java:2482
msgid "Export canceled, changes must first be saved."
-msgstr "Exportação cancelada, primeiro salve as alterações."
+msgstr "Exportação cancelada, alterações devem ser salvas antes."
-#: Base.java:1814
+#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
-#: Editor.java:484
+#: Editor.java:491
msgid "File"
msgstr "Arquivo"
@@ -658,128 +702,144 @@ msgstr "Filipino"
#: FindReplace.java:124 FindReplace.java:127
msgid "Find"
-msgstr "Buscar"
+msgstr "Localizar"
-#: Editor.java:1235
+#: Editor.java:1249
msgid "Find Next"
-msgstr "Buscar Próximo"
+msgstr "Localizar próximo"
-#: Editor.java:1245
+#: Editor.java:1259
msgid "Find Previous"
-msgstr "Buscar Anterior"
+msgstr "Localizar anterior"
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
msgid "Find in Reference"
msgstr "Procurar na Referência"
-#: Editor.java:1220
+#: Editor.java:1234
msgid "Find..."
-msgstr "Buscar..."
+msgstr "Localizar..."
#: FindReplace.java:80
msgid "Find:"
-msgstr "Buscar:"
+msgstr "Localizar:"
+
+#: ../../../processing/app/Preferences.java:147
+msgid "Finnish"
+msgstr "Finlandês"
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
msgid "Fix Encoding & Reload"
-msgstr "Corrigir Codificação & Recarregar"
+msgstr "Corrigir codificação e recarregar"
-#: ../../../processing/app/Base.java:2057
+#: Base.java:1851
msgid ""
-"For information on installing libraries, see: http://arduino.cc/en/Guide/"
-"Libraries\n"
-msgstr ""
+"For information on installing libraries, see: "
+"http://arduino.cc/en/Guide/Libraries\n"
+msgstr "Para informações sobre como instalar Bibliotecas, veja: http://arduino.cc/en/Guide/Libraries\\n"
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
+#: debug/BasicUploader.java:80
msgid "Forcing reset using 1200bps open/close on port "
-msgstr ""
+msgstr "Forçando reset usando 1200bps na porta open/close"
-#: Preferences.java:93
+#: Preferences.java:95
msgid "French"
msgstr "Francês"
-#: Editor.java:1083
+#: Editor.java:1097
msgid "Frequently Asked Questions"
-msgstr "Perguntas Frequentes "
+msgstr "Perguntas Frequentes - FAQ"
-#: Preferences.java:95
+#: Preferences.java:96
msgid "Galician"
-msgstr "Galego"
+msgstr "Galício"
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
-msgstr ""
+msgstr "Georgiano"
-#: Preferences.java:96
+#: Preferences.java:97
msgid "German"
msgstr "Alemão"
-#: Editor.java:1041
+#: Editor.java:1054
msgid "Getting Started"
-msgstr "Primeiros passos"
+msgstr "Iniciando"
-#: Preferences.java:97
+#: ../../../processing/app/Sketch.java:1646
+#, java-format
+msgid ""
+"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
+"for local variables. Maximum is {1} bytes."
+msgstr "Variáveis globais usam {0} bytes ({2}%%) de memória dinâmica, deixando {3} bytes para variáveis locais. O máximo são {1} bytes."
+
+#: ../../../processing/app/Sketch.java:1651
+#, java-format
+msgid "Global variables use {0} bytes of dynamic memory."
+msgstr "Variáveis globais usam {0} bytes de memória dinâmica."
+
+#: Preferences.java:98
msgid "Greek"
msgstr "Grego"
-#: Base.java:1799
+#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
-#: Base.java:1785
+#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guia_MacOSX.html"
-#: Base.java:1809
+#: Base.java:2095
msgid "Guide_Troubleshooting.html"
-msgstr "Guide_Troubleshooting.html"
+msgstr "Guia_SolucionarProblemas.html"
-#: Base.java:1787
+#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guia_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
-msgstr ""
+msgstr "Hebreu"
-#: Editor.java:1002
+#: Editor.java:1015
msgid "Help"
msgstr "Ajuda"
-#: ../../../processing/app/Preferences.java:98
+#: Preferences.java:99
msgid "Hindi"
-msgstr ""
+msgstr "Hindi"
-#: Sketch.java:299
+#: Sketch.java:295
msgid ""
"How about saving the sketch first \n"
"before trying to rename it?"
-msgstr "O que acha de salvar o sketch primeiramente\nantes de tentar renomeá-lo?"
+msgstr "Que tal salvar o sketch antes de\ntentar renomeá-lo?"
-#: Sketch.java:886
+#: Sketch.java:882
msgid "How very Borges of you"
-msgstr "Agora você pegou pesado"
+msgstr "Quão sutil de sua parte"
-#: Preferences.java:98
+#: Preferences.java:100
msgid "Hungarian"
msgstr "Húngaro"
#: FindReplace.java:96
msgid "Ignore Case"
-msgstr "Ignorar Maiúscula/Minúscula"
+msgstr "Ignorar maiúsculização"
-#: Base.java:1207
+#: Base.java:1058
msgid "Ignoring bad library name"
-msgstr "Ingnorando nome inválido de biblioteca"
+msgstr "Ignorando nome inapropriado para Biblioteca."
-#: Base.java:1132
+#: Base.java:1436
msgid "Ignoring sketch with bad name"
-msgstr "Ignorando sketch com nome inválido."
+msgstr "Ignorando sketch com nome inapropriado"
-#: Editor.java:629
+#: Editor.java:636
msgid "Import Library..."
-msgstr "Importar Biblioteca..."
+msgstr "Importar biblioteca..."
#: ../../../processing/app/Sketch.java:736
msgid ""
@@ -790,94 +850,88 @@ msgid ""
"disable this in the Preferences dialog.\n"
"\n"
"Save sketch and update its extension?"
-msgstr ""
+msgstr "No Arduino 1.0, a extensão de arquivo padrão mudou de\n.pde para .ino Novos sketches (incluindo aqueles criados\npelo comando \"Salvar como\") usarão a nova extensão.\nA extensão de sketches existentes será atualizada ao\nsalvar, mas você pode desabilitar isto no diálogo de \nPreferências.\n\nSalvar e atualizar sua extensão?"
-#: Editor.java:1202 Editor.java:2710
+#: Editor.java:1216 Editor.java:2757
msgid "Increase Indent"
-msgstr "Aumentar Recuo"
+msgstr "Aumentar identação"
-#: Preferences.java:99
+#: Preferences.java:101
msgid "Indonesian"
-msgstr ""
+msgstr "Indonésio"
#: ../../../processing/app/Base.java:1204
#, java-format
msgid "Invalid library found in {0}: {1}"
-msgstr ""
+msgstr "Biblioteca inválida encontrada em {0}: {1}"
-#: Preferences.java:100
+#: Preferences.java:102
msgid "Italian"
msgstr "Italiano"
-#: Preferences.java:101
+#: Preferences.java:103
msgid "Japanese"
msgstr "Japonês"
-#: Preferences.java:102
+#: Preferences.java:104
msgid "Korean"
-msgstr ""
+msgstr "Coreano"
-#: Preferences.java:103
+#: Preferences.java:105
msgid "Latvian"
msgstr "Letão"
-#: ../../../processing/app/Base.java:2903
+#: Base.java:2699
msgid "Library added to your libraries. Check \"Import library\" menu"
-msgstr ""
+msgstr "Biblioteca adicionada. Veja o menu \"Importar biblioteca\""
-#: Preferences.java:104
+#: Preferences.java:106
msgid "Lithuaninan"
-msgstr ""
+msgstr "Lituano"
#: ../../../processing/app/Sketch.java:1660
msgid "Low memory available, stability problems may occur"
-msgstr ""
+msgstr "Pouca memória disponível, problemas de estabilidade podem ocorrer"
-#: ../../../processing/app/Preferences.java:106
+#: Preferences.java:107
msgid "Marathi"
-msgstr ""
+msgstr "Marathi"
-#: Base.java:1826
+#: Base.java:2112
msgid "Message"
msgstr "Mensagem"
-#: ../../../processing/app/Sketch.java:1646
-#, java-format
-msgid "Minimum Memory usage: {0} bytes"
-msgstr ""
-
-#: ../../../processing/app/Sketch.java:1643
-#, java-format
-msgid "Minimum Memory usage: {0} bytes (of a {1} byte maximum) - {2}%% used"
-msgstr ""
-
-#: Sketch.java:1754
+#: Sketch.java:1712
msgid "Missing the */ from the end of a /* comment */"
-msgstr "Faltando o */ no final do /* comentário */"
+msgstr "Faltando o */ no final de um /* comentário */"
-#: Preferences.java:433
+#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
msgstr "Mais preferências podem ser editadas diretamente no arquivo"
-#: Editor.java:2109
+#: Editor.java:2156
msgid "Moving"
msgstr "Movendo"
-#: Sketch.java:286
+#: Sketch.java:282
msgid "Name for new file:"
msgstr "Nome para o novo arquivo:"
+#: ../../../processing/app/Preferences.java:149
+msgid "Nepali"
+msgstr "Nepali"
+
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
-msgstr ""
+msgstr "Carregamento pela rede usando programador não suportado"
-#: Editor.java:486 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:493
msgid "New"
msgstr "Novo"
#: EditorToolbar.java:46
msgid "New Editor Window"
-msgstr "Nova Janela de Edição"
+msgstr "Nova janela de edição"
#: EditorHeader.java:292
msgid "New Tab"
@@ -885,27 +939,27 @@ msgstr "Nova Aba"
#: SerialMonitor.java:112
msgid "Newline"
-msgstr "Nova Linha"
+msgstr "Nova-linha"
#: EditorHeader.java:340
msgid "Next Tab"
msgstr "Próxima Aba"
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
msgid "No"
msgstr "Não"
-#: debug/Compiler.java:79
+#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
-msgstr "Nenhuma placa selecionada, por favor escolha a placa em Ferramentas > Menu Placas."
+msgstr "Nenhuma placa selecionada. Por favor, escolha uma placa no menu Ferramentas > Placa"
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
msgid "No changes necessary for Auto Format."
-msgstr "Sem alterações necessárias para a Auto Formatação."
+msgstr "Nenhuma alteração necessária para Autoformatação"
-#: Editor.java:366
+#: Editor.java:373
msgid "No files were added to the sketch."
-msgstr "Nenhum arquivo adicionado ao sketch."
+msgstr "Nenhum arquivo foi adicionado ao sketch."
#: Platform.java:167
msgid "No launcher available"
@@ -913,49 +967,50 @@ msgstr "Nenhum lançador disponível."
#: SerialMonitor.java:112
msgid "No line ending"
-msgstr "Sem fim de linha."
+msgstr "Nenhum final-de-linha"
-#: Base.java:538
+#: Base.java:541
msgid "No really, time for some fresh air for you."
-msgstr "Sério, hora de você tomar um ar puro."
+msgstr "Sério, você precisa de ar fresco."
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
msgid "No reference available for \"{0}\""
-msgstr "Nenhuma referência disponível para \"{0}\""
+msgstr "Sem referência disponível para \"{0}\""
#: ../../../processing/app/Base.java:309
msgid "No valid configured cores found! Exiting..."
-msgstr ""
+msgstr "Não encontrado nenhum núcleo válido configurado. Saindo..."
-#: Base.java:184
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+msgid "No valid hardware definitions found in folder {0}."
+msgstr "Nenhuma definição de hardware válida encontrada na pasta {0}."
+
+#: Base.java:191
msgid "Non-fatal error while setting the Look & Feel."
-msgstr "Erro não fatal enquanto configurava Aparência."
+msgstr "Erro não-fatal ao configurar o visual."
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
msgid "Nope"
-msgstr "Não"
-
-#: ../../../processing/app/Preferences.java:107
-msgid "Norwegian"
-msgstr ""
+msgstr "Nada"
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
-msgstr ""
+msgstr "Norueguês (Bokmål)"
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
"for tips on reducing your footprint."
-msgstr ""
+msgstr "Memória insuficiente. Veja http://www.arduino.cc/en/Guide/Troubleshooting#size para dicas de como reduzir o tamanho de seu código."
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
msgid "OK"
msgstr "OK"
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
msgid "One file added to the sketch."
msgstr "Um arquivo adicionado ao sketch."
@@ -963,59 +1018,67 @@ msgstr "Um arquivo adicionado ao sketch."
msgid "Open"
msgstr "Abrir"
-#: Editor.java:2641
+#: Editor.java:2688
msgid "Open URL"
msgstr "Abrir URL"
-#: Base.java:633
+#: Base.java:636
msgid "Open an Arduino sketch..."
msgstr "Abrir um sketch Arduino..."
#: EditorToolbar.java:46
msgid "Open in Another Window"
-msgstr "Abrir em outra Janela"
+msgstr "Abrir em outra janela"
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
msgid "Open..."
msgstr "Abrir..."
-#: Editor.java:556
+#: Editor.java:563
msgid "Page Setup"
-msgstr "Configuração de página"
+msgstr "Configuração da página"
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
msgid "Password:"
-msgstr ""
+msgstr "Senha:"
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
msgid "Paste"
msgstr "Colar"
-#: Preferences.java:105
+#: Preferences.java:109
msgid "Persian"
msgstr "Persa"
-#: debug/Compiler.java:465
+#: debug/Compiler.java:408
msgid "Please import the SPI library from the Sketch > Import Library menu."
-msgstr "Por favor importe a biblioteca SPI em Sketch > Importar Biblioteca."
+msgstr "Por favor, importe a biblioteca SPI a partir do menu Sketch > Importar biblioteca."
-#: Base.java:232
+#: Base.java:239
msgid "Please install JDK 1.5 or later"
-msgstr "Por favor instale a JDK 1.5 ou posterior"
+msgstr "Por favor, instale o JDK 1.5 ou superior."
-#: Preferences.java:106
+#: Preferences.java:110
msgid "Polish"
-msgstr ""
+msgstr "Polonês"
#: ../../../processing/app/Editor.java:718
msgid "Port"
-msgstr ""
+msgstr "Porta"
-#: Preferences.java:107 Preferences.java:108
-msgid "Portuguese"
-msgstr ""
+#: ../../../processing/app/Preferences.java:151
+msgid "Portugese"
+msgstr "Português"
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+msgid "Portuguese (Brazil)"
+msgstr "Português (Brasil)"
+
+#: ../../../processing/app/Preferences.java:128
+msgid "Portuguese (Portugal)"
+msgstr "Português (Portugal)"
+
+#: Preferences.java:295 Editor.java:583
msgid "Preferences"
msgstr "Preferências"
@@ -1025,82 +1088,82 @@ msgstr "Anterior"
#: EditorHeader.java:326
msgid "Previous Tab"
-msgstr "Aba Anterior"
+msgstr "Aba aAnterior"
-#: Editor.java:564
+#: Editor.java:571
msgid "Print"
msgstr "Imprimir"
-#: Editor.java:2524
+#: Editor.java:2571
msgid "Printing canceled."
msgstr "Impressão cancelada."
-#: Editor.java:2500
+#: Editor.java:2547
msgid "Printing..."
msgstr "Imprimindo..."
-#: Base.java:1671
+#: Base.java:1957
msgid "Problem Opening Folder"
-msgstr "Problema ao abrir Pasta"
+msgstr "Problemas para abrir a pasta"
-#: Base.java:1647
+#: Base.java:1933
msgid "Problem Opening URL"
-msgstr "Problema ao abrir URL"
+msgstr "Problemas para abrir a URL"
-#: Base.java:220
+#: Base.java:227
msgid "Problem Setting the Platform"
msgstr "Problema ao configurar a Plataforma"
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
msgid "Problem accessing board folder /www/sd"
-msgstr ""
+msgstr "Problema ao acessar a pasta da placa em /www/sd"
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
msgid "Problem accessing files in folder "
-msgstr ""
+msgstr "Problema ao acessar arquivos na pasta"
-#: Base.java:1432
+#: Base.java:1673
msgid "Problem getting data folder"
-msgstr "Problema ao obter pasta de dados"
+msgstr "Problema ao obter a pasta de dados"
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
msgid "Problem moving {0} to the build folder"
-msgstr "Problema ao mover {0} para a pasta de compilação "
+msgstr "Problemas ao mover {0} para a pasta de compilação"
#: debug/Uploader.java:209
msgid ""
-"Problem uploading to board. See http://www.arduino.cc/en/Guide/"
-"Troubleshooting#upload for suggestions."
+"Problem uploading to board. See "
+"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
msgstr "Problema ao carregar para a placa. Veja http://www.arduino.cc/en/Guide/Troubleshooting#upload para sugestões."
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
msgid "Problem with rename"
-msgstr "Error ao renomear"
+msgstr "Problema ao renomear"
-#: Editor.java:2090
+#: Editor.java:2137
msgid ""
"Processing can only open its own sketches\n"
"and other files ending in .ino or .pde"
-msgstr "O Processing pode abrir apenas os seus próprios sketches\ne outros arquivos terninados com .ino ou .pde"
+msgstr "O processamento só pode abrir seus próprios sketches\ne outros arquivos terminados em .ino ou .pde"
#: ../../../processing/app/I18n.java:86
msgid "Processor"
-msgstr ""
+msgstr "Processador"
-#: Editor.java:695
+#: Editor.java:704
msgid "Programmer"
-msgstr "Gravador"
+msgstr "Programador"
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
msgid "Quit"
msgstr "Sair"
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
msgid "Redo"
msgstr "Refazer"
-#: Editor.java:1065
+#: Editor.java:1078
msgid "Reference"
msgstr "Referência"
@@ -1108,272 +1171,287 @@ msgstr "Referência"
msgid "Rename"
msgstr "Renomear"
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
msgid "Replace"
msgstr "Substituir"
#: FindReplace.java:122 FindReplace.java:129
msgid "Replace & Find"
-msgstr "Substituir e Buscar"
+msgstr "Substituir e Localizar"
#: FindReplace.java:120 FindReplace.java:131
msgid "Replace All"
-msgstr "Substituir Tudo"
+msgstr "Substituir todos"
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
msgid "Replace the existing version of {0}?"
-msgstr "Substituir a versão existente do {0}?"
+msgstr "Substituir a versão existente de {0}?"
#: FindReplace.java:81
msgid "Replace with:"
-msgstr "Substituir por:"
+msgstr "Substituir com:"
-#: Preferences.java:109
+#: Preferences.java:113
msgid "Romanian"
msgstr "Romeno"
-#: Preferences.java:110
+#: Preferences.java:114
msgid "Russian"
-msgstr ""
+msgstr "Russo"
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
msgid "Save"
msgstr "Salvar"
-#: Editor.java:530
+#: Editor.java:537
msgid "Save As..."
-msgstr "Salvar Como..."
+msgstr "Salvar como..."
-#: Editor.java:2270
+#: Editor.java:2317
msgid "Save Canceled."
-msgstr "Cancelado "
+msgstr "Salvamento cancelado."
-#: Editor.java:2420
+#: Editor.java:2467
msgid "Save changes before export?"
msgstr "Salvar alterações antes de exportar?"
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
msgid "Save changes to \"{0}\"? "
-msgstr "Salvar alterações para \"{0}\"?"
+msgstr "Salvar alterações em \"{0}\"?"
-#: Sketch.java:829
+#: Sketch.java:825
msgid "Save sketch folder as..."
-msgstr "Salvar pasta do sketch como..."
+msgstr "Salvar a pasta de sketches como..."
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
msgstr "Salvando..."
-#: Base.java:1623
+#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
-msgstr "Selecione (ou crie uma nova) pasta para seus sketches..."
+msgstr "Selecione (ou crie uma nova) pasta para as sketches..."
-#: Editor.java:1184 Editor.java:2692
+#: Editor.java:1198 Editor.java:2739
msgid "Select All"
-msgstr "Selecionar Tudo"
+msgstr "Selecionar tudo"
-#: ../../../processing/app/Base.java:2845
+#: Base.java:2636
msgid "Select a zip file or a folder containing the library you'd like to add"
-msgstr ""
+msgstr "Selecione um arquivo zip ou uma pasta que contenha a biblioteca que quer adicionar"
-#: Sketch.java:979
+#: Sketch.java:975
msgid "Select an image or other data file to copy to your sketch"
-msgstr "Selecione a imagem ou outro arquivo de dados para copiar\npara seu sketch."
+msgstr "Selecione uma imagem ou outro arquivo de dados para copiar para seu sketch"
-#: Preferences.java:314
+#: Preferences.java:330
msgid "Select new sketchbook location"
-msgstr "Selecione uma nova localização para o sketchbook."
+msgstr "Selecione um novo local para o Sketchbook"
#: ../../../processing/app/debug/Compiler.java:146
msgid "Selected board depends on '{0}' core (not installed)."
-msgstr ""
+msgstr "A placa selecionada depende do núcleo '{0}' (não instalado)."
#: SerialMonitor.java:93
msgid "Send"
msgstr "Enviar"
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
msgid "Serial Monitor"
-msgstr "Monitor Serial"
+msgstr "Monitor serial"
-#: Serial.java:147
+#: Serial.java:174
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quiting any programs that may be "
"using it."
-msgstr "A Porta Serial \"{0}\" já esta em uso. Tente fechar quaisquer programas que podem estar utilizando-a. "
+msgstr "Porta Serial \"{0}\" já está sendo usada. Feche qualquer programa que talvez a esteja ocupando."
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
msgid ""
"Serial port ''{0}'' already in use. Try quitting any programs that may be "
"using it."
-msgstr ""
+msgstr "Porta Serial \"{0}\" já está sendo usada. Feche qualquer programa que talvez a esteja ocupando."
-#: Serial.java:167
+#: Serial.java:194
#, java-format
msgid ""
-"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
-"Serial Port menu?"
-msgstr "A porta Serial \"{0}\" não foi encontrada. Você selecionou a porta correta em Ferramentas > Menu Portas Seriais?"
+"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
+" Serial Port menu?"
+msgstr "Porta Serial \"{0}\" não encontrada. Você selecionou corretamente em Ferramentas > Porta Serial?"
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
msgid ""
"Serial port {0} not found.\n"
"Retry the upload with another serial port?"
-msgstr "Porta Serial {0} não encontrada.\nTentar a transferência com outra porta serial?"
+msgstr "Porta serial {0} não encontrada.\nTentar carregar usando outra porta serial?"
-#: Base.java:1440
+#: Base.java:1681
msgid "Settings issues"
-msgstr "Configurações"
+msgstr "Definições de problemas"
-#: Editor.java:634
+#: Editor.java:641
msgid "Show Sketch Folder"
-msgstr "Exibir Pasta dos Sketchs "
+msgstr "Mostrar a página do Sketch"
#: ../../../processing/app/EditorStatus.java:468
msgid "Show verbose output during compilation"
-msgstr ""
+msgstr "Mostrar saída verbosa durante a compilação"
-#: Preferences.java:371
+#: Preferences.java:387
msgid "Show verbose output during: "
-msgstr "Exibir modo verboso durante: "
+msgstr "Mostrar mensagens de saída durante:"
-#: Editor.java:600
+#: Editor.java:607
msgid "Sketch"
msgstr "Sketch"
-#: Sketch.java:1796
+#: Sketch.java:1754
msgid "Sketch Disappeared"
-msgstr "O Sketch Desapareceu"
+msgstr "O sketch desapareceu"
-#: Base.java:1095
+#: Base.java:1411
msgid "Sketch Does Not Exist"
-msgstr "O Sketch não existe"
+msgstr "A Sketch não existe."
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
msgid "Sketch is Read-Only"
-msgstr "Sketch somente-leitura."
+msgstr "O sketch é somente-leitura"
-#: Sketch.java:298
+#: Sketch.java:294
msgid "Sketch is Untitled"
-msgstr "Sketch sem título"
+msgstr "O sketch está sem nome"
-#: Sketch.java:724
+#: Sketch.java:720
msgid "Sketch is read-only"
-msgstr "Sketch está marcado somente para leitura"
+msgstr "O sketch é somente-leitura"
-#: Sketch.java:1694
+#: Sketch.java:1653
msgid ""
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
"tips on reducing it."
-msgstr "Sketch é muito grande; veja http://www.arduino.cc/en/Guide/Troubleshooting#size para dicas em como reduzi-lo."
+msgstr "Sketch muito grande; veja http://www.arduino.cc/en/Guide/Troubleshooting#size para dicas de como reduzi-lo."
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+msgid ""
+"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
+"bytes."
+msgstr "O sketch usa {0} bytes ({2}%%) de espaço de armazenamento para programas. O máximo são {1} bytes."
+
+#: Editor.java:510
msgid "Sketchbook"
msgstr "Sketchbook"
-#: Base.java:257
+#: Base.java:258
msgid "Sketchbook folder disappeared"
-msgstr "A Pasta do Sketchbook desapareceu"
+msgstr "A pasta de sketchbooks desapareceu"
-#: Preferences.java:299
+#: Preferences.java:315
msgid "Sketchbook location:"
-msgstr "Localização do Sketchbook:"
+msgstr "Local do Sketchbook:"
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
+#: ../../../processing/app/Preferences.java:152
+msgid "Slovenian"
+msgstr "Esloveno"
+
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save the sketch in another location,\n"
"and try again."
-msgstr "Alguns Arquivos estão marcados como \"somente-leitura\", portanto\nvocê precisará voltar a salvar o sketch em outro local,\ne tentar novamente."
+msgstr "Alguns arquivos são marcados como \"somente-leitura\",\nentão você terá que salvar o sketch em outro local e \ntentar novamente."
-#: Sketch.java:725
+#: Sketch.java:721
msgid ""
"Some files are marked \"read-only\", so you'll\n"
"need to re-save this sketch to another location."
-msgstr "Alguns arquivos estão marcados como \"somente leitura\", então você\nprecisará salvar novamente este sketch em outro lugar."
+msgstr "Alguns arquivos são marcados como \"somente-leitura\",\nentão você terá que salvar este sketch em outro local."
-#: Sketch.java:461
+#: Sketch.java:457
#, java-format
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
-msgstr "Desculpe, o sketch (ou a pasta) chamada \"{0}\" já existe."
+msgstr "Desculpe, um sketch (ou pasta) de nome \"{0}\" já existe."
-#: Preferences.java:111
+#: Preferences.java:115
msgid "Spanish"
msgstr "Espanhol"
-#: Base.java:537
+#: Base.java:540
msgid "Sunshine"
-msgstr "Luz do sol"
+msgstr "Nascer-do-sol"
-#: Preferences.java:83
+#: ../../../processing/app/Preferences.java:153
+msgid "Swedish"
+msgstr "Sueco"
+
+#: Preferences.java:84
msgid "System Default"
-msgstr ""
+msgstr "Padrão do Sistema"
-#: ../../../processing/app/Preferences.java:116
+#: Preferences.java:116
msgid "Tamil"
-msgstr ""
+msgstr "Tâmil"
-#: debug/Compiler.java:471
+#: debug/Compiler.java:414
msgid "The 'BYTE' keyword is no longer supported."
-msgstr "A palavra-chave 'BYTE' não é mais suportada."
+msgstr "A palavra-chave 'BYTE\" não é mais suportada."
-#: debug/Compiler.java:483
+#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
-msgstr "A classe Client foi renomeada para EthernetClient."
+msgstr "A classe Cliente foi renomeada para EthernetClient."
-#: debug/Compiler.java:477
+#: debug/Compiler.java:420
msgid "The Server class has been renamed EthernetServer."
msgstr "A classe Server foi renomeada para EthernetServer."
-#: debug/Compiler.java:489
+#: debug/Compiler.java:432
msgid "The Udp class has been renamed EthernetUdp."
-msgstr "A clase Udp foi renomeada para EthernetUdp."
+msgstr "A classe Udp foi renomeada para EthernetUdp."
-#: Base.java:185
+#: Base.java:192
msgid "The error message follows, however Arduino should run fine."
-msgstr "Existe uma mensagem de erro, no entanto o Arduino deve funcionar corretamente."
+msgstr "A mensagem de erro persistirá, mas o Arduino deve rodar corretamente."
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
msgid ""
"The file \"{0}\" needs to be inside\n"
"a sketch folder named \"{1}\".\n"
"Create this folder, move the file, and continue?"
-msgstr "O arquivo \"{0}\" precisa estar dentro\nda pasta sketch \"{1}\".\nCriar esta pasta, mover o arquivo, e continuar?"
+msgstr "O arquivo \"{0}\" precisa estar dentro\nde uma pasta de sketch chamada \"{1}\".\nCriar esta pasta, mover o arquivo e continuar?"
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
msgid ""
"The library \"{0}\" cannot be used.\n"
"Library names must contain only basic letters and numbers.\n"
"(ASCII only and no spaces, and it cannot start with a number)"
-msgstr "A biblioteca \"{0}\" não pode ser utilizada.\nNomes para biblioteca devem conter somente elementos básicos\ne números. (somente ASCII e sem espaços, e não pode começar com um número)."
+msgstr "A Biblioteca \"{0}\" não pode ser usada. Os nomes de Biblioteca devem conter apenas letras básicas e números. \\n(Apenas ASCII, sem espaços. Não pode começar com um número)"
-#: Sketch.java:378
+#: Sketch.java:374
msgid ""
"The main file can't use an extension.\n"
"(It may be time for your to graduate to a\n"
"\"real\" programming environment)"
-msgstr "O arquivo principal não pode usar uma extensão.\n(Este pode ser o momento para você mudar\npara um ambiente \"real\" de programação)"
+msgstr "O arquivo principal não pode usar uma extensão.\n(Pode ser hora de você mudar para um ambiente\nde programação \"real\")."
-#: Sketch.java:360
+#: Sketch.java:356
msgid "The name cannot start with a period."
-msgstr "O nome não pode começar com um ponto."
+msgstr "O nome não pode começar com um ponto-final."
-#: Base.java:1096
+#: Base.java:1412
msgid ""
"The selected sketch no longer exists.\n"
"You may need to restart Arduino to update\n"
"the sketchbook menu."
-msgstr "O sketch selecionado não existe mais.\nPode ser que você tenha que reiniciar o Arduino\npara atualizar o menu sketchbook."
+msgstr "A sketch não existe mais.\\n Talvez você precise reiniciar o Arduino para atualizar o menu do Sketchbook."
-#: Base.java:1125
+#: Base.java:1430
#, java-format
msgid ""
"The sketch \"{0}\" cannot be used.\n"
@@ -1381,93 +1459,93 @@ msgid ""
"(ASCII-only with no spaces, and it cannot start with a number).\n"
"To get rid of this message, remove the sketch from\n"
"{1}"
-msgstr "O sketch \"{0}\" não pode ser utilizado.\nNomes de sketch devem conter somente caracteres simples e números\n(ASCII, sem espaços e não deve iniciar com um número).\nPara eliminar esta mensagem, remova o sketch de\n{1}"
+msgstr "O sketch \"{0}\" não pode ser usado.\nNomes de sketches devem conter somente letras e números\nsimples (somente ASCII sem espaços e não podem iniciar com\num número).\nPara não ver mais esta mensagem, remova o sketch de {1}"
-#: Sketch.java:1797
+#: Sketch.java:1755
msgid ""
"The sketch folder has disappeared.\n"
" Will attempt to re-save in the same location,\n"
"but anything besides the code will be lost."
-msgstr "A pasta do sketch desapareceu.\nUma nova tentativa de salvar na mesma pasta será executada, \nnada no seu código será perdido."
+msgstr "A pasta do sketch desapareceu.\nTentarei salvar novamente no mesmo local,\nmas qualquer coisa além do código será perdida."
-#: Sketch.java:2060
+#: Sketch.java:2018
msgid ""
"The sketch name had to be modified. Sketch names can only consist\n"
"of ASCII characters and numbers (but cannot start with a number).\n"
"They should also be less less than 64 characters long."
-msgstr "O nome do sketch teve que ser modificado. Os nomes para Sketch só podem\nconter caracteres ASCII e números (não podem começar com um número).\nEles devem ter no máximo 64 caracteres de comprimento."
+msgstr "O nome do sketch teve que ser modificado. Nomes de sketch podem ser formados apenas de caracteres ASCII e números (mas não podem começar com números) e devem conter menos de 64 caracteres."
-#: Base.java:258
+#: Base.java:259
msgid ""
"The sketchbook folder no longer exists.\n"
"Arduino will switch to the default sketchbook\n"
"location, and create a new sketchbook folder if\n"
"necessary. Arduino will then stop talking about\n"
"himself in the third person."
-msgstr "A pasta sketchbook não existe mais.\nArduino irá trocar para o local padrão,\ne irá criar uma nova pasta sketchbook se\nnecessário. O Arduino então irá parar de falar sobre\nele mesmo em terceira pessoa."
+msgstr "A pasta do sketchbook não existe mais.\nO Arduino irá alternar para o local padrão\ndo sketchbook e criar uma nova pasta de\nsketchbook, se necessário. E então, o\nArduino irá parar de falar sobre si mesmo\nna terceira pessoa."
-#: Sketch.java:1079
+#: Sketch.java:1075
msgid ""
"This file has already been copied to the\n"
"location from which where you're trying to add it.\n"
"I ain't not doin nuthin'."
-msgstr "Este arquivo já foi copiado para o local\nonde você está tentando adicioná-lo.\nNada a fazer."
+msgstr "Este arquivo já foi copiado para o local\nonde você está tentando adicioná-lo.\nEu ainda não fiz nada."
#: ../../../processing/app/EditorStatus.java:467
msgid "This report would have more information with"
-msgstr ""
+msgstr "Este relatório deveria ter mais informações"
-#: Base.java:532
+#: Base.java:535
msgid "Time for a Break"
-msgstr "Hora de uma pausa"
+msgstr "Pausa para descanso"
-#: Editor.java:656
+#: Editor.java:663
msgid "Tools"
msgstr "Ferramentas"
-#: Editor.java:1057
+#: Editor.java:1070
msgid "Troubleshooting"
-msgstr "Solução de problemas"
+msgstr "Resolução de problemas"
#: ../../../processing/app/Preferences.java:117
msgid "Turkish"
-msgstr ""
+msgstr "Turco"
#: ../../../processing/app/Editor.java:2507
msgid "Type board password to access its console"
-msgstr ""
+msgstr "Digite a senha da placa para acessar seu console"
#: ../../../processing/app/Sketch.java:1673
msgid "Type board password to upload a new sketch"
-msgstr ""
+msgstr "Digite a senha da placa para carregar um novo sketch"
#: ../../../processing/app/Preferences.java:118
msgid "Ukrainian"
-msgstr ""
+msgstr "Ucraniano"
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
msgid "Unable to connect: is the sketch using the bridge?"
-msgstr ""
+msgstr "Não foi possivel conectar: o sketch está usando a ponte?"
#: ../../../processing/app/NetworkMonitor.java:130
-msgid "Unable to connect: retrying ("
-msgstr ""
+msgid "Unable to connect: retrying"
+msgstr "Não foi possível conectar: tentando novamente"
#: ../../../processing/app/Editor.java:2526
msgid "Unable to connect: wrong password?"
-msgstr ""
+msgstr "Não foi possível conectar: senha errada?"
#: ../../../processing/app/Editor.java:2512
msgid "Unable to open serial monitor"
-msgstr ""
+msgstr "Não foi possível abrir o monitor da porta serial"
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
msgid "Uncaught exception type: {0}"
-msgstr "Tipo de exceção não tratada: {0}"
+msgstr "Tipo de exceção não capturado: {0}"
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
msgid "Undo"
msgstr "Desfazer"
@@ -1476,45 +1554,45 @@ msgid ""
"Unspecified platform, no launcher available.\n"
"To enable opening URLs or folders, add a \n"
"\"launcher=/path/to/app\" line to preferences.txt"
-msgstr "Plataforma não específicada, nenhuma lançador disponível.\nPara habilitar Abrir URLs ou pastas, adicione a\nlinha \"launcher=/path/to/app\" em preferences.txt"
+msgstr "Plataforma não especificada, nenhum lançador disponível.\nPara habilitar a abertura de URLs ou pastas, adicione uma\nlinha \"launcher=/caminho/para/aplicativo\" ao arquivo preferences.txt"
#: UpdateCheck.java:111
msgid "Update"
-msgstr "Atualizar"
+msgstr "Atualização"
-#: Preferences.java:412
+#: Preferences.java:428
msgid "Update sketch files to new extension on save (.pde -> .ino)"
-msgstr "Atualizar arquivos sketch para nova extensão ao salvar (.pde -> .ino)"
+msgstr "Atualizar arquivos de sketch para nova extensão ao salvar (.pde -> .ino)"
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
msgid "Upload"
msgstr "Carregar"
-#: Editor.java:546 EditorToolbar.java:46
+#: EditorToolbar.java:46 Editor.java:553
msgid "Upload Using Programmer"
-msgstr "Carregar Utilizando um Gravador"
+msgstr "Carregar usando programador"
-#: Editor.java:2356 Editor.java:2392
+#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
-msgstr "Transferência cancelada."
+msgstr "Carregamento cancelado."
#: ../../../processing/app/Sketch.java:1678
msgid "Upload cancelled"
-msgstr ""
+msgstr "Carregamento cancelado"
-#: Editor.java:2331
+#: Editor.java:2378
msgid "Uploading to I/O Board..."
-msgstr "Transferindo para placa I/O."
+msgstr "Carregando para placa de E/S..."
-#: Sketch.java:1661
+#: Sketch.java:1622
msgid "Uploading..."
msgstr "Carregando..."
-#: Editor.java:1255
+#: Editor.java:1269
msgid "Use Selection For Find"
-msgstr "Use Seleção Para Procurar"
+msgstr "Usar Seleção Para Localizar"
-#: Preferences.java:393
+#: Preferences.java:409
msgid "Use external editor"
msgstr "Usar editor externo"
@@ -1522,97 +1600,101 @@ msgstr "Usar editor externo"
msgid "Verify"
msgstr "Verificar"
-#: Editor.java:602
+#: Editor.java:609
msgid "Verify / Compile"
-msgstr "Verificar / Compilar "
+msgstr "Verificar / Compilar"
-#: Preferences.java:384
+#: Preferences.java:400
msgid "Verify code after upload"
-msgstr "Verifique o cógido depois de carregar"
+msgstr "Verificar código depois de carregar"
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+msgid "Vietnamese"
+msgstr "Vietnamita"
+
+#: Editor.java:1105
msgid "Visit Arduino.cc"
msgstr "Visite Arduino.cc"
-#: Base.java:1842
+#: Base.java:2128
msgid "Warning"
-msgstr "Alerta"
+msgstr "Aviso"
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() foi renomeado para Wire.read()."
-#: debug/Compiler.java:495
+#: debug/Compiler.java:438
msgid "Wire.send() has been renamed Wire.write()."
-msgstr "Wire.send() foi renomeado para Wire.write()."
+msgstr "Wire.send() foi renomeada para Wire.write()."
#: FindReplace.java:105
msgid "Wrap Around"
-msgstr "Pesquisa Circular"
+msgstr "Quebrar linhas"
#: debug/Uploader.java:213
msgid ""
"Wrong microcontroller found. Did you select the right board from the Tools "
"> Board menu?"
-msgstr "Microcontrolador errado encontrado. Você selecionou a placa correta em Ferramentas > Menu de Placas?"
+msgstr "Encontrado um microcontrolador errado. Você selecionou a placa correta a partir do menu Ferramentas > Placa?"
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
msgid "Yes"
msgstr "Sim"
-#: Sketch.java:1078
+#: Sketch.java:1074
msgid "You can't fool me"
-msgstr "Você não pode me enganar."
+msgstr "Você não pode me enganar"
-#: Sketch.java:415
+#: Sketch.java:411
msgid "You can't have a .cpp file with the same name as the sketch."
-msgstr "Você não pode ter um .cpp com o mesmo nome do seu sketch."
+msgstr "Você não pode ter um arquivo .cpp com o mesmo nome de um sketch."
-#: Sketch.java:425
+#: Sketch.java:421
msgid ""
"You can't rename the sketch to \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr "Você não pode renomear o sketch para \"{0}\"\npois o sketch já tem um arquivo .cpp com este nome."
+msgstr "Você não pode renomear o sketch como \"{0}\"\nporque o sketch já tem um arquivo .cpp com este nome."
-#: Sketch.java:865
+#: Sketch.java:861
msgid ""
"You can't save the sketch as \"{0}\"\n"
"because the sketch already has a .cpp file with that name."
-msgstr "Você não pode salvar o sketch como \"{0}\"\npois o sketch já tem um arquivo .cpp com este nome."
+msgstr "Você não pode salvar o sketch como \"{0}\" \\n porque o sketch já tem um arquivo .cpp com este nome."
-#: Sketch.java:887
+#: Sketch.java:883
msgid ""
"You cannot save the sketch into a folder\n"
"inside itself. This would go on forever."
-msgstr "Você não pode salvar o sketch dentro da própria pasta.\nIsto entrará num loop infinito."
+msgstr "Você não pode salvar o sketch em uma pasta\ndentro de si mesma. Isto iria acontecer infinitamente."
-#: Base.java:1602
+#: Base.java:1888
msgid "You forgot your sketchbook"
msgstr "Você esqueceu seu sketchbook"
#: ../../../processing/app/AbstractMonitor.java:92
msgid ""
"You've pressed {0} but nothing was sent. Should you select a line ending?"
-msgstr ""
+msgstr "Você pressionou {0} mas nada foi enviado. Você selecionou o final de uma linha?"
-#: Base.java:533
+#: Base.java:536
msgid ""
"You've reached the limit for auto naming of new sketches\n"
"for the day. How about going for a walk instead?"
-msgstr "Você chegou ao limite de auto nomeação de novas sketches\npara o dia. Que tal em vez disso sair para uma caminha?"
+msgstr "Você alcançou o limite diário de auto-nomeação para novas sketches. \\n Que tal uma caminhada?"
-#: ../../../processing/app/Base.java:2847
+#: Base.java:2638
msgid "ZIP files or folders"
-msgstr ""
+msgstr "Arquivos ZIP ou pastas"
-#: ../../../processing/app/Base.java:2870
+#: Base.java:2661
msgid "Zip doesn't contain a library"
-msgstr ""
+msgstr "O arquivo zip não contém uma biblioteca"
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
msgid "\".{0}\" is not a valid extension."
-msgstr "\".{0}\" não é uma extensão valida."
+msgstr "\".{0}\" não é uma extensão válida."
#: SketchCode.java:258
#, java-format
@@ -1621,97 +1703,90 @@ msgid ""
"older version of Processing,you may need to use Tools -> Fix Encoding & "
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
"todelete the bad characters to get rid of this warning."
-msgstr "\"{0}\" contém caracteres desconhecidos. Caso este código tenha sido criado com uma versão antiga do Processing, você deve ir em Ferramentas -> Corrir Codificação & Recarregar para atualizar o sketch e usar UTF-8 como codificação. Caso contrário, você precisa apagar os caracteres errados para se livrar desta mensagem."
+msgstr "\"{0}\" contem caracteres não reconhecidos. Se este código foi criado usando uma versão antiga do Processing, você pode usar o menu Ferramentas -> Corrigir codificação e recarregar para atualizar o sketch e usar a codificação UTF-8. Caso contrário, você terá que excluir os caracteres errados para não ver mais este aviso."
-#: debug/Compiler.java:466
+#: debug/Compiler.java:409
msgid ""
"\n"
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
-"You appear to be using it or another library that depends on the SPI "
-"library.\n"
+"You appear to be using it or another library that depends on the SPI library.\n"
"\n"
-msgstr "\nA partir do Arduino 0019, a biblioteca Ethernet depende da biblioteca SPI.\nVocê parece estar utilizando ela ou outra biblioteca que depende da biblioteca SPI.\n\n"
+msgstr "\nComo o Arduino 0019, a biblioteca Ethernet depende da biblioteca SPI.\nParece que você já está usando ela ou outra biblioteca que depende da biblioteca SPI.\n\n"
-#: debug/Compiler.java:472
+#: debug/Compiler.java:415
msgid ""
"\n"
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
"Please use Serial.write() instead.\n"
"\n"
-msgstr "\nA partir do Arduino 1.0, a palavra-chave 'BYTE' não é mais suportada.\nPor favor utiliza Serial.write() no lugar.\n\n"
+msgstr "\nComo o Arduino 1.0, a palavra chave 'BYTE' não é mais suportada.\nPor favor, em vez disso, use Serial.write().\n\n"
-#: debug/Compiler.java:484
+#: debug/Compiler.java:427
msgid ""
"\n"
-"As of Arduino 1.0, the Client class in the Ethernet library has been renamed "
-"to EthernetClient.\n"
+"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
"\n"
-msgstr "\nA partir do Arduino 1.0, a classe Client na biblioteca Ethernet foi renomeada para EthernetClient.\n"
+msgstr "\nclass=\"marksource newline\" title=\"Nova linha\">\nDesde o Arduino 1.0, a classe Cliente na biblioteca Ethernet foi renomeada para EthernetClient. class=\"marksource newline\" title=\"Nova linha>\"\nclass=\"marksource newline\" title=\"Nova linha\">\n"
-#: debug/Compiler.java:478
+#: debug/Compiler.java:421
msgid ""
"\n"
-"As of Arduino 1.0, the Server class in the Ethernet library has been renamed "
-"to EthernetServer.\n"
+"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
"\n"
-msgstr "\nA partir do Arduino 1.0, a classe Server na biblioteca Ethernet foi renomeada para EthernetServer.\n\n"
+msgstr "\nclass=\"marksource newline\" title=\"Nova linha\">\nDesde o Arduino 1.0, a classe Server na biblioteca Ethernet foi renomeada para EthernetServer. class=\"marksource newline\" title=\"Nova linha>\"\nclass=\"marksource newline\" title=\"Nova linha\">\n\n"
-#: ../../../processing/app/debug/Compiler.java:451
+#: debug/Compiler.java:433
msgid ""
"\n"
-"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to "
-"EthernetUdp.\n"
+"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
"\n"
-msgstr ""
+msgstr "\nclass=\"marksource newline\" title=\"Nova linha\">\nDesde o Arduino 1.0, a classe Udp na biblioteca Ethernet foi renomeada para EthernetUdp. class=\"marksource newline\" title=\"Nova linha>\"\nclass=\"marksource newline\" title=\"Nova linha\">\n"
-#: debug/Compiler.java:502
+#: debug/Compiler.java:445
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() "
-"for consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
"\n"
-msgstr "\nA partir do Arduino 1.0, a função Wire.receive() foi renomeada para Wire.read() a fim de manter a consistência com outras bibliotecas. \n"
+msgstr "\nDesde o Arduino 1.0, a função Wire.receive() foi renomeada para Wire.read() por questões de consistência com outras bibliotecas.\n\n"
-#: debug/Compiler.java:496
+#: debug/Compiler.java:439
msgid ""
"\n"
-"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for "
-"consistency with other libraries.\n"
+"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
"\n"
-msgstr "\nA partir do Arduino 1.0, a função Wire.send() foi renomeada para \nWire.write() para manter a consistência com outras bibliotecas.\n"
+msgstr "\nDesd o Arduino 1.0, a função Wire.send() foi renomeada para Wire.write() por questões de consistência com outras bibliotecas.\n\n"
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
+#: SerialMonitor.java:130 SerialMonitor.java:133
msgid "baud"
-msgstr ""
+msgstr "velocidade"
-#: Preferences.java:373
+#: Preferences.java:389
msgid "compilation "
-msgstr "compilação "
+msgstr "compilação"
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
-msgstr ""
+msgstr "conectado!"
-#: Sketch.java:544
+#: Sketch.java:540
msgid "createNewFile() returned false"
msgstr "createNewFile() retornou falso"
#: ../../../processing/app/EditorStatus.java:469
msgid "enabled in File > Preferences."
-msgstr ""
+msgstr "habilitado em Arquivo > Preferências."
-#: Base.java:1804
+#: Base.java:2090
msgid "environment"
msgstr "ambiente"
-#: Editor.java:1094
+#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
#: ../../../processing/app/debug/Compiler.java:49
msgid "http://github.com/arduino/Arduino/issues"
-msgstr ""
+msgstr "http://github.com/arduino/Arduino/issues"
#: UpdateCheck.java:118
msgid "http://www.arduino.cc/en/Main/Software"
@@ -1721,72 +1796,68 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
-#: Base.java:1789
+#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
-msgstr "ignorando tamanho {0} inválido para a fonte"
+msgstr "ignorando tamanho de fonte inválido {0}"
-#: Base.java:1794
+#: Base.java:2080
msgid "index.html"
-msgstr "index.html"
+msgstr "indice.html"
-#: Editor.java:927 Editor.java:934
+#: Editor.java:936 Editor.java:943
msgid "name is null"
-msgstr "o nome esta vazio"
+msgstr "nome é nulo"
-#: Base.java:1804
+#: Base.java:2090
msgid "platforms.html"
-msgstr "platforms.html"
+msgstr "plataformas.html"
-#: Serial.java:424
+#: Serial.java:451
#, java-format
msgid ""
"readBytesUntil() byte buffer is too small for the {0} bytes up to and "
"including char {1}"
-msgstr "o buffer readBytesUntil() é muito pequeno para até {0} bytes, incluindo char {1} "
+msgstr "O buffer de byte de readBytesUntil() é muito pequeno para até {0} bytes, incluindo o caractere {1}"
-#: Sketch.java:651
+#: Sketch.java:647
msgid "removeCode: internal error.. could not find code"
msgstr "removeCode: erro interno.. não foi possível encontrar o código"
-#: Editor.java:923
+#: Editor.java:932
msgid "serialMenu is null"
-msgstr "serialMenu esta vazio"
+msgstr "serialMenu é nulo"
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
msgid ""
"the selected serial port {0} does not exist or your board is not connected"
-msgstr "a porta serial {0} não existe ou a placa não esta conectada"
+msgstr "a porta serial {0} selecionada não existe ou sua placa não está conectada"
-#: ../../../processing/app/EditorStatus.java:456
-msgid "to clipboard"
-msgstr ""
-
-#: Preferences.java:375
+#: Preferences.java:391
msgid "upload"
msgstr "carregar"
-#: Editor.java:373
+#: Editor.java:380
#, java-format
msgid "{0} files added to the sketch."
-msgstr "{0} arquivos adicionados a este sketch."
+msgstr "{0} arquivos adicionados ao sketch."
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
msgid "{0} returned {1}"
msgstr "{0} retornou {1}"
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
diff --git a/app/src/processing/app/i18n/Resources_pt_BR.properties b/app/src/processing/app/i18n/Resources_pt_BR.properties
index 8297a1cb4..d069e94c3 100644
--- a/app/src/processing/app/i18n/Resources_pt_BR.properties
+++ b/app/src/processing/app/i18n/Resources_pt_BR.properties
@@ -8,1173 +8,1231 @@
# Hugo Lavalle Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Ao fechar o \u00faltimo sketch aberto o Arduino se encerrar\u00e1.
+#: Base.java:773
+\ Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=Fechar o \u00faltimo sketch finalizar\u00e1 o Arduino.
-#: Editor.java:2006
-\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Se voc\u00ea n\u00e3o salvar, suas altera\u00e7\u00f5es ser\u00e3o perdidas.
+#: Editor.java:2053
+\ If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Se voc\u00ea n\u00e3o salvar, suas altera\u00e7\u00f5es ser\u00e3o perdidas.
-#: Sketch.java:402
+#: Sketch.java:398
#, java-format
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Um arquivo chamado "{0}" j\u00e1 existe em "{1}"
-#: Editor.java:2122
+#: Editor.java:2169
#, java-format
-A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=O nome para a pasta "{0}" j\u00e1 existe. N\u00e3o foi poss\u00edvel abrir o sketch.
+A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Uma pasta chamada "{0}" j\u00e1 existe. Imposs\u00edvel abrir o sketch.
-#: ../../../processing/app/Base.java:2894
+#: Base.java:2690
#, java-format
-!A\ library\ named\ {0}\ already\ exists=
+A\ library\ named\ {0}\ already\ exists=Uma biblioteca chamada {0} j\u00e1 existe
#: UpdateCheck.java:103
-A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Uma nova vers\u00e3o de Arduino est\u00e1 dispon\u00edvel,\nvoc\u00ea gostaria de visitar a p\u00e1gina de download?
+A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Uma nova vers\u00e3o de Arduino est\u00e1 dispon\u00edvel, \\n voc\u00ea gostaria de visitar a p\u00e1gina de Download?
#: EditorConsole.java:153
-A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ocorreu um problema ao tentar abrir os\narquivos utilizados para armazenar a sa\u00edda do console.
+A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Um problema ocorreu ao tentar abrir os\narquivos usados para armazenar a sa\u00edda do console.
-#: Editor.java:1102
-About\ Arduino=Sobre o Arduino
+#: Editor.java:1116
+About\ Arduino=Sobre Arduino
-#: Editor.java:643
-Add\ File...=Adicionar Arquivo...
+#: Editor.java:650
+Add\ File...=Adicionar arquivo...
-#: ../../../processing/app/Base.java:1102
-!Add\ Library...=
+#: Base.java:963
+Add\ Library...=Adicionar Biblioteca...
#: tools/FixEncoding.java:77
-An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ocorreu um erro ao tentar corrigir a codifica\u00e7\u00e3o do arquivo\nN\u00e3o tente salvar esse sketch pois voc\u00ea pode sobrescrever a\nvers\u00e3o antiga. Utilize Abrir para reabrir o sketch e tentar novamente.\n
+An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Um erro ocorreu ao tentar corrigir a codifica\u00e7\u00e3o do arquivo.\nN\u00e3o tente salvar este sketch pois ele pode ser sobrescrever a\nvers\u00e3o antiga. Use Abrir para reabrir o sketch e tente novamente.\n
-#: Base.java:221
-An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ocorreu um erro desconhecido ao carregar\nc\u00f3digo espec\u00edfico da plataforma para o seu computador.
-
-#: Preferences.java:84
-!Arabic=
+#: Base.java:228
+An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ocorreu um erro desconhecido ao tenta carregar\nc\u00f3digo espec\u00edfico da plataforma para sua m\u00e1quina.
#: Preferences.java:85
-!Aragonese=
+Arabic=\u00c1rabe
+
+#: Preferences.java:86
+Aragonese=Aragon\u00eas
#: tools/Archiver.java:48
-Archive\ Sketch=Arquivar o Sketch
+Archive\ Sketch=Arquivar sketch
#: tools/Archiver.java:109
Archive\ sketch\ as\:=Arquivar sketch como\:
#: tools/Archiver.java:139
-Archive\ sketch\ canceled.=Arquivamento do sketch cancelado.
+Archive\ sketch\ canceled.=Arquivo de sketch cancelado.
#: tools/Archiver.java:75
-Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arquivamento do sketch foi cancelado pois\no sketch n\u00e3o pode ser salvo corretamente.
+Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=O arquivo do sketch foi cancelado porque\no sketch n\u00e3o p\u00f4de ser salvo corretamente.
#: ../../../processing/app/I18n.java:83
-!Arduino\ ARM\ (32-bits)\ Boards=
+Arduino\ ARM\ (32-bits)\ Boards=Placas Arduino ARM (32-bits)
#: ../../../processing/app/I18n.java:82
-!Arduino\ AVR\ Boards=
+Arduino\ AVR\ Boards=Placas Arduino AVR
-#: Base.java:1441
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino n\u00e3o pode executar porque n\u00e3o foi poss\u00edvel\ncriar uma pasta para armazenar suas configura\u00e7\u00f5es.
+#: Base.java:1682
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=O Arduino n\u00e3o pode rodar porque n\u00e3o consegue \\n criar uma pasta para armazenar as suas configura\u00e7\u00f5es.
-#: Base.java:1603
-Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=N\u00e3o \u00e9 poss\u00edvel executar o Arduino pois\na pasta do skecthbook n\u00e3o p\u00f4de ser criado.
+#: Base.java:1889
+Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=O Arduino n\u00e3o pode rodar porque n\u00e3o consegue \\n criar uma pasta para armazenar as suas sketchbooks.
-#: Base.java:233
-Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requer a JDK completa (n\u00e3o apenas a JRE)\npara rodar. Por favor instale a JDK 1.5 ou posterior.\nMais informa\u00e7\u00f5es podem ser encontradas na refer\u00eancia.
+#: Base.java:240
+Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=O Arduino requer o JDK completo (n\u00e3o apenas uma JRE)\npara rodar. Por favor, instale o JDK 1.5 ou superior.\nMais informa\u00e7\u00f5es podem ser encontradas nas Refer\u00eancias.
#: ../../../processing/app/EditorStatus.java:471
-!Arduino\:\ =
+Arduino\:\ =Arduino\:
-#: Sketch.java:592
+#: Sketch.java:588
#, java-format
-Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Voc\u00ea tem certeza que quer deletar "{0}" ?
+Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Tem certeza que quer excluir "{0}"?
-#: Sketch.java:591
-Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Voc\u00ea tem certeza que quer deletar este sketch?
+#: Sketch.java:587
+Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Tem certeza que quer excluir este sketch?
+
+#: ../../../processing/app/Preferences.java:137
+Armenian=Arm\u00eanio
+
+#: ../../../processing/app/Preferences.java:138
+Asturian=Asturiano
#: tools/AutoFormat.java:91
-Auto\ Format=Auto Formata\u00e7\u00e3o
+Auto\ Format=Autoformata\u00e7\u00e3o
+
+#: tools/AutoFormat.java:934
+Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Autoformata\u00e7\u00e3o cancelada\: muitas chaves esquerdas.
+
+#: tools/AutoFormat.java:925
+Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Autoformata\u00e7\u00e3o cancelada\: muitos par\u00eanteses esquerdos.
#: tools/AutoFormat.java:931
-Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de colchetes \u00e0 esquerda.
+Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Autoformata\u00e7\u00e3o cancelada\: muitas chaves direitas.
#: tools/AutoFormat.java:922
-Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de par\u00eanteses \u00e0 esquerda.
+Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Autoformata\u00e7\u00e3o cancelada\: muitos par\u00eanteses direitos.
-#: tools/AutoFormat.java:928
-Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de colchetes \u00e0 direita.
+#: tools/AutoFormat.java:944
+Auto\ Format\ finished.=Autoformata\u00e7\u00e3o conclu\u00edda.
-#: tools/AutoFormat.java:919
-Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de par\u00eanteses \u00e0 direita.
-
-#: tools/AutoFormat.java:941
-Auto\ Format\ finished.=Auto Formata\u00e7\u00e3o terminada.
-
-#: Preferences.java:423
-Automatically\ associate\ .ino\ files\ with\ Arduino=Associar automaticamente arquivos .ino com o Arduino
+#: Preferences.java:439
+Automatically\ associate\ .ino\ files\ with\ Arduino=Associar arquivos .ino ao Arduino automaticamente
#: SerialMonitor.java:110
-Autoscroll=Rolagem autom\u00e1tica
+Autoscroll=Auto-rolagem
-#: Editor.java:2572
+#: Editor.java:2619
#, java-format
Bad\ error\ line\:\ {0}=Erro na linha\: {0}
-#: Editor.java:2089
-Bad\ file\ selected=Arquivo errado selecionado
+#: Editor.java:2136
+Bad\ file\ selected=Arquivo inv\u00e1lido selecionado
-#: ../../../processing/app/Sketch.java:1638
-#, java-format
-!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+#: ../../../processing/app/Preferences.java:139
+Belarusian=Bielorrusso
-#: Editor.java:682
+#: ../../../processing/app/Base.java:1433
+#: ../../../processing/app/Editor.java:707
Board=Placa
#: ../../../processing/app/debug/TargetBoard.java:42
#, java-format
-!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
+Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Placa {0}\:{1}\:{2} n\u00e3o define uma prefer\u00eancia ''build.board''. Autoconfigurada para\: {3}
#: ../../../processing/app/EditorStatus.java:472
-!Board\:\ =
+Board\:\ =Placa\:
+
+#: ../../../processing/app/Preferences.java:140
+Bosnian=B\u00f3snio
#: SerialMonitor.java:112
-Both\ NL\ &\ CR=Ambos NL & CR
+Both\ NL\ &\ CR=Ambos, NL e CR
-#: Preferences.java:80
-Browse=Navegar
+#: Preferences.java:81
+Browse=Navegador
-#: Sketch.java:1393 Sketch.java:1424
-Build\ folder\ disappeared\ or\ could\ not\ be\ written=A Pasta para compila\u00e7\u00e3o desapareceu ou n\u00e3o pode ser escrita
+#: Sketch.java:1392 Sketch.java:1423
+Build\ folder\ disappeared\ or\ could\ not\ be\ written=A pasta de compila\u00e7\u00e3o desapareceu ou n\u00e3o pode ser escrita
#: ../../../processing/app/Preferences.java:80
-!Bulgarian=
+Bulgarian=B\u00falgaro
-#: Editor.java:699
+#: ../../../processing/app/Preferences.java:141
+Burmese\ (Myanmar)=Birman\u00eas (Miamar)
+
+#: Editor.java:708
Burn\ Bootloader=Gravar Bootloader
-#: Editor.java:2457
-Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Gravando bootloader para placa I/O (isso pode demorar alguns minutos)...
+#: Editor.java:2504
+Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Gravando o bootloader na placa de E/S (isso pode demorar um tempinho)...
#: ../../../processing/app/Base.java:368
-!Can't\ open\ source\ sketch\!=
+Can't\ open\ source\ sketch\!=N\u00e3o \u00e9 poss\u00edvel abrir o fonte do sketch\!
#: ../../../processing/app/Preferences.java:92
-!Canadian\ French=
+Canadian\ French=Franc\u00eas canadense
-#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
-#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
+#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2064 Editor.java:2145 Editor.java:2465
Cancel=Cancelar
-#: Sketch.java:459
-Cannot\ Rename=N\u00e3o \u00e9 poss\u00edvel Renomear
+#: Sketch.java:455
+Cannot\ Rename=N\u00e3o \u00e9 poss\u00edvel renomear
#: SerialMonitor.java:112
-Carriage\ return=Carriage return
-
-#: Preferences.java:86
-Catalan=Catal\u00e3o
-
-#: Preferences.java:403
-Check\ for\ updates\ on\ startup=Checar novas atualiza\u00e7\u00f5es ao iniciar
+Carriage\ return=Retorno de carro
#: Preferences.java:87
-Chinese\ Simplified=Chin\u00eas Simplificado
+Catalan=Catal\u00e3o
+
+#: Preferences.java:419
+Check\ for\ updates\ on\ startup=Checar atualiza\u00e7\u00f5es ao iniciar
+
+#: ../../../processing/app/Preferences.java:142
+Chinese\ (China)=Chin\u00eas (China)
+
+#: ../../../processing/app/Preferences.java:142
+Chinese\ (Hong\ Kong)=Chin\u00eas (Hong Kong)
+
+#: ../../../processing/app/Preferences.java:144
+Chinese\ (Taiwan)=Chin\u00eas (Taiwan)
+
+#: ../../../processing/app/Preferences.java:143
+Chinese\ (Taiwan)\ (Big5)=Chin\u00eas (Taiwan) (Big5)
#: Preferences.java:88
-!Chinese\ Traditional=
+Chinese\ Simplified=Chin\u00eas Simplificado
-#: Editor.java:514 Editor.java:1977
+#: Preferences.java:89
+Chinese\ Traditional=Chin\u00eas Tradicional
+
+#: Editor.java:521 Editor.java:2024
Close=Fechar
-#: Editor.java:1194 Editor.java:2702
-Comment/Uncomment=Comentar/Descomentar
+#: Editor.java:1208 Editor.java:2749
+Comment/Uncomment=Comentar/descomentar
-#: debug/Uploader.java:54 debug/Compiler.java:43
+#: debug/Compiler.java:49 debug/Uploader.java:45
#, java-format
-Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro do compilador, por favor envie este c\u00f3digo para {0}
+Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro do compilador. Por favor, envie este c\u00f3digo para {0}
-#: Editor.java:1843 Sketch.java:1647
-Compiling\ sketch...=Compilando o sketch...
+#: Sketch.java:1608 Editor.java:1890
+Compiling\ sketch...=Compilando sketch...
#: EditorConsole.java:152
-Console\ Error=Erro do Console
+Console\ Error=Console de erro
-#: Editor.java:1143 Editor.java:2660
+#: Editor.java:1157 Editor.java:2707
Copy=Copiar
-#: Editor.java:1163 Editor.java:2676
+#: Editor.java:1177 Editor.java:2723
Copy\ as\ HTML=Copiar como HTML
#: ../../../processing/app/EditorStatus.java:456
-!Copy\ error=
+Copy\ error=Erro ao copiar
-#: Editor.java:1151 Editor.java:2668
-Copy\ for\ Forum=Copiar para o Forum
+#: Editor.java:1165 Editor.java:2715
+Copy\ for\ Forum=Copiar para F\u00f3rum
-#: Sketch.java:1093
+#: Sketch.java:1089
#, java-format
-Could\ not\ add\ ''{0}''\ to\ the\ sketch.=N\u00e3o foi poss\u00edvel adicionar "{0}" ao sketch
+Could\ not\ add\ ''{0}''\ to\ the\ sketch.=N\u00e3o foi poss\u00edvel adicionar "{0}" ao sketch.
-#: Editor.java:2141
-Could\ not\ copy\ to\ a\ proper\ location.=N\u00e3o foi poss\u00edvel copiar para o local correto.
+#: Editor.java:2188
+Could\ not\ copy\ to\ a\ proper\ location.=N\u00e3o foi poss\u00edvel copiar para uma localiza\u00e7\u00e3o apropriada.
-#: Editor.java:2132
-Could\ not\ create\ the\ sketch\ folder.=N\u00e3o foi poss\u00edvel criar a pasta do cketch.
+#: Editor.java:2179
+Could\ not\ create\ the\ sketch\ folder.=N\u00e3o foi poss\u00edvel criar a pasta de sketch.
-#: Editor.java:2159
+#: Editor.java:2206
Could\ not\ create\ the\ sketch.=N\u00e3o foi poss\u00edvel criar o sketch.
-#: Sketch.java:621
+#: Sketch.java:617
#, java-format
-Could\ not\ delete\ "{0}".=N\u00e3o foi poss\u00edvel apagar "{0}".
+Could\ not\ delete\ "{0}".=N\u00e3o foi poss\u00edvel excluir "{0}".
-#: Sketch.java:1070
+#: Sketch.java:1066
#, java-format
-Could\ not\ delete\ the\ existing\ ''{0}''\ file.=N\u00e3o \u00e9 poss\u00edvel deletar o arquivo "{0}" existente.
+Could\ not\ delete\ the\ existing\ ''{0}''\ file.=N\u00e3o foi poss\u00edvel excluir o arquivo existente, chamado "{0}".
-#: Base.java:2247 Base.java:2270
+#: Base.java:2533 Base.java:2556
#, java-format
-Could\ not\ delete\ {0}=N\u00e3o foi poss\u00edvel deletar {0}
+Could\ not\ delete\ {0}=N\u00e3o foi poss\u00edvel excluir {0}
#: ../../../processing/app/debug/TargetPlatform.java:74
#, java-format
-!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
+Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=N\u00e3o foi poss\u00edvel encontrar boards.txt em {0}. Isto \u00e9 pr\u00e9-1.5?
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
#, java-format
-!Could\ not\ find\ tool\ {0}=
+Could\ not\ find\ tool\ {0}=N\u00e3o foi poss\u00edvel encontrar ferramenta {0}
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
#, java-format
-!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
+Could\ not\ find\ tool\ {0}\ from\ package\ {1}=N\u00e3o foi poss\u00edvel encontrar ferramenta {0} a partir do pacote {1}
-#: Base.java:1648
+#: Base.java:1934
#, java-format
-Could\ not\ open\ the\ URL\n{0}=N\u00e3o foi poss\u00edvel abrir a URL\n{0}
+Could\ not\ open\ the\ URL\n{0}=N\u00e3o foi poss\u00edvel abrir o URL\n{0}
-#: Base.java:1672
+#: Base.java:1958
#, java-format
-Could\ not\ open\ the\ folder\n{0}=N\u00e3o foi poss\u00edvel abrir pasta\n{0}
+Could\ not\ open\ the\ folder\n{0}=N\u00e3o foi poss\u00edvel abrir a pasta\n{0}
-#: Sketch.java:1811
-Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=N\u00e3o foi poss\u00edvel voltar a salvar corretamente o sketch. Voc\u00ea deve estar em apuros agora,\ne deve copiar e colar seu c\u00f3digo em outro editor de texto.
+#: Sketch.java:1769
+Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=N\u00e3o foi poss\u00edvel salvar novamente o sketch. Voc\u00ea deve estar com problemas agora\ne acho que \u00e9 hora de copiar e salvar seu c\u00f3digo em outro editor de texto.
-#: Sketch.java:1810
+#: Sketch.java:1768
Could\ not\ re-save\ sketch=N\u00e3o foi poss\u00edvel salvar novamente o sketch
#: Theme.java:52
-Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=As configura\u00e7\u00f5es de cor do tema n\u00e3o podem ser lidas.\nVoc\u00ea precisa reinstalar o Processing.
+Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es do esquema de cores.\nVoc\u00ea ter\u00e1 que reinstalar o Processing.
-#: Preferences.java:210
-Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es padr\u00e3o.\nSer\u00e1 necess\u00e1rio instalar Arduino novamente.
+#: Preferences.java:219
+Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es padr\u00e3o.\nVoc\u00ea ter\u00e1 que reinstalar o Arduino.
-#: Preferences.java:242
+#: Preferences.java:258
#, java-format
-Could\ not\ read\ preferences\ from\ {0}=N\u00e3o foi poss\u00edvel ler prefer\u00eancias de {0}
+Could\ not\ read\ preferences\ from\ {0}=N\u00e3o foi poss\u00edvel ler as prefer\u00eancias de {0}
-#: Base.java:2196
+#: Base.java:2482
#, java-format
-Could\ not\ remove\ old\ version\ of\ {0}=N\u00e3o foi poss\u00edvel remover a vers\u00e3o antiga {0}
+Could\ not\ remove\ old\ version\ of\ {0}=N\u00e3o foi poss\u00edvel remover a vers\u00e3o antiga de {0}
-#: Sketch.java:487 Sketch.java:532
+#: Sketch.java:483 Sketch.java:528
#, java-format
-Could\ not\ rename\ "{0}"\ to\ "{1}"=N\u00e3o \u00e9 poss\u00edvel renomear "{0}" para "{1}"
+Could\ not\ rename\ "{0}"\ to\ "{1}"=N\u00e3o foi poss\u00edvel renomear "{0}" para "{1}"
-#: Sketch.java:479
-Could\ not\ rename\ the\ sketch.\ (0)=N\u00e3o \u00e9 poss\u00edvel renomear o sketch. (0)
+#: Sketch.java:475
+Could\ not\ rename\ the\ sketch.\ (0)=N\u00e3o foi poss\u00edvel renomear o sketch. (0)
-#: Sketch.java:500
-Could\ not\ rename\ the\ sketch.\ (1)=N\u00e3o \u00e9 poss\u00edvel renomear o sketch. (1)
+#: Sketch.java:496
+Could\ not\ rename\ the\ sketch.\ (1)=N\u00e3o foi poss\u00edvel renomear o sketch. (1)
-#: Sketch.java:507
-Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o \u00e9 poss\u00edvel renomear o sketch. (2)
+#: Sketch.java:503
+Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o foi poss\u00edvel renomear o sketch. (2)
-#: Base.java:2206
+#: Base.java:2492
#, java-format
Could\ not\ replace\ {0}=N\u00e3o foi poss\u00edvel substituir {0}
#: tools/Archiver.java:74
-Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel arquivar o sketch.
+Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel arquivar sketch
-#: Sketch.java:1689
-Couldn't\ determine\ program\ size\:\ {0}=N\u00e3o foi poss\u00edvel determinar o tamanho do programa\: {0}
+#: Sketch.java:1647
+Couldn't\ determine\ program\ size\:\ {0}=Falha ao determinar tamanho do programa\: {0}
-#: Sketch.java:620
-Couldn't\ do\ it=N\u00e3o foi poss\u00edvel fazer isso.
+#: Sketch.java:616
+Couldn't\ do\ it=N\u00e3o foi poss\u00edvel fazer isso
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:208
-!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
+#: debug/BasicUploader.java:209
+Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=N\u00e3o foi poss\u00edvel encontrar uma placa na porta selecionada. Verifique se voc\u00ea selecionou a porta correta. Em caso positivo, tente pressionar o bot\u00e3o reset na placa depois de iniciar o carregamento.
#: ../../../processing/app/Preferences.java:82
-!Croatian=
+Croatian=Croata
-#: Editor.java:1135 Editor.java:2652
-Cut=Copiar
+#: Editor.java:1149 Editor.java:2699
+Cut=Cortar
#: ../../../processing/app/Preferences.java:83
-!Czech=
-
-#: Preferences.java:89
-Danish=Dinamarqu\u00eas
-
-#: Editor.java:1210 Editor.java:2718
-Decrease\ Indent=Diminuir Recuo
-
-#: Sketch.java:595 EditorHeader.java:314
-Delete=Deletar
-
-#: debug/Uploader.java:203
-Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo n\u00e3o esta respondendo, verifique se a porta serial correta foi selecionada ou RESET a placa antes de exportar
-
-#: tools/FixEncoding.java:57
-Discard\ all\ changes\ and\ reload\ sketch?=Descartar todas as altera\u00e7\u00f5es e reabrir o sketch?
-
-#: Editor.java:2017
-Don't\ Save=N\u00e3o salvar
-
-#: Editor.java:2228 Editor.java:2264
-Done\ Saving.=Salvar conclu\u00eddo.
-
-#: Editor.java:2463
-Done\ burning\ bootloader.=Grava\u00e7\u00e3o do bootloader finalizada.
-
-#: Editor.java:1864 Editor.java:1881
-Done\ compiling.=Compila\u00e7\u00e3o terminada.
-
-#: Editor.java:2517
-Done\ printing.=Impress\u00e3o finalizada.
-
-#: Editor.java:2348 Editor.java:2384
-Done\ uploading.=Transfer\u00eancia conclu\u00edda.
+Czech=Tcheco
#: Preferences.java:90
-Dutch=Holand\u00eas
+Danish=Dinamarqu\u00eas
-#: Editor.java:1116
-Edit=Editar
+#: Editor.java:1224 Editor.java:2765
+Decrease\ Indent=Diminuir identa\u00e7\u00e3o
-#: Preferences.java:354
-Editor\ font\ size\:\ =Editar tamanho da fonte\:
+#: EditorHeader.java:314 Sketch.java:591
+Delete=Apagar
-#: Preferences.java:337
-!Editor\ language\:\ =
+#: debug/Uploader.java:199
+Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo n\u00e3o est\u00e1 respondendo. Confira se a porta serial \u00e9 a correta ou REINICIE a placa antes de exportar
+
+#: tools/FixEncoding.java:57
+Discard\ all\ changes\ and\ reload\ sketch?=Descartar todas as altera\u00e7\u00f5es e recarregar o sketch?
+
+#: Editor.java:2064
+Don't\ Save=N\u00e3o Salvar
+
+#: Editor.java:2275 Editor.java:2311
+Done\ Saving.=Salvo.
+
+#: Editor.java:2510
+Done\ burning\ bootloader.=Grava\u00e7\u00e3o do bootloader conclu\u00edda.
+
+#: Editor.java:1911 Editor.java:1928
+Done\ compiling.=Compila\u00e7\u00e3o terminada.
+
+#: Editor.java:2564
+Done\ printing.=Impress\u00e3o terminada.
+
+#: Editor.java:2395 Editor.java:2431
+Done\ uploading.=Carregado.
#: Preferences.java:91
+Dutch=Holand\u00eas
+
+#: ../../../processing/app/Preferences.java:144
+Dutch\ (Netherlands)=Holand\u00eas (Holanda)
+
+#: Editor.java:1130
+Edit=Editar
+
+#: Preferences.java:370
+Editor\ font\ size\:\ =Tamanho da fonte do editor\:
+
+#: Preferences.java:353
+Editor\ language\:\ =Idioma do editor\:
+
+#: Preferences.java:92
English=Ingl\u00eas
-#: Editor.java:1049
+#: ../../../processing/app/Preferences.java:145
+English\ (United\ Kingdom)=Ingl\u00eas (Brit\u00e2nico)
+
+#: Editor.java:1062
Environment=Ambiente
-#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
-#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
-#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240
+#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
+#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
+#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206
Error=Erro
-#: Sketch.java:1069 Sketch.java:1092
+#: Sketch.java:1065 Sketch.java:1088
Error\ adding\ file=Erro ao adicionar arquivo
-#: debug/Compiler.java:426
-Error\ compiling.=Erro ao compilar.
+#: debug/Compiler.java:369
+Error\ compiling.=Erro compilando.
-#: Base.java:1433
-Error\ getting\ the\ Arduino\ data\ folder.=Erro ao obter pasta de dados do Arduino.
+#: Base.java:1674
+Error\ getting\ the\ Arduino\ data\ folder.=Erro ao obter a pasta de dados do Arduino.
-#: Serial.java:567
+#: Serial.java:593
#, java-format
-Error\ inside\ Serial.{0}()=Erro dentro da Serial.{0}()
+Error\ inside\ Serial.{0}()=Erro dentro de Serial.{0}()
#: ../../../processing/app/Base.java:1232
-!Error\ loading\ libraries=
+Error\ loading\ libraries=Erro ao carregar bibliotecas
#: ../../../processing/app/debug/TargetPlatform.java:95
#: ../../../processing/app/debug/TargetPlatform.java:106
#: ../../../processing/app/debug/TargetPlatform.java:117
#, java-format
-!Error\ loading\ {0}=
+Error\ loading\ {0}=Erro ao carregar {0}
-#: Serial.java:154
+#: Serial.java:181
#, java-format
-Error\ opening\ serial\ port\ ''{0}''.=Erro ao abrir porta serial "{0}"
+Error\ opening\ serial\ port\ ''{0}''.=Erro ao abrir porta serial "{0}".
-#: Preferences.java:261
+#: Preferences.java:277
Error\ reading\ preferences=Erro lendo prefer\u00eancias
-#: Preferences.java:263
+#: Preferences.java:279
#, java-format
-Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Erro ao ler arquivo de prefer\u00eancias. Por favor delete (ou mova)\n{0} e reinicie o Arduino.
+Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Erro lendo o arquivo de prefer\u00eancias. Por favor, delete (ou remova) \\n {0} em reinicie o Arduino.
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
-!Error\ starting\ discovery\ method\:\ =
+Error\ starting\ discovery\ method\:\ =Erro ao iniciar m\u00e9todo discovery\:
-#: ../../../processing/app/Serial.java:125
+#: Serial.java:125
#, java-format
-!Error\ touching\ serial\ port\ ''{0}''.=
+Error\ touching\ serial\ port\ ''{0}''.=Erro ao tocar a porta serial "{0}".
-#: Editor.java:2465 Editor.java:2469 Editor.java:2473
-Error\ while\ burning\ bootloader.=Erro ao gravar bootloader.
+#: Editor.java:2512 Editor.java:2516 Editor.java:2520
+Error\ while\ burning\ bootloader.=Erro ao gravar o bootloader.
#: ../../../processing/app/Editor.java:2555
-!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
+Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Erro ao gravar bootloader\: faltando o par\u00e2metro de configura\u00e7\u00e3o '{0}'
#: SketchCode.java:83
#, java-format
-Error\ while\ loading\ code\ {0}=Erro ao tentar carregar c\u00f3digo {0}
+Error\ while\ loading\ code\ {0}=Erro durante o carregamento do c\u00f3digo {0}
-#: Editor.java:2520
-Error\ while\ printing.=Erro ao imprimir.
+#: Editor.java:2567
+Error\ while\ printing.=Erro durante impress\u00e3o.
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
-!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
+Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Erro ao carregar\: faltando o par\u00e2metro de configura\u00e7\u00e3o '{0}'
-#: Preferences.java:92
-!Estonian=
+#: Preferences.java:93
+Estonian=Estoniano
-#: Editor.java:509
+#: ../../../processing/app/Preferences.java:146
+Estonian\ (Estonia)=Estoniano (Est\u00f4nia)
+
+#: Editor.java:516
Examples=Exemplos
-#: Editor.java:2435
-Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporta\u00e7\u00e3o cancelada, primeiro salve as altera\u00e7\u00f5es.
+#: Editor.java:2482
+Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporta\u00e7\u00e3o cancelada, altera\u00e7\u00f5es devem ser salvas antes.
-#: Base.java:1814
+#: Base.java:2100
FAQ.html=FAQ.html
-#: Editor.java:484
+#: Editor.java:491
File=Arquivo
#: Preferences.java:94
Filipino=Filipino
#: FindReplace.java:124 FindReplace.java:127
-Find=Buscar
+Find=Localizar
-#: Editor.java:1235
-Find\ Next=Buscar Pr\u00f3ximo
+#: Editor.java:1249
+Find\ Next=Localizar pr\u00f3ximo
-#: Editor.java:1245
-Find\ Previous=Buscar Anterior
+#: Editor.java:1259
+Find\ Previous=Localizar anterior
-#: Editor.java:1073 Editor.java:2728
+#: Editor.java:1086 Editor.java:2775
Find\ in\ Reference=Procurar na Refer\u00eancia
-#: Editor.java:1220
-Find...=Buscar...
+#: Editor.java:1234
+Find...=Localizar...
#: FindReplace.java:80
-Find\:=Buscar\:
+Find\:=Localizar\:
+
+#: ../../../processing/app/Preferences.java:147
+Finnish=Finland\u00eas
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
#: tools/FixEncoding.java:79
-Fix\ Encoding\ &\ Reload=Corrigir Codifica\u00e7\u00e3o & Recarregar
+Fix\ Encoding\ &\ Reload=Corrigir codifica\u00e7\u00e3o e recarregar
-#: ../../../processing/app/Base.java:2057
-!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=
+#: Base.java:1851
+For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Para informa\u00e7\u00f5es sobre como instalar Bibliotecas, veja\: http\://arduino.cc/en/Guide/Libraries\\n
-#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:79
-!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =
-
-#: Preferences.java:93
-French=Franc\u00eas
-
-#: Editor.java:1083
-Frequently\ Asked\ Questions=Perguntas Frequentes
+#: debug/BasicUploader.java:80
+Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =For\u00e7ando reset usando 1200bps na porta open/close
#: Preferences.java:95
-Galician=Galego
+French=Franc\u00eas
-#: ../../../processing/app/Preferences.java:94
-!Georgian=
+#: Editor.java:1097
+Frequently\ Asked\ Questions=Perguntas Frequentes - FAQ
#: Preferences.java:96
-German=Alem\u00e3o
+Galician=Gal\u00edcio
-#: Editor.java:1041
-Getting\ Started=Primeiros passos
+#: ../../../processing/app/Preferences.java:94
+Georgian=Georgiano
#: Preferences.java:97
-Greek=Grego
+German=Alem\u00e3o
-#: Base.java:1799
-Guide_Environment.html=Guide_Environment.html
-
-#: Base.java:1785
-Guide_MacOSX.html=Guia_MacOSX.html
-
-#: Base.java:1809
-Guide_Troubleshooting.html=Guide_Troubleshooting.html
-
-#: Base.java:1787
-Guide_Windows.html=Guia_Windows.html
-
-#: ../../../processing/app/Preferences.java:95
-!Hebrew=
-
-#: Editor.java:1002
-Help=Ajuda
-
-#: ../../../processing/app/Preferences.java:98
-!Hindi=
-
-#: Sketch.java:299
-How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=O que acha de salvar o sketch primeiramente\nantes de tentar renome\u00e1-lo?
-
-#: Sketch.java:886
-How\ very\ Borges\ of\ you=Agora voc\u00ea pegou pesado
-
-#: Preferences.java:98
-Hungarian=H\u00fangaro
-
-#: FindReplace.java:96
-Ignore\ Case=Ignorar Mai\u00fascula/Min\u00fascula
-
-#: Base.java:1207
-Ignoring\ bad\ library\ name=Ingnorando nome inv\u00e1lido de biblioteca
-
-#: Base.java:1132
-Ignoring\ sketch\ with\ bad\ name=Ignorando sketch com nome inv\u00e1lido.
-
-#: Editor.java:629
-Import\ Library...=Importar Biblioteca...
-
-#: ../../../processing/app/Sketch.java:736
-!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
-
-#: Editor.java:1202 Editor.java:2710
-Increase\ Indent=Aumentar Recuo
-
-#: Preferences.java:99
-!Indonesian=
-
-#: ../../../processing/app/Base.java:1204
-#, java-format
-!Invalid\ library\ found\ in\ {0}\:\ {1}=
-
-#: Preferences.java:100
-Italian=Italiano
-
-#: Preferences.java:101
-Japanese=Japon\u00eas
-
-#: Preferences.java:102
-!Korean=
-
-#: Preferences.java:103
-Latvian=Let\u00e3o
-
-#: ../../../processing/app/Base.java:2903
-!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=
-
-#: Preferences.java:104
-!Lithuaninan=
-
-#: ../../../processing/app/Sketch.java:1660
-!Low\ memory\ available,\ stability\ problems\ may\ occur=
-
-#: ../../../processing/app/Preferences.java:106
-!Marathi=
-
-#: Base.java:1826
-Message=Mensagem
+#: Editor.java:1054
+Getting\ Started=Iniciando
#: ../../../processing/app/Sketch.java:1646
#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes=
+Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=Vari\u00e1veis globais usam {0} bytes ({2}%%) de mem\u00f3ria din\u00e2mica, deixando {3} bytes para vari\u00e1veis locais. O m\u00e1ximo s\u00e3o {1} bytes.
-#: ../../../processing/app/Sketch.java:1643
+#: ../../../processing/app/Sketch.java:1651
#, java-format
-!Minimum\ Memory\ usage\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)\ -\ {2}%%\ used=
+Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Vari\u00e1veis globais usam {0} bytes de mem\u00f3ria din\u00e2mica.
-#: Sketch.java:1754
-Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Faltando o */ no final do /* coment\u00e1rio */
+#: Preferences.java:98
+Greek=Grego
-#: Preferences.java:433
+#: Base.java:2085
+Guide_Environment.html=Guide_Environment.html
+
+#: Base.java:2071
+Guide_MacOSX.html=Guia_MacOSX.html
+
+#: Base.java:2095
+Guide_Troubleshooting.html=Guia_SolucionarProblemas.html
+
+#: Base.java:2073
+Guide_Windows.html=Guia_Windows.html
+
+#: ../../../processing/app/Preferences.java:95
+Hebrew=Hebreu
+
+#: Editor.java:1015
+Help=Ajuda
+
+#: Preferences.java:99
+Hindi=Hindi
+
+#: Sketch.java:295
+How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Que tal salvar o sketch antes de\ntentar renome\u00e1-lo?
+
+#: Sketch.java:882
+How\ very\ Borges\ of\ you=Qu\u00e3o sutil de sua parte
+
+#: Preferences.java:100
+Hungarian=H\u00fangaro
+
+#: FindReplace.java:96
+Ignore\ Case=Ignorar mai\u00fasculiza\u00e7\u00e3o
+
+#: Base.java:1058
+Ignoring\ bad\ library\ name=Ignorando nome inapropriado para Biblioteca.
+
+#: Base.java:1436
+Ignoring\ sketch\ with\ bad\ name=Ignorando sketch com nome inapropriado
+
+#: Editor.java:636
+Import\ Library...=Importar biblioteca...
+
+#: ../../../processing/app/Sketch.java:736
+In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=No Arduino 1.0, a extens\u00e3o de arquivo padr\u00e3o mudou de\n.pde para .ino Novos sketches (incluindo aqueles criados\npelo comando "Salvar como") usar\u00e3o a nova extens\u00e3o.\nA extens\u00e3o de sketches existentes ser\u00e1 atualizada ao\nsalvar, mas voc\u00ea pode desabilitar isto no di\u00e1logo de \nPrefer\u00eancias.\n\nSalvar e atualizar sua extens\u00e3o?
+
+#: Editor.java:1216 Editor.java:2757
+Increase\ Indent=Aumentar identa\u00e7\u00e3o
+
+#: Preferences.java:101
+Indonesian=Indon\u00e9sio
+
+#: ../../../processing/app/Base.java:1204
+#, java-format
+Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioteca inv\u00e1lida encontrada em {0}\: {1}
+
+#: Preferences.java:102
+Italian=Italiano
+
+#: Preferences.java:103
+Japanese=Japon\u00eas
+
+#: Preferences.java:104
+Korean=Coreano
+
+#: Preferences.java:105
+Latvian=Let\u00e3o
+
+#: Base.java:2699
+Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteca adicionada. Veja o menu "Importar biblioteca"
+
+#: Preferences.java:106
+Lithuaninan=Lituano
+
+#: ../../../processing/app/Sketch.java:1660
+Low\ memory\ available,\ stability\ problems\ may\ occur=Pouca mem\u00f3ria dispon\u00edvel, problemas de estabilidade podem ocorrer
+
+#: Preferences.java:107
+Marathi=Marathi
+
+#: Base.java:2112
+Message=Mensagem
+
+#: Sketch.java:1712
+Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Faltando o */ no final de um /* coment\u00e1rio */
+
+#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mais prefer\u00eancias podem ser editadas diretamente no arquivo
-#: Editor.java:2109
+#: Editor.java:2156
Moving=Movendo
-#: Sketch.java:286
+#: Sketch.java:282
Name\ for\ new\ file\:=Nome para o novo arquivo\:
-#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
-!Network\ upload\ using\ programmer\ not\ supported=
+#: ../../../processing/app/Preferences.java:149
+Nepali=Nepali
-#: Editor.java:486 EditorToolbar.java:41
+#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
+Network\ upload\ using\ programmer\ not\ supported=Carregamento pela rede usando programador n\u00e3o suportado
+
+#: EditorToolbar.java:41 Editor.java:493
New=Novo
#: EditorToolbar.java:46
-New\ Editor\ Window=Nova Janela de Edi\u00e7\u00e3o
+New\ Editor\ Window=Nova janela de edi\u00e7\u00e3o
#: EditorHeader.java:292
New\ Tab=Nova Aba
#: SerialMonitor.java:112
-Newline=Nova Linha
+Newline=Nova-linha
#: EditorHeader.java:340
Next\ Tab=Pr\u00f3xima Aba
-#: UpdateCheck.java:108 Preferences.java:77
+#: Preferences.java:78 UpdateCheck.java:108
No=N\u00e3o
-#: debug/Compiler.java:79
-No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nenhuma placa selecionada, por favor escolha a placa em Ferramentas > Menu Placas.
+#: debug/Compiler.java:126
+No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nenhuma placa selecionada. Por favor, escolha uma placa no menu Ferramentas > Placa
-#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
-No\ changes\ necessary\ for\ Auto\ Format.=Sem altera\u00e7\u00f5es necess\u00e1rias para a Auto Formata\u00e7\u00e3o.
+#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
+No\ changes\ necessary\ for\ Auto\ Format.=Nenhuma altera\u00e7\u00e3o necess\u00e1ria para Autoformata\u00e7\u00e3o
-#: Editor.java:366
-No\ files\ were\ added\ to\ the\ sketch.=Nenhum arquivo adicionado ao sketch.
+#: Editor.java:373
+No\ files\ were\ added\ to\ the\ sketch.=Nenhum arquivo foi adicionado ao sketch.
#: Platform.java:167
No\ launcher\ available=Nenhum lan\u00e7ador dispon\u00edvel.
#: SerialMonitor.java:112
-No\ line\ ending=Sem fim de linha.
+No\ line\ ending=Nenhum final-de-linha
-#: Base.java:538
-No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=S\u00e9rio, hora de voc\u00ea tomar um ar puro.
+#: Base.java:541
+No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=S\u00e9rio, voc\u00ea precisa de ar fresco.
-#: Editor.java:1823
+#: Editor.java:1872
#, java-format
-No\ reference\ available\ for\ "{0}"=Nenhuma refer\u00eancia dispon\u00edvel para "{0}"
+No\ reference\ available\ for\ "{0}"=Sem refer\u00eancia dispon\u00edvel para "{0}"
#: ../../../processing/app/Base.java:309
-!No\ valid\ configured\ cores\ found\!\ Exiting...=
+No\ valid\ configured\ cores\ found\!\ Exiting...=N\u00e3o encontrado nenhum n\u00facleo v\u00e1lido configurado. Saindo...
-#: Base.java:184
-Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erro n\u00e3o fatal enquanto configurava Apar\u00eancia.
+#: ../../../processing/app/debug/TargetPackage.java:63
+#, java-format
+No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nenhuma defini\u00e7\u00e3o de hardware v\u00e1lida encontrada na pasta {0}.
-#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
-Nope=N\u00e3o
+#: Base.java:191
+Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erro n\u00e3o-fatal ao configurar o visual.
-#: ../../../processing/app/Preferences.java:107
-!Norwegian=
+#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
+Nope=Nada
#: ../../../processing/app/Preferences.java:108
-!Norwegian\ Bokm\u00e5l=
+Norwegian\ Bokm\u00e5l=Noruegu\u00eas (Bokm\u00e5l)
#: ../../../processing/app/Sketch.java:1656
-!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
+Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Mem\u00f3ria insuficiente. Veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para dicas de como reduzir o tamanho de seu c\u00f3digo.
-#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
-#: Sketch.java:1046 Preferences.java:79
+#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
+#: Editor.java:2145 Editor.java:2465
OK=OK
-#: Editor.java:369 Sketch.java:996
+#: Sketch.java:992 Editor.java:376
One\ file\ added\ to\ the\ sketch.=Um arquivo adicionado ao sketch.
#: EditorToolbar.java:41
Open=Abrir
-#: Editor.java:2641
+#: Editor.java:2688
Open\ URL=Abrir URL
-#: Base.java:633
+#: Base.java:636
Open\ an\ Arduino\ sketch...=Abrir um sketch Arduino...
#: EditorToolbar.java:46
-Open\ in\ Another\ Window=Abrir em outra Janela
+Open\ in\ Another\ Window=Abrir em outra janela
-#: Editor.java:494 Base.java:903
+#: Base.java:903 Editor.java:501
Open...=Abrir...
-#: Editor.java:556
-Page\ Setup=Configura\u00e7\u00e3o de p\u00e1gina
+#: Editor.java:563
+Page\ Setup=Configura\u00e7\u00e3o da p\u00e1gina
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
-!Password\:=
+Password\:=Senha\:
-#: Editor.java:1175 Editor.java:2684
+#: Editor.java:1189 Editor.java:2731
Paste=Colar
-#: Preferences.java:105
+#: Preferences.java:109
Persian=Persa
-#: debug/Compiler.java:465
-Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importe a biblioteca SPI em Sketch > Importar Biblioteca.
+#: debug/Compiler.java:408
+Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor, importe a biblioteca SPI a partir do menu Sketch > Importar biblioteca.
-#: Base.java:232
-Please\ install\ JDK\ 1.5\ or\ later=Por favor instale a JDK 1.5 ou posterior
+#: Base.java:239
+Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale o JDK 1.5 ou superior.
-#: Preferences.java:106
-!Polish=
+#: Preferences.java:110
+Polish=Polon\u00eas
#: ../../../processing/app/Editor.java:718
-!Port=
+Port=Porta
-#: Preferences.java:107 Preferences.java:108
-!Portuguese=
+#: ../../../processing/app/Preferences.java:151
+Portugese=Portugu\u00eas
-#: Editor.java:576 Preferences.java:279
+#: ../../../processing/app/Preferences.java:127
+Portuguese\ (Brazil)=Portugu\u00eas (Brasil)
+
+#: ../../../processing/app/Preferences.java:128
+Portuguese\ (Portugal)=Portugu\u00eas (Portugal)
+
+#: Preferences.java:295 Editor.java:583
Preferences=Prefer\u00eancias
#: FindReplace.java:123 FindReplace.java:128
Previous=Anterior
#: EditorHeader.java:326
-Previous\ Tab=Aba Anterior
+Previous\ Tab=Aba aAnterior
-#: Editor.java:564
+#: Editor.java:571
Print=Imprimir
-#: Editor.java:2524
+#: Editor.java:2571
Printing\ canceled.=Impress\u00e3o cancelada.
-#: Editor.java:2500
+#: Editor.java:2547
Printing...=Imprimindo...
-#: Base.java:1671
-Problem\ Opening\ Folder=Problema ao abrir Pasta
+#: Base.java:1957
+Problem\ Opening\ Folder=Problemas para abrir a pasta
-#: Base.java:1647
-Problem\ Opening\ URL=Problema ao abrir URL
+#: Base.java:1933
+Problem\ Opening\ URL=Problemas para abrir a URL
-#: Base.java:220
+#: Base.java:227
Problem\ Setting\ the\ Platform=Problema ao configurar a Plataforma
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
-!Problem\ accessing\ board\ folder\ /www/sd=
+Problem\ accessing\ board\ folder\ /www/sd=Problema ao acessar a pasta da placa em /www/sd
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
-!Problem\ accessing\ files\ in\ folder\ =
+Problem\ accessing\ files\ in\ folder\ =Problema ao acessar arquivos na pasta
-#: Base.java:1432
-Problem\ getting\ data\ folder=Problema ao obter pasta de dados
+#: Base.java:1673
+Problem\ getting\ data\ folder=Problema ao obter a pasta de dados
-#: Sketch.java:1465
+#: Sketch.java:1467
#, java-format
-Problem\ moving\ {0}\ to\ the\ build\ folder=Problema ao mover {0} para a pasta de compila\u00e7\u00e3o
+Problem\ moving\ {0}\ to\ the\ build\ folder=Problemas ao mover {0} para a pasta de compila\u00e7\u00e3o
#: debug/Uploader.java:209
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema ao carregar para a placa. Veja http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sugest\u00f5es.
-#: Sketch.java:359 Sketch.java:366 Sketch.java:377
-Problem\ with\ rename=Error ao renomear
+#: Sketch.java:355 Sketch.java:362 Sketch.java:373
+Problem\ with\ rename=Problema ao renomear
-#: Editor.java:2090
-Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=O Processing pode abrir apenas os seus pr\u00f3prios sketches\ne outros arquivos terninados com .ino ou .pde
+#: Editor.java:2137
+Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=O processamento s\u00f3 pode abrir seus pr\u00f3prios sketches\ne outros arquivos terminados em .ino ou .pde
#: ../../../processing/app/I18n.java:86
-!Processor=
+Processor=Processador
-#: Editor.java:695
-Programmer=Gravador
+#: Editor.java:704
+Programmer=Programador
-#: Editor.java:586 Base.java:782
+#: Base.java:783 Editor.java:593
Quit=Sair
-#: Editor.java:1124 Editor.java:1126 Editor.java:1376
+#: Editor.java:1138 Editor.java:1140 Editor.java:1390
Redo=Refazer
-#: Editor.java:1065
+#: Editor.java:1078
Reference=Refer\u00eancia
#: EditorHeader.java:300
Rename=Renomear
-#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050
+#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
Replace=Substituir
#: FindReplace.java:122 FindReplace.java:129
-Replace\ &\ Find=Substituir e Buscar
+Replace\ &\ Find=Substituir e Localizar
#: FindReplace.java:120 FindReplace.java:131
-Replace\ All=Substituir Tudo
+Replace\ All=Substituir todos
-#: Sketch.java:1047
+#: Sketch.java:1043
#, java-format
-Replace\ the\ existing\ version\ of\ {0}?=Substituir a vers\u00e3o existente do {0}?
+Replace\ the\ existing\ version\ of\ {0}?=Substituir a vers\u00e3o existente de {0}?
#: FindReplace.java:81
-Replace\ with\:=Substituir por\:
+Replace\ with\:=Substituir com\:
-#: Preferences.java:109
+#: Preferences.java:113
Romanian=Romeno
-#: Preferences.java:110
-!Russian=
+#: Preferences.java:114
+Russian=Russo
-#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41
-#: EditorToolbar.java:46
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
+#: Editor.java:2064 Editor.java:2468
Save=Salvar
-#: Editor.java:530
-Save\ As...=Salvar Como...
+#: Editor.java:537
+Save\ As...=Salvar como...
-#: Editor.java:2270
-Save\ Canceled.=Cancelado
+#: Editor.java:2317
+Save\ Canceled.=Salvamento cancelado.
-#: Editor.java:2420
+#: Editor.java:2467
Save\ changes\ before\ export?=Salvar altera\u00e7\u00f5es antes de exportar?
-#: Editor.java:1973
+#: Editor.java:2020
#, java-format
-Save\ changes\ to\ "{0}"?\ \ =Salvar altera\u00e7\u00f5es para "{0}"?
+Save\ changes\ to\ "{0}"?\ \ =Salvar altera\u00e7\u00f5es em "{0}"?
-#: Sketch.java:829
-Save\ sketch\ folder\ as...=Salvar pasta do sketch como...
+#: Sketch.java:825
+Save\ sketch\ folder\ as...=Salvar a pasta de sketches como...
-#: Editor.java:2223 Editor.java:2261
+#: Editor.java:2270 Editor.java:2308
Saving...=Salvando...
-#: Base.java:1623
-Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecione (ou crie uma nova) pasta para seus sketches...
+#: Base.java:1909
+Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecione (ou crie uma nova) pasta para as sketches...
-#: Editor.java:1184 Editor.java:2692
-Select\ All=Selecionar Tudo
+#: Editor.java:1198 Editor.java:2739
+Select\ All=Selecionar tudo
-#: ../../../processing/app/Base.java:2845
-!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
+#: Base.java:2636
+Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Selecione um arquivo zip ou uma pasta que contenha a biblioteca que quer adicionar
-#: Sketch.java:979
-Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecione a imagem ou outro arquivo de dados para copiar\npara seu sketch.
+#: Sketch.java:975
+Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecione uma imagem ou outro arquivo de dados para copiar para seu sketch
-#: Preferences.java:314
-Select\ new\ sketchbook\ location=Selecione uma nova localiza\u00e7\u00e3o para o sketchbook.
+#: Preferences.java:330
+Select\ new\ sketchbook\ location=Selecione um novo local para o Sketchbook
#: ../../../processing/app/debug/Compiler.java:146
-!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
+Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=A placa selecionada depende do n\u00facleo '{0}' (n\u00e3o instalado).
#: SerialMonitor.java:93
Send=Enviar
-#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
-Serial\ Monitor=Monitor Serial
+#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
+Serial\ Monitor=Monitor serial
-#: Serial.java:147
+#: Serial.java:174
#, java-format
-Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=A Porta Serial "{0}" j\u00e1 esta em uso. Tente fechar quaisquer programas que podem estar utilizando-a.
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Porta Serial "{0}" j\u00e1 est\u00e1 sendo usada. Feche qualquer programa que talvez a esteja ocupando.
-#: ../../../processing/app/Serial.java:121
+#: Serial.java:121
#, java-format
-!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=
+Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Porta Serial "{0}" j\u00e1 est\u00e1 sendo usada. Feche qualquer programa que talvez a esteja ocupando.
-#: Serial.java:167
+#: Serial.java:194
#, java-format
-Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=A porta Serial "{0}" n\u00e3o foi encontrada. Voc\u00ea selecionou a porta correta em Ferramentas > Menu Portas Seriais?
+Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porta Serial "{0}" n\u00e3o encontrada. Voc\u00ea selecionou corretamente em Ferramentas > Porta Serial?
-#: Editor.java:2296
+#: Editor.java:2343
#, java-format
-Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Porta Serial {0} n\u00e3o encontrada.\nTentar a transfer\u00eancia com outra porta serial?
+Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Porta serial {0} n\u00e3o encontrada.\nTentar carregar usando outra porta serial?
-#: Base.java:1440
-Settings\ issues=Configura\u00e7\u00f5es
+#: Base.java:1681
+Settings\ issues=Defini\u00e7\u00f5es de problemas
-#: Editor.java:634
-Show\ Sketch\ Folder=Exibir Pasta dos Sketchs
+#: Editor.java:641
+Show\ Sketch\ Folder=Mostrar a p\u00e1gina do Sketch
#: ../../../processing/app/EditorStatus.java:468
-!Show\ verbose\ output\ during\ compilation=
+Show\ verbose\ output\ during\ compilation=Mostrar sa\u00edda verbosa durante a compila\u00e7\u00e3o
-#: Preferences.java:371
-Show\ verbose\ output\ during\:\ =Exibir modo verboso durante\:
+#: Preferences.java:387
+Show\ verbose\ output\ during\:\ =Mostrar mensagens de sa\u00edda durante\:
-#: Editor.java:600
+#: Editor.java:607
Sketch=Sketch
-#: Sketch.java:1796
-Sketch\ Disappeared=O Sketch Desapareceu
+#: Sketch.java:1754
+Sketch\ Disappeared=O sketch desapareceu
-#: Base.java:1095
-Sketch\ Does\ Not\ Exist=O Sketch n\u00e3o existe
+#: Base.java:1411
+Sketch\ Does\ Not\ Exist=A Sketch n\u00e3o existe.
-#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
-Sketch\ is\ Read-Only=Sketch somente-leitura.
+#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
+Sketch\ is\ Read-Only=O sketch \u00e9 somente-leitura
-#: Sketch.java:298
-Sketch\ is\ Untitled=Sketch sem t\u00edtulo
+#: Sketch.java:294
+Sketch\ is\ Untitled=O sketch est\u00e1 sem nome
-#: Sketch.java:724
-Sketch\ is\ read-only=Sketch est\u00e1 marcado somente para leitura
+#: Sketch.java:720
+Sketch\ is\ read-only=O sketch \u00e9 somente-leitura
-#: Sketch.java:1694
-Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch \u00e9 muito grande; veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para dicas em como reduzi-lo.
+#: Sketch.java:1653
+Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch muito grande; veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para dicas de como reduzi-lo.
-#: Editor.java:503
+#: ../../../processing/app/Sketch.java:1639
+#, java-format
+Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=O sketch usa {0} bytes ({2}%%) de espa\u00e7o de armazenamento para programas. O m\u00e1ximo s\u00e3o {1} bytes.
+
+#: Editor.java:510
Sketchbook=Sketchbook
-#: Base.java:257
-Sketchbook\ folder\ disappeared=A Pasta do Sketchbook desapareceu
+#: Base.java:258
+Sketchbook\ folder\ disappeared=A pasta de sketchbooks desapareceu
-#: Preferences.java:299
-Sketchbook\ location\:=Localiza\u00e7\u00e3o do Sketchbook\:
+#: Preferences.java:315
+Sketchbook\ location\:=Local do Sketchbook\:
-#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alguns Arquivos est\u00e3o marcados como "somente-leitura", portanto\nvoc\u00ea precisar\u00e1 voltar a salvar o sketch em outro local,\ne tentar novamente.
+#: ../../../processing/app/Preferences.java:152
+Slovenian=Esloveno
-#: Sketch.java:725
-Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alguns arquivos est\u00e3o marcados como "somente leitura", ent\u00e3o voc\u00ea\nprecisar\u00e1 salvar novamente este sketch em outro lugar.
+#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alguns arquivos s\u00e3o marcados como "somente-leitura",\nent\u00e3o voc\u00ea ter\u00e1 que salvar o sketch em outro local e \ntentar novamente.
-#: Sketch.java:461
+#: Sketch.java:721
+Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alguns arquivos s\u00e3o marcados como "somente-leitura",\nent\u00e3o voc\u00ea ter\u00e1 que salvar este sketch em outro local.
+
+#: Sketch.java:457
#, java-format
-Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Desculpe, o sketch (ou a pasta) chamada "{0}" j\u00e1 existe.
+Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Desculpe, um sketch (ou pasta) de nome "{0}" j\u00e1 existe.
-#: Preferences.java:111
+#: Preferences.java:115
Spanish=Espanhol
-#: Base.java:537
-Sunshine=Luz do sol
+#: Base.java:540
+Sunshine=Nascer-do-sol
-#: Preferences.java:83
-!System\ Default=
+#: ../../../processing/app/Preferences.java:153
+Swedish=Sueco
-#: ../../../processing/app/Preferences.java:116
-!Tamil=
+#: Preferences.java:84
+System\ Default=Padr\u00e3o do Sistema
-#: debug/Compiler.java:471
-The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palavra-chave 'BYTE' n\u00e3o \u00e9 mais suportada.
+#: Preferences.java:116
+Tamil=T\u00e2mil
-#: debug/Compiler.java:483
-The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A classe Client foi renomeada para EthernetClient.
+#: debug/Compiler.java:414
+The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palavra-chave 'BYTE" n\u00e3o \u00e9 mais suportada.
-#: debug/Compiler.java:477
+#: debug/Compiler.java:426
+The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A classe Cliente foi renomeada para EthernetClient.
+
+#: debug/Compiler.java:420
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A classe Server foi renomeada para EthernetServer.
-#: debug/Compiler.java:489
-The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp foi renomeada para EthernetUdp.
+#: debug/Compiler.java:432
+The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A classe Udp foi renomeada para EthernetUdp.
-#: Base.java:185
-The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Existe uma mensagem de erro, no entanto o Arduino deve funcionar corretamente.
+#: Base.java:192
+The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=A mensagem de erro persistir\u00e1, mas o Arduino deve rodar corretamente.
-#: Editor.java:2100
+#: Editor.java:2147
#, java-format
-The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O arquivo "{0}" precisa estar dentro\nda pasta sketch "{1}".\nCriar esta pasta, mover o arquivo, e continuar?
+The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O arquivo "{0}" precisa estar dentro\nde uma pasta de sketch chamada "{1}".\nCriar esta pasta, mover o arquivo e continuar?
-#: Base.java:1202
+#: Base.java:1054 Base.java:2674
#, java-format
-The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A biblioteca "{0}" n\u00e3o pode ser utilizada.\nNomes para biblioteca devem conter somente elementos b\u00e1sicos\ne n\u00fameros. (somente ASCII e sem espa\u00e7os, e n\u00e3o pode come\u00e7ar com um n\u00famero).
+The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A Biblioteca "{0}" n\u00e3o pode ser usada. Os nomes de Biblioteca devem conter apenas letras b\u00e1sicas e n\u00fameros. \\n(Apenas ASCII, sem espa\u00e7os. N\u00e3o pode come\u00e7ar com um n\u00famero)
-#: Sketch.java:378
-The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O arquivo principal n\u00e3o pode usar uma extens\u00e3o.\n(Este pode ser o momento para voc\u00ea mudar\npara um ambiente "real" de programa\u00e7\u00e3o)
+#: Sketch.java:374
+The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O arquivo principal n\u00e3o pode usar uma extens\u00e3o.\n(Pode ser hora de voc\u00ea mudar para um ambiente\nde programa\u00e7\u00e3o "real").
-#: Sketch.java:360
-The\ name\ cannot\ start\ with\ a\ period.=O nome n\u00e3o pode come\u00e7ar com um ponto.
+#: Sketch.java:356
+The\ name\ cannot\ start\ with\ a\ period.=O nome n\u00e3o pode come\u00e7ar com um ponto-final.
-#: Base.java:1096
-The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=O sketch selecionado n\u00e3o existe mais.\nPode ser que voc\u00ea tenha que reiniciar o Arduino\npara atualizar o menu sketchbook.
+#: Base.java:1412
+The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=A sketch n\u00e3o existe mais.\\n Talvez voc\u00ea precise reiniciar o Arduino para atualizar o menu do Sketchbook.
-#: Base.java:1125
+#: Base.java:1430
#, java-format
-The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=O sketch "{0}" n\u00e3o pode ser utilizado.\nNomes de sketch devem conter somente caracteres simples e n\u00fameros\n(ASCII, sem espa\u00e7os e n\u00e3o deve iniciar com um n\u00famero).\nPara eliminar esta mensagem, remova o sketch de\n{1}
+The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=O sketch "{0}" n\u00e3o pode ser usado.\nNomes de sketches devem conter somente letras e n\u00fameros\nsimples (somente ASCII sem espa\u00e7os e n\u00e3o podem iniciar com\num n\u00famero).\nPara n\u00e3o ver mais esta mensagem, remova o sketch de {1}
-#: Sketch.java:1797
-The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A pasta do sketch desapareceu.\nUma nova tentativa de salvar na mesma pasta ser\u00e1 executada, \nnada no seu c\u00f3digo ser\u00e1 perdido.
+#: Sketch.java:1755
+The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A pasta do sketch desapareceu.\nTentarei salvar novamente no mesmo local,\nmas qualquer coisa al\u00e9m do c\u00f3digo ser\u00e1 perdida.
-#: Sketch.java:2060
-The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=O nome do sketch teve que ser modificado. Os nomes para Sketch s\u00f3 podem\nconter caracteres ASCII e n\u00fameros (n\u00e3o podem come\u00e7ar com um n\u00famero).\nEles devem ter no m\u00e1ximo 64 caracteres de comprimento.
+#: Sketch.java:2018
+The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=O nome do sketch teve que ser modificado. Nomes de sketch podem ser formados apenas de caracteres ASCII e n\u00fameros (mas n\u00e3o podem come\u00e7ar com n\u00fameros) e devem conter menos de 64 caracteres.
-#: Base.java:258
-The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A pasta sketchbook n\u00e3o existe mais.\nArduino ir\u00e1 trocar para o local padr\u00e3o,\ne ir\u00e1 criar uma nova pasta sketchbook se\nnecess\u00e1rio. O Arduino ent\u00e3o ir\u00e1 parar de falar sobre\nele mesmo em terceira pessoa.
+#: Base.java:259
+The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A pasta do sketchbook n\u00e3o existe mais.\nO Arduino ir\u00e1 alternar para o local padr\u00e3o\ndo sketchbook e criar uma nova pasta de\nsketchbook, se necess\u00e1rio. E ent\u00e3o, o\nArduino ir\u00e1 parar de falar sobre si mesmo\nna terceira pessoa.
-#: Sketch.java:1079
-This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este arquivo j\u00e1 foi copiado para o local\nonde voc\u00ea est\u00e1 tentando adicion\u00e1-lo.\nNada a fazer.
+#: Sketch.java:1075
+This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este arquivo j\u00e1 foi copiado para o local\nonde voc\u00ea est\u00e1 tentando adicion\u00e1-lo.\nEu ainda n\u00e3o fiz nada.
#: ../../../processing/app/EditorStatus.java:467
-!This\ report\ would\ have\ more\ information\ with=
+This\ report\ would\ have\ more\ information\ with=Este relat\u00f3rio deveria ter mais informa\u00e7\u00f5es
-#: Base.java:532
-Time\ for\ a\ Break=Hora de uma pausa
+#: Base.java:535
+Time\ for\ a\ Break=Pausa para descanso
-#: Editor.java:656
+#: Editor.java:663
Tools=Ferramentas
-#: Editor.java:1057
-Troubleshooting=Solu\u00e7\u00e3o de problemas
+#: Editor.java:1070
+Troubleshooting=Resolu\u00e7\u00e3o de problemas
#: ../../../processing/app/Preferences.java:117
-!Turkish=
+Turkish=Turco
#: ../../../processing/app/Editor.java:2507
-!Type\ board\ password\ to\ access\ its\ console=
+Type\ board\ password\ to\ access\ its\ console=Digite a senha da placa para acessar seu console
#: ../../../processing/app/Sketch.java:1673
-!Type\ board\ password\ to\ upload\ a\ new\ sketch=
+Type\ board\ password\ to\ upload\ a\ new\ sketch=Digite a senha da placa para carregar um novo sketch
#: ../../../processing/app/Preferences.java:118
-!Ukrainian=
+Ukrainian=Ucraniano
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
-!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
+Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=N\u00e3o foi possivel conectar\: o sketch est\u00e1 usando a ponte?
#: ../../../processing/app/NetworkMonitor.java:130
-!Unable\ to\ connect\:\ retrying\ (=
+Unable\ to\ connect\:\ retrying=N\u00e3o foi poss\u00edvel conectar\: tentando novamente
#: ../../../processing/app/Editor.java:2526
-!Unable\ to\ connect\:\ wrong\ password?=
+Unable\ to\ connect\:\ wrong\ password?=N\u00e3o foi poss\u00edvel conectar\: senha errada?
#: ../../../processing/app/Editor.java:2512
-!Unable\ to\ open\ serial\ monitor=
+Unable\ to\ open\ serial\ monitor=N\u00e3o foi poss\u00edvel abrir o monitor da porta serial
-#: Sketch.java:1433
+#: Sketch.java:1432
#, java-format
-Uncaught\ exception\ type\:\ {0}=Tipo de exce\u00e7\u00e3o n\u00e3o tratada\: {0}
+Uncaught\ exception\ type\:\ {0}=Tipo de exce\u00e7\u00e3o n\u00e3o capturado\: {0}
-#: Editor.java:1119 Editor.java:1341
+#: Editor.java:1133 Editor.java:1355
Undo=Desfazer
#: Platform.java:168
-Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma n\u00e3o espec\u00edficada, nenhuma lan\u00e7ador dispon\u00edvel.\nPara habilitar Abrir URLs ou pastas, adicione a\nlinha "launcher\=/path/to/app" em preferences.txt
+Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma n\u00e3o especificada, nenhum lan\u00e7ador dispon\u00edvel.\nPara habilitar a abertura de URLs ou pastas, adicione uma\nlinha "launcher\=/caminho/para/aplicativo" ao arquivo preferences.txt
#: UpdateCheck.java:111
-Update=Atualizar
+Update=Atualiza\u00e7\u00e3o
-#: Preferences.java:412
-Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Atualizar arquivos sketch para nova extens\u00e3o ao salvar (.pde -> .ino)
+#: Preferences.java:428
+Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Atualizar arquivos de sketch para nova extens\u00e3o ao salvar (.pde -> .ino)
-#: Editor.java:538 EditorToolbar.java:41
+#: EditorToolbar.java:41 Editor.java:545
Upload=Carregar
-#: Editor.java:546 EditorToolbar.java:46
-Upload\ Using\ Programmer=Carregar Utilizando um Gravador
+#: EditorToolbar.java:46 Editor.java:553
+Upload\ Using\ Programmer=Carregar usando programador
-#: Editor.java:2356 Editor.java:2392
-Upload\ canceled.=Transfer\u00eancia cancelada.
+#: Editor.java:2403 Editor.java:2439
+Upload\ canceled.=Carregamento cancelado.
#: ../../../processing/app/Sketch.java:1678
-!Upload\ cancelled=
+Upload\ cancelled=Carregamento cancelado
-#: Editor.java:2331
-Uploading\ to\ I/O\ Board...=Transferindo para placa I/O.
+#: Editor.java:2378
+Uploading\ to\ I/O\ Board...=Carregando para placa de E/S...
-#: Sketch.java:1661
+#: Sketch.java:1622
Uploading...=Carregando...
-#: Editor.java:1255
-Use\ Selection\ For\ Find=Use Sele\u00e7\u00e3o Para Procurar
+#: Editor.java:1269
+Use\ Selection\ For\ Find=Usar Sele\u00e7\u00e3o Para Localizar
-#: Preferences.java:393
+#: Preferences.java:409
Use\ external\ editor=Usar editor externo
#: EditorToolbar.java:41 EditorToolbar.java:46
Verify=Verificar
-#: Editor.java:602
-Verify\ /\ Compile=Verificar / Compilar
+#: Editor.java:609
+Verify\ /\ Compile=Verificar / Compilar
-#: Preferences.java:384
-Verify\ code\ after\ upload=Verifique o c\u00f3gido depois de carregar
+#: Preferences.java:400
+Verify\ code\ after\ upload=Verificar c\u00f3digo depois de carregar
-#: Editor.java:1091
+#: ../../../processing/app/Preferences.java:154
+Vietnamese=Vietnamita
+
+#: Editor.java:1105
Visit\ Arduino.cc=Visite Arduino.cc
-#: Base.java:1842
-Warning=Alerta
+#: Base.java:2128
+Warning=Aviso
-#: debug/Compiler.java:501
+#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() foi renomeado para Wire.read().
-#: debug/Compiler.java:495
-Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() foi renomeado para Wire.write().
+#: debug/Compiler.java:438
+Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() foi renomeada para Wire.write().
#: FindReplace.java:105
-Wrap\ Around=Pesquisa Circular
+Wrap\ Around=Quebrar linhas
#: debug/Uploader.java:213
-Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Microcontrolador errado encontrado. Voc\u00ea selecionou a placa correta em Ferramentas > Menu de Placas?
+Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Encontrado um microcontrolador errado. Voc\u00ea selecionou a placa correta a partir do menu Ferramentas > Placa?
-#: UpdateCheck.java:108 Preferences.java:76
+#: Preferences.java:77 UpdateCheck.java:108
Yes=Sim
-#: Sketch.java:1078
-You\ can't\ fool\ me=Voc\u00ea n\u00e3o pode me enganar.
+#: Sketch.java:1074
+You\ can't\ fool\ me=Voc\u00ea n\u00e3o pode me enganar
-#: Sketch.java:415
-You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Voc\u00ea n\u00e3o pode ter um .cpp com o mesmo nome do seu sketch.
+#: Sketch.java:411
+You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Voc\u00ea n\u00e3o pode ter um arquivo .cpp com o mesmo nome de um sketch.
-#: Sketch.java:425
-You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Voc\u00ea n\u00e3o pode renomear o sketch para "{0}"\npois o sketch j\u00e1 tem um arquivo .cpp com este nome.
+#: Sketch.java:421
+You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Voc\u00ea n\u00e3o pode renomear o sketch como "{0}"\nporque o sketch j\u00e1 tem um arquivo .cpp com este nome.
-#: Sketch.java:865
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Voc\u00ea n\u00e3o pode salvar o sketch como "{0}"\npois o sketch j\u00e1 tem um arquivo .cpp com este nome.
+#: Sketch.java:861
+You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Voc\u00ea n\u00e3o pode salvar o sketch como "{0}" \\n porque o sketch j\u00e1 tem um arquivo .cpp com este nome.
-#: Sketch.java:887
-You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Voc\u00ea n\u00e3o pode salvar o sketch dentro da pr\u00f3pria pasta.\nIsto entrar\u00e1 num loop infinito.
+#: Sketch.java:883
+You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Voc\u00ea n\u00e3o pode salvar o sketch em uma pasta\ndentro de si mesma. Isto iria acontecer infinitamente.
-#: Base.java:1602
+#: Base.java:1888
You\ forgot\ your\ sketchbook=Voc\u00ea esqueceu seu sketchbook
#: ../../../processing/app/AbstractMonitor.java:92
-!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
+You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=Voc\u00ea pressionou {0} mas nada foi enviado. Voc\u00ea selecionou o final de uma linha?
-#: Base.java:533
-You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Voc\u00ea chegou ao limite de auto nomea\u00e7\u00e3o de novas sketches\npara o dia. Que tal em vez disso sair para uma caminha?
+#: Base.java:536
+You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Voc\u00ea alcan\u00e7ou o limite di\u00e1rio de auto-nomea\u00e7\u00e3o para novas sketches. \\n Que tal uma caminhada?
-#: ../../../processing/app/Base.java:2847
-!ZIP\ files\ or\ folders=
+#: Base.java:2638
+ZIP\ files\ or\ folders=Arquivos ZIP ou pastas
-#: ../../../processing/app/Base.java:2870
-!Zip\ doesn't\ contain\ a\ library=
+#: Base.java:2661
+Zip\ doesn't\ contain\ a\ library=O arquivo zip n\u00e3o cont\u00e9m uma biblioteca
-#: Sketch.java:368
+#: Sketch.java:364
#, java-format
-".{0}"\ is\ not\ a\ valid\ extension.=".{0}" n\u00e3o \u00e9 uma extens\u00e3o valida.
+".{0}"\ is\ not\ a\ valid\ extension.=".{0}" n\u00e3o \u00e9 uma extens\u00e3o v\u00e1lida.
#: SketchCode.java:258
#, java-format
-"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" cont\u00e9m caracteres desconhecidos. Caso este c\u00f3digo tenha sido criado com uma vers\u00e3o antiga do Processing, voc\u00ea deve ir em Ferramentas -> Corrir Codifica\u00e7\u00e3o & Recarregar para atualizar o sketch e usar UTF-8 como codifica\u00e7\u00e3o. Caso contr\u00e1rio, voc\u00ea precisa apagar os caracteres errados para se livrar desta mensagem.
+"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contem caracteres n\u00e3o reconhecidos. Se este c\u00f3digo foi criado usando uma vers\u00e3o antiga do Processing, voc\u00ea pode usar o menu Ferramentas -> Corrigir codifica\u00e7\u00e3o e recarregar para atualizar o sketch e usar a codifica\u00e7\u00e3o UTF-8. Caso contr\u00e1rio, voc\u00ea ter\u00e1 que excluir os caracteres errados para n\u00e3o ver mais este aviso.
-#: debug/Compiler.java:466
-\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nA partir do Arduino 0019, a biblioteca Ethernet depende da biblioteca SPI.\nVoc\u00ea parece estar utilizando ela ou outra biblioteca que depende da biblioteca SPI.\n\n
+#: debug/Compiler.java:409
+\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nComo o Arduino 0019, a biblioteca Ethernet depende da biblioteca SPI.\nParece que voc\u00ea j\u00e1 est\u00e1 usando ela ou outra biblioteca que depende da biblioteca SPI.\n\n
-#: debug/Compiler.java:472
-\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nA partir do Arduino 1.0, a palavra-chave 'BYTE' n\u00e3o \u00e9 mais suportada.\nPor favor utiliza Serial.write() no lugar.\n\n
+#: debug/Compiler.java:415
+\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nComo o Arduino 1.0, a palavra chave 'BYTE' n\u00e3o \u00e9 mais suportada.\nPor favor, em vez disso, use Serial.write().\n\n
-#: debug/Compiler.java:484
-\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nA partir do Arduino 1.0, a classe Client na biblioteca Ethernet foi renomeada para EthernetClient.\n
+#: debug/Compiler.java:427
+\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nclass\="marksource newline" title\="Nova linha">\nDesde o Arduino 1.0, a classe Cliente na biblioteca Ethernet foi renomeada para EthernetClient. class\="marksource newline" title\="Nova linha>"\nclass\="marksource newline" title\="Nova linha">\n
-#: debug/Compiler.java:478
-\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nA partir do Arduino 1.0, a classe Server na biblioteca Ethernet foi renomeada para EthernetServer.\n\n
+#: debug/Compiler.java:421
+\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nclass\="marksource newline" title\="Nova linha">\nDesde o Arduino 1.0, a classe Server na biblioteca Ethernet foi renomeada para EthernetServer. class\="marksource newline" title\="Nova linha>"\nclass\="marksource newline" title\="Nova linha">\n\n
-#: ../../../processing/app/debug/Compiler.java:451
-!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
+#: debug/Compiler.java:433
+\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nclass\="marksource newline" title\="Nova linha">\nDesde o Arduino 1.0, a classe Udp na biblioteca Ethernet foi renomeada para EthernetUdp. class\="marksource newline" title\="Nova linha>"\nclass\="marksource newline" title\="Nova linha">\n
-#: debug/Compiler.java:502
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir do Arduino 1.0, a fun\u00e7\u00e3o Wire.receive() foi renomeada para Wire.read() a fim de manter a consist\u00eancia com outras bibliotecas. \n
+#: debug/Compiler.java:445
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde o Arduino 1.0, a fun\u00e7\u00e3o Wire.receive() foi renomeada para Wire.read() por quest\u00f5es de consist\u00eancia com outras bibliotecas.\n\n
-#: debug/Compiler.java:496
-\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir do Arduino 1.0, a fun\u00e7\u00e3o Wire.send() foi renomeada para \nWire.write() para manter a consist\u00eancia com outras bibliotecas.\n
+#: debug/Compiler.java:439
+\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesd o Arduino 1.0, a fun\u00e7\u00e3o Wire.send() foi renomeada para Wire.write() por quest\u00f5es de consist\u00eancia com outras bibliotecas.\n\n
-#: ../../../processing/app/SerialMonitor.java:41
-#: ../../../processing/app/AbstractMonitor.java:118
-!baud=
+#: SerialMonitor.java:130 SerialMonitor.java:133
+baud=velocidade
-#: Preferences.java:373
-compilation\ =compila\u00e7\u00e3o
+#: Preferences.java:389
+compilation\ =compila\u00e7\u00e3o
#: ../../../processing/app/NetworkMonitor.java:111
-!connected\!=
+connected\!=conectado\!
-#: Sketch.java:544
+#: Sketch.java:540
createNewFile()\ returned\ false=createNewFile() retornou falso
#: ../../../processing/app/EditorStatus.java:469
-!enabled\ in\ File\ >\ Preferences.=
+enabled\ in\ File\ >\ Preferences.=habilitado em Arquivo > Prefer\u00eancias.
-#: Base.java:1804
+#: Base.java:2090
environment=ambiente
-#: Editor.java:1094
+#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
#: ../../../processing/app/debug/Compiler.java:49
-!http\://github.com/arduino/Arduino/issues=
+http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues
#: UpdateCheck.java:118
http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
@@ -1182,54 +1240,51 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
-#: Base.java:1789
+#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
-#: Preferences.java:609
+#: Preferences.java:625
#, java-format
-ignoring\ invalid\ font\ size\ {0}=ignorando tamanho {0} inv\u00e1lido para a fonte
+ignoring\ invalid\ font\ size\ {0}=ignorando tamanho de fonte inv\u00e1lido {0}
-#: Base.java:1794
-index.html=index.html
+#: Base.java:2080
+index.html=indice.html
-#: Editor.java:927 Editor.java:934
-name\ is\ null=o nome esta vazio
+#: Editor.java:936 Editor.java:943
+name\ is\ null=nome \u00e9 nulo
-#: Base.java:1804
-platforms.html=platforms.html
+#: Base.java:2090
+platforms.html=plataformas.html
-#: Serial.java:424
+#: Serial.java:451
#, java-format
-readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=o buffer readBytesUntil() \u00e9 muito pequeno para at\u00e9 {0} bytes, incluindo char {1}
+readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de byte de readBytesUntil() \u00e9 muito pequeno para at\u00e9 {0} bytes, incluindo o caractere {1}
-#: Sketch.java:651
+#: Sketch.java:647
removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno.. n\u00e3o foi poss\u00edvel encontrar o c\u00f3digo
-#: Editor.java:923
-serialMenu\ is\ null=serialMenu esta vazio
+#: Editor.java:932
+serialMenu\ is\ null=serialMenu \u00e9 nulo
-#: debug/Uploader.java:199
+#: debug/Uploader.java:195
#, java-format
-the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=a porta serial {0} n\u00e3o existe ou a placa n\u00e3o esta conectada
+the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=a porta serial {0} selecionada n\u00e3o existe ou sua placa n\u00e3o est\u00e1 conectada
-#: ../../../processing/app/EditorStatus.java:456
-!to\ clipboard=
-
-#: Preferences.java:375
+#: Preferences.java:391
upload=carregar
-#: Editor.java:373
+#: Editor.java:380
#, java-format
-{0}\ files\ added\ to\ the\ sketch.={0} arquivos adicionados a este sketch.
+{0}\ files\ added\ to\ the\ sketch.={0} arquivos adicionados ao sketch.
-#: debug/Compiler.java:422
+#: debug/Compiler.java:365
#, java-format
{0}\ returned\ {1}={0} retornou {1}
-#: Editor.java:2166
+#: Editor.java:2213
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
-#: Editor.java:1826
+#: Editor.java:1874
#, java-format
{0}.html={0}.html
diff --git a/app/src/processing/app/i18n/Resources_pt_PT.po b/app/src/processing/app/i18n/Resources_pt_PT.po
index 51086a5c9..fd4ba85fa 100644
--- a/app/src/processing/app/i18n/Resources_pt_PT.po
+++ b/app/src/processing/app/i18n/Resources_pt_PT.po
@@ -15,7 +15,7 @@ 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: 2013-01-08 01:28+0000\n"
+"PO-Revision-Date: 2013-09-10 10:38+0000\n"
"Last-Translator: Nigel Randsley Closing the last open sketch will quit Arduino."
-msgstr " Se fechar o último sketch, vai sair do Arduino."
+msgstr " Se fechar o último rascunho, vai sair do Arduino."
#: Editor.java:2053
msgid ""
@@ -57,7 +57,7 @@ msgid ""
" font: 11pt \"Lucida Grande\"; margin-top: 8px }
\ before\ closing?
antes de zarrar?
\ before\ closing?
before closing?
\ before\ closing?
before closing?
\ before\ closing?
before closing?
\ before\ closing?
before closing?
abans de tancar?
\ before\ closing?
abans de tancar?
\ before\ closing?
before closing?
før nedlukning?
\ before\ closing?
f\u00f8r nedlukning?
\ before\ closing?
before closing?
πρίν εξέλθετε;
\ before\ closing?
\u03c0\u03c1\u03af\u03bd \u03b5\u03be\u03ad\u03bb\u03b8\u03b5\u03c4\u03b5;
\ before\ closing?
before closing?
\ before\ closing?
before closing?
\ before\ closing?
\ before\ closing?
before closing?
\ before\ closing?
before closing?
پیش از بستن ذخیره کنید؟
\ before\ closing?
\u067e\u06cc\u0634 \u0627\u0632 \u0628\u0633\u062a\u0646 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f\u061f
before closing?
ennen sulkemista?
\ before\ closing?
ennen sulkemista?
before closing?
bago isara?
\ before\ closing?
bago isara?
before closing?
antes de pechar?
antes de pechar?
\ before\ closing?
antes de pechar?
\ before\ closing?
antes de pechar?
before closing?
बंद करने से पहले?
बंद करने से पहले?
\ before\ closing?
\u092c\u0902\u0926 \u0915\u0930\u0928\u0947 \u0938\u0947 \u092a\u0939\u0932\u0947?
before closing?
\ before\ closing?
\ before\ closing?
before closing?
\ before\ closing?
\ before\ closing?
sebelum menutup?
before closing?
sebelum menutup?
\ before\ closing?
before closing?
닫기전에 변경사항을 저장하시겠습니까 ?
닫기전에 변경사항을 저장하시겠습니까 ?
\ before\ closing?
\ub2eb\uae30\uc804\uc5d0 \ubcc0\uacbd\uc0ac\ud56d\uc744 \uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c ?
\ before\ closing?
\ub2eb\uae30\uc804\uc5d0 \ubcc0\uacbd\uc0ac\ud56d\uc744 \uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c ?
before closing?
prieš išeinant?
prieš uždarant?
\ before\ closing?
prie\u0161 i\u0161einant?
\ before\ closing?
prie\u0161 u\u017edarant?
before closing?
\ before\ closing?
before closing?
\ before\ closing?
before closing?
\ before\ closing?
before closing?
\ before\ closing?
\ before\ closing?
f\u00f8r den lukkes?
before closing?
przed zamknięciem?
\ before\ closing?
przed zamkni\u0119ciem?
\ before\ closing?
before closing?
\ before\ closing?
before closing?
antes de fechar?
antes de fechar?
\ before\ closing?
antes de fechar?
\ before\ closing?
antes de fechar?