Merge branch 'master' into manual-2

dev
Bartosz Leper 2015-08-15 19:07:06 +02:00
commit c0b1f6627f
7 zmienionych plików z 1402 dodań i 12 usunięć

Wyświetl plik

@ -156,7 +156,7 @@ DialogBoxMorph, BlockInputFragmentMorph, PrototypeHatBlockMorph, Costume*/
// Global stuff //////////////////////////////////////////////////////// // Global stuff ////////////////////////////////////////////////////////
modules.blocks = '2015-July-30'; modules.blocks = '2015-August-14';
var SyntaxElementMorph; var SyntaxElementMorph;
var BlockMorph; var BlockMorph;
@ -11312,8 +11312,8 @@ ScriptFocusMorph.prototype.trigger = function () {
delete this.fps; delete this.fps;
delete this.step; delete this.step;
this.hide(); this.hide();
current.contents().edit();
this.world().onNextStep = function () { this.world().onNextStep = function () {
current.contents().edit();
current.contents().selectAll(); current.contents().selectAll();
}; };
} else if (current.choices) { } else if (current.choices) {

Wyświetl plik

@ -2554,3 +2554,17 @@ ______
150730 150730
------ ------
* Blocks: improve keyboard editing for embedded rings * Blocks: improve keyboard editing for embedded rings
150806
------
* Polish & German translation updates
=== Release v4.0.2 ===
150809
------
* Interlingua support, yay!! thanks, Ken Dickey!
150814
------
* Blocks: fixed #907

Wyświetl plik

@ -185,7 +185,7 @@ SnapTranslator.dict.de = {
'translator_e-mail': 'translator_e-mail':
'jens@moenig.org', // optional 'jens@moenig.org', // optional
'last_changed': 'last_changed':
'2015-02-23', // this, too, will appear in the Translators tab '2015-08-06', // this, too, will appear in the Translators tab
// GUI // GUI
// control bar: // control bar:
@ -780,6 +780,10 @@ SnapTranslator.dict.de = {
'ausschalten, um Skripte\nnormal auszuf\u00fchren', 'ausschalten, um Skripte\nnormal auszuf\u00fchren',
'check to enable\nIDE animations': 'check to enable\nIDE animations':
'einschalten um IDE-\nAnimationen zu erlauben', 'einschalten um IDE-\nAnimationen zu erlauben',
'Flat design':
'Helles Design',
'Keyboard Editing':
'Tastaturunterstützung',
'Thread safe scripts': 'Thread safe scripts':
'Threadsicherheit', 'Threadsicherheit',
'uncheck to allow\nscript reentrance': 'uncheck to allow\nscript reentrance':
@ -798,6 +802,8 @@ SnapTranslator.dict.de = {
'einschalten f\u00fcr flache\nPinselstrichenden', 'einschalten f\u00fcr flache\nPinselstrichenden',
'uncheck for round ends of lines': 'uncheck for round ends of lines':
'auschalten f\u00fcr runde\nPinselstrichenden', 'auschalten f\u00fcr runde\nPinselstrichenden',
'Inheritance support':
'Prototypische Vererbung',
// inputs // inputs
'with inputs': 'with inputs':

1337
lang-ia.js 100644

Plik diff jest za duży Load Diff

Wyświetl plik

@ -190,7 +190,7 @@ SnapTranslator.dict.pl = {
'translator_e-mail': 'translator_e-mail':
'witek@oeiizk.waw.pl', // optional 'witek@oeiizk.waw.pl', // optional
'last_changed': 'last_changed':
'2013-08-05', // this, too, will appear in the Translators tab '2015-08-06', // this, too, will appear in the Translators tab
// GUI // GUI
// control bar: // control bar:
@ -421,8 +421,18 @@ SnapTranslator.dict.pl = {
'kiedy klikni\u0119to %greenflag', 'kiedy klikni\u0119to %greenflag',
'when %keyHat key pressed': 'when %keyHat key pressed':
'kiedy klawisz %keyHat naci\u015Bni\u0119ty', 'kiedy klawisz %keyHat naci\u015Bni\u0119ty',
'when I am clicked': 'when I am %interaction':
'kiedy duszek klikni\u0119ty', 'kiedy zostanę %interaction',
'clicked':
'kliknięty',
'pressed':
'naciśnięty',
'dropped':
'upuszczony',
'mouse-entered':
'najechany przez kursor myszy',
'mouse-departed':
'opuszczony przez kursor myszy',
'when I receive %msgHat': 'when I receive %msgHat':
'kiedy otrzymam %msgHat', 'kiedy otrzymam %msgHat',
'broadcast %msg': 'broadcast %msg':

Wyświetl plik

@ -185,7 +185,7 @@ SnapTranslator.dict.pt = {
'translator_e-mail': 'translator_e-mail':
'mmsequeira@gmail.com', 'mmsequeira@gmail.com',
'last_changed': 'last_changed':
'2015-05-04', '2015-08-02',
// GUI // GUI
// control bar: // control bar:
@ -1702,5 +1702,17 @@ SnapTranslator.dict.pt = {
+ 'nomes para os parâmetros (ignorando os nomes mostrados).', + 'nomes para os parâmetros (ignorando os nomes mostrados).',
'Enter code that corresponds to the block\'s operation (usually a single\nfunction invocation). Use <#n> to reference actual arguments as shown.': 'Enter code that corresponds to the block\'s operation (usually a single\nfunction invocation). Use <#n> to reference actual arguments as shown.':
'Introduza o código que corresponda à operação do bloco (normalmente uma simples\n' 'Introduza o código que corresponda à operação do bloco (normalmente uma simples\n'
+ 'invocação de rotina). Use <#n> para referenciar os argumentos tal como mostrado' + 'invocação de rotina). Use <#n> para referenciar os argumentos tal como mostrado',
'Keyboard Editing':
'Edição usando o teclado',
'uncheck to disable\nkeyboard editing support':
'Desassinalar para desactivar\na edição usando o teclado.',
'check to enable\nkeyboard editing support':
'Assinalar para activar\na edição usando o teclado.',
'Inheritance support':
'Suporte para herança',
'uncheck to disable\nsprite inheritance features':
'Desassinalar para desactivar\nfuncionalidades de herança de actores.',
'check for sprite\ninheritance features':
'Assinalar para activar\nfuncionalidades de herança de actores.'
}; };

Wyświetl plik

@ -42,7 +42,7 @@
/*global modules, contains*/ /*global modules, contains*/
modules.locale = '2015-July-27'; modules.locale = '2015-August-06';
// Global stuff // Global stuff
@ -149,7 +149,7 @@ SnapTranslator.dict.de = {
'translator_e-mail': 'translator_e-mail':
'jens@moenig.org', 'jens@moenig.org',
'last_changed': 'last_changed':
'2015-02-23' '2015-08-06'
}; };
SnapTranslator.dict.it = { SnapTranslator.dict.it = {
@ -209,7 +209,7 @@ SnapTranslator.dict.pt = {
'translator_e-mail': 'translator_e-mail':
'mmsequeira@gmail.com', 'mmsequeira@gmail.com',
'last_changed': 'last_changed':
'2015-05-04' '2015-08-02'
}; };
SnapTranslator.dict.cs = { SnapTranslator.dict.cs = {
@ -317,7 +317,7 @@ SnapTranslator.dict.pl = {
'translator_e-mail': 'translator_e-mail':
'witek@oeiizk.waw.pl', 'witek@oeiizk.waw.pl',
'last_changed': 'last_changed':
'2013-08-05' '2015-08-06'
}; };
SnapTranslator.dict.tw = { SnapTranslator.dict.tw = {
@ -500,3 +500,14 @@ SnapTranslator.dict.hu = {
'2015-07-27' '2015-07-27'
}; };
SnapTranslator.dict.ia = {
// translations meta information
'language_name':
'Interlingua',
'language_translator':
'Ken Dickey',
'translator_e-mail':
'Ken.Dickey@whidbey.com',
'last_changed':
'2015-08-09'
};