Unverified Commit b31eb729 authored by Susan Rati Lane's avatar Susan Rati Lane Committed by GitHub

App Inventor Hungarian translation (#1622)

Hungarian translation by Faragó Csaba and Zsolt Kolbay
parent 50a1371f
......@@ -129,6 +129,8 @@
<extend-property name="locale" values="pt_BR"/>
<!-- Portuguese (Portugal) -->
<extend-property name="locale" values="pt"/>
<!-- Hungarian -->
<extend-property name="locale" values="hu"/>
<!-- Dutch -->
<extend-property name="locale" values="nl"/>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -10,5 +10,6 @@
"sv": "Svenska",
"pt_BR": "Português do Brasil",
"pt": "Português",
"hu": "Magyar",
"nl": "Nederlands"
}
......@@ -18,6 +18,7 @@
'../lib/blockly/msg/js/nl.js',
'../lib/blockly/msg/js/pt-br.js',
'../lib/blockly/msg/js/pt.js',
'../lib/blockly/msg/js/hu.js',
'../lib/blockly/msg/js/en.js',
'./src/msg/ko_kr/_messages.js',
'./src/msg/es_es/_messages.js',
......@@ -29,6 +30,7 @@
'./src/msg/sv/_messages.js',
'./src/msg/pt_br/_messages.js',
'./src/msg/pt/_messages.js',
'./src/msg/hu/_messages.js',
'./src/msg/nl/_messages.js',
'./src/msg/en/_messages.js',
......
......@@ -21,6 +21,7 @@ goog.require('AI.Blockly.Msg.ko_kr');
goog.require('AI.Blockly.Msg.sv');
goog.require('AI.Blockly.Msg.pt_br');
goog.require('AI.Blockly.Msg.pt');
goog.require('AI.Blockly.Msg.hu');
goog.require('AI.Blockly.Msg.nl');
Blockly.language_switch = {
......@@ -71,6 +72,10 @@ Blockly.language_switch = {
Blockly.Msg.pt.switch_blockly_language_to_pt.init();
Blockly.Msg.pt.switch_language_to_portuguese.init();
break;
case 'hu':
Blockly.Msg.hu.switch_blockly_language_to_hu.init();
Blockly.Msg.hu.switch_language_to_hungarian.init();
break;
case 'nl':
Blockly.Msg.nl.switch_language_to_dutch.init();
break;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment