This is a demo of Blockly which has been restricted to a maximum of five blocks.
28 |
29 |
You have block(s) left.
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | 10
46 |
47 |
48 |
49 |
50 |
51 | i
52 |
53 |
54 | 1
55 |
56 |
57 |
58 |
59 | 10
60 |
61 |
62 |
63 |
64 | 1
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
92 |
93 |
94 |
95 |
--------------------------------------------------------------------------------
/blockly/demos/plane/README.txt:
--------------------------------------------------------------------------------
1 | This Blockly demo uses Closure Templates to create a multilingual application.
2 | Any changes to the template.soy file require a recompile. Here is the command
3 | to generate a quick English version for debugging:
4 |
5 | java -jar soy/SoyToJsSrcCompiler.jar --outputPathFormat generated/en.js --srcs template.soy
6 |
7 | To generate a full set of language translations, first extract all the strings
8 | from template.soy using this command:
9 |
10 | java -jar soy/SoyMsgExtractor.jar --outputFile xlf/extracted_msgs.xlf template.soy
11 |
12 | This generates xlf/extracted_msgs.xlf, which may then be used by any
13 | XLIFF-compatible translation console to generate a set of files with the
14 | translated strings. These should be placed in the xlf directory.
15 |
16 | Finally, generate all the language versions wih this command:
17 |
18 | java -jar soy/SoyToJsSrcCompiler.jar --locales ar,be-tarask,br,ca,da,de,el,en,es,fa,fr,he,hrx,hu,ia,is,it,ja,ko,ms,nb,nl,pl,pms,pt-br,ro,ru,sc,sv,th,tr,uk,vi,zh-hans,zh-hant --messageFilePathFormat xlf/translated_msgs_{LOCALE}.xlf --outputPathFormat 'generated/{LOCALE}.js' template.soy
19 |
20 | This is the process that Google uses for maintaining Blockly Games in 40+
21 | languages. The XLIFF fromat is simple enough that it is trival to write a
22 | Python script to reformat it into some other format (such as JSON) for
23 | compatability with other translation consoles.
24 |
25 | For more information, see message translation for Closure Templates:
26 | https://developers.google.com/closure/templates/docs/translation
27 |
--------------------------------------------------------------------------------
/blockly/demos/plane/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/karstenda/BlocklyPi/6d8ca6e633a693acbf6a1ef3d48f1fd4f9642dec/blockly/demos/plane/icon.png
--------------------------------------------------------------------------------
/blockly/demos/plane/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Blockly Demo:
7 |
8 |
9 |
10 |
11 |
12 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/blockly/demos/plane/soy/README:
--------------------------------------------------------------------------------
1 | // Copyright 2009 Google Inc.
2 | //
3 | // Licensed under the Apache License, Version 2.0 (the "License");
4 | // you may not use this file except in compliance with the License.
5 | // You may obtain a copy of the License at
6 | //
7 | // http://www.apache.org/licenses/LICENSE-2.0
8 | //
9 | // Unless required by applicable law or agreed to in writing, software
10 | // distributed under the License is distributed on an "AS IS" BASIS,
11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | // See the License for the specific language governing permissions and
13 | // limitations under the License.
14 |
15 |
16 | Contents:
17 |
18 | + SoyToJsSrcCompiler.jar
19 | Executable jar that compiles template files into JavaScript files.
20 |
21 | + SoyMsgExtractor.jar
22 | Executable jar that extracts messages from template files into XLF files.
23 |
24 | + soyutils.js
25 | Helper utilities required by all JavaScript code that SoyToJsSrcCompiler
26 | generates. Equivalent functionality to soyutils_usegoog.js, but this
27 | version does not need Closure Library.
28 |
29 |
30 | Instructions:
31 |
32 | + A simple Hello World for JavaScript:
33 | http://code.google.com/closure/templates/docs/helloworld_js.html
34 |
35 | + Complete documentation:
36 | http://code.google.com/closure/templates/
37 |
38 | + Closure Templates project on Google Code:
39 | http://code.google.com/p/closure-templates/
40 |
41 |
42 | Notes:
43 |
44 | + Closure Templates requires Java 6 or higher:
45 | http://www.java.com/
46 |
--------------------------------------------------------------------------------
/blockly/demos/plane/soy/SoyMsgExtractor.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/karstenda/BlocklyPi/6d8ca6e633a693acbf6a1ef3d48f1fd4f9642dec/blockly/demos/plane/soy/SoyMsgExtractor.jar
--------------------------------------------------------------------------------
/blockly/demos/plane/soy/SoyToJsSrcCompiler.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/karstenda/BlocklyPi/6d8ca6e633a693acbf6a1ef3d48f1fd4f9642dec/blockly/demos/plane/soy/SoyToJsSrcCompiler.jar
--------------------------------------------------------------------------------
/blockly/demos/plane/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-color: #fff;
3 | font-family: sans-serif;
4 | margin-top: 0;
5 | }
6 | h1 {
7 | font-weight: normal;
8 | font-size: 140%;
9 | }
10 | .farSide {
11 | text-align: right;
12 | }
13 | html[dir="RTL"] .farSide {
14 | text-align: left;
15 | }
16 | .tab {
17 | padding: 6px 12px;
18 | text-decoration: none;
19 | color: #000;
20 | }
21 | #selected {
22 | font-weight: bold;
23 | background-color: #ddd;
24 | border-radius: 20px;
25 | }
26 |
27 | /* Pulse the language menu once to draw attention to it. */
28 | #languageBorder {
29 | border-radius: 4px;
30 | animation: pulse 2s ease-in-out forwards;
31 | -webkit-animation: pulse 2s ease-in-out forwards;
32 | animation-delay: 2s;
33 | -webkit-animation-delay: 2s;
34 | }
35 | @keyframes pulse {
36 | 0% { background-color: #fff }
37 | 50% { background-color: #f00 }
38 | 100% { background-color: #fff }
39 | }
40 | @-webkit-keyframes pulse {
41 | 0% { background-color: #fff }
42 | 50% { background-color: #f00 }
43 | 100% { background-color: #fff }
44 | }
45 |
46 | #blockly {
47 | height: 300px;
48 | width: 100%;
49 | border-style: solid;
50 | border-color: #ddd;
51 | border-width: 0 1px 1px 0;
52 | }
53 |
54 | /* SVG Plane. */
55 | #plane {
56 | overflow: hidden;
57 | }
58 | #fuselage {
59 | fill: #fff;
60 | stroke: #000;
61 | }
62 | #wing, #tail {
63 | fill: #ddd;
64 | stroke: #444;
65 | }
66 | .crew {
67 | fill: #f44;
68 | stroke: #000;
69 | }
70 | .seat1st {
71 | fill: #88f;
72 | stroke: #000;
73 | }
74 | .seat2nd {
75 | fill: #8b8;
76 | stroke: #000;
77 | }
78 | #seatYes, #seatNo {
79 | font-size: 40pt;
80 | }
81 | text {
82 | font-family: sans-serif;
83 | font-size: 20pt;
84 | fill: #444;
85 | }
86 |
87 | /* Slider. */
88 | .sliderTrack {
89 | stroke: #aaa;
90 | stroke-width: 6px;
91 | stroke-linecap: round;
92 | }
93 | .sliderKnob {
94 | fill: #ddd;
95 | stroke: #bbc;
96 | stroke-width: 1px;
97 | stroke-linejoin: round;
98 | }
99 | .sliderKnob:hover {
100 | fill: #eee;
101 | }
102 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_ar.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | الصفوف: %1
8 |
9 |
10 | seats =
11 | المقاعد =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | طائرة بمقعدين في مقطورة الطيّار (للطيار ومساعده) وعدد من المقاعد في صفوف الدرجة الأولى والثانية. كل صف من صفوف الدرجة الأولى يحتوي على أربعة مقاعد. ويحتوي كل صف في الدرجة الثانية على خمسة مقاعد.
16 |
17 |
18 | ?
19 | ؟
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | لبناء صيغة (أدناه) تقوم بحساب إجمالي عدد المقاعد في الطائرة عند تغيير الصفوف (أعلاه).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | طائرة بمقعدين في مقطورة الطيّار (للطيار ومساعده) وعدد من الصفوف يحتوي كل صف على أربعة مقاعد.
28 |
29 |
30 | 1st class rows (%1)
31 | صفوف الطبقة الأولى (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | صفوف الفئة الثانية: %1
36 |
37 |
38 | Seats: %1
39 | المقاعد: %1
40 |
41 |
42 | Plane Seat Calculator
43 | آلة حاسبة لمقعد الطائرة
44 |
45 |
46 | rows (%1)
47 | الصفوف (%1)
48 |
49 |
50 | 1st class rows: %1
51 | صفوف الطبقة الأولى: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | هنالك طائرة تحتوي على عدد من صفوف مقاعد الركاب. كل صف يحتوي على أربعة مقاعد.
56 |
57 |
58 | 2nd class rows (%1)
59 | صفوف الفئة الثانية: (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_be-tarask.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Радкоў: %1
8 |
9 |
10 | seats =
11 | месцаў =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Самалёт мае два месцы ў кабіне экіпажа (пілот і другі пілот), і некалькі пасажырскіх шэрагаў месцаў 1-га кляса і 2-га кляса. Кожны шэраг 1-га кляса утрымлівае чатыры месцы. Кожны шэраг 2-га кляса ўтрымлівае пяць месцаў.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Пабудаваць формулу (ніжэй), якая падлічвае агульную колькасьць месцаў у самалёце пры зьмене радоў (гл. вышэй).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Самалёт мае два месцы ў кабіне экіпажа (пілот і другі пілот), і некалькі шэрагаў пасажырскіх сядзеньняў. Кожны шэраг утрымлівае чатыры месцы.
28 |
29 |
30 | 1st class rows (%1)
31 | радкі першага клясу (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Радкі другога клясу: %1
36 |
37 |
38 | Seats: %1
39 | Месцаў: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Калькулятар месцаў у самалёце
44 |
45 |
46 | rows (%1)
47 | радкоў (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Радкі першага клясу: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Самалёт мае некалькі шэрагаў пасажырскіх сядзеньняў. Кожная шэраг утрымлівае чатыры месцы.
56 |
57 |
58 | 2nd class rows (%1)
59 | радкі другога клясу (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_da.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Rækker: %1
8 |
9 |
10 | seats =
11 | sæder =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Et fly har to pladser i cockpittet (til pilot og med-pilot), og et antal rækker af 1. klasses og 2. klasses passagersæder. Hver 1. klasses række indeholder fire sæder. Hver 2. klasses række indeholder fem sæder.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Opbyg en formel (nedenfor), der beregner det samlede antal pladser på flyet, hvis antal rækker ændres (ovenfor).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Et fly har to pladser i cockpittet (til pilot og med-pilot), og et antal rækker af passagersæder. Hver række indeholder fire sæder.
28 |
29 |
30 | 1st class rows (%1)
31 | 1. klasse rækker (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | 2. klasse rækker: %1
36 |
37 |
38 | Seats: %1
39 | Sæder: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Flysædelommeregner
44 |
45 |
46 | rows (%1)
47 | rækker (%1)
48 |
49 |
50 | 1st class rows: %1
51 | 1. klasse rækker: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Et fly har et antal rækker af passagersæder. Hver række indeholder fire sæder.
56 |
57 |
58 | 2nd class rows (%1)
59 | 2. klasse rækker (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_de.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Reihen: %1
8 |
9 |
10 | seats =
11 | Sitze =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Ein Flugzeug hat zwei Sitze im Pilotenstand (für den Piloten und Co-Piloten) und eine Anzahl an Reihen mit Passagiersitzen der 1. und 2. Klasse. Jede 1.-Klasse-Reihe enthält vier Sitze. Jede 2.-Klasse-Reihe enthält fünf Sitze.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Erstelle eine Formel (unten), die die gesamte Anzahl an Sitzen im Flugzeug berechnet, wenn die Reihen (oben) geändert werden.
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Ein Flugzeug hat zwei Sitze im Pilotenstand (für den Piloten und Co-Piloten) und eine Anzahl an Reihen mit Passagiersitzen. Jede Reihe enthält vier Sitze.
28 |
29 |
30 | 1st class rows (%1)
31 | Reihen der 1. Klasse (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Reihen der 2. Klasse: %1
36 |
37 |
38 | Seats: %1
39 | Sitze: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Flugzeugsitzrechner
44 |
45 |
46 | rows (%1)
47 | Reihen (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Reihen der 1. Klasse: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Ein Flugzeug hat eine Anzahl an Reihen mit Passagiersitzen. Jede Reihe enthält vier Sitze.
56 |
57 |
58 | 2nd class rows (%1)
59 | Reihen der 2. Klasse (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_en.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Rows: %1
8 |
9 |
10 | seats =
11 | seats =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
28 |
29 |
30 | 1st class rows (%1)
31 | 1st class rows (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | 2nd class rows: %1
36 |
37 |
38 | Seats: %1
39 | Seats: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Plane Seat Calculator
44 |
45 |
46 | rows (%1)
47 | rows (%1)
48 |
49 |
50 | 1st class rows: %1
51 | 1st class rows: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | An airplane has a number of rows of passenger seats. Each row contains four seats.
56 |
57 |
58 | 2nd class rows (%1)
59 | 2nd class rows (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_fa.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | ردیف: %1
8 |
9 |
10 | seats =
11 | صندلیها =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | یک هواپیما دو صندلی در کابین خلبان دارد (برای خلبان و کمک خلبان) و تهداد از صندلیها مسافرین درجه یک و درجه دو. هر ردیف درجه یک شامل چهار صندلی است. هر ردیف درجه دو شامل پنج صندلی است.
16 |
17 |
18 | ?
19 | ؟
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | یک فرمول بسازید (پایین) که تعداد کل صندلیهای هواپیما با تغییر ردیف را حساب کند (بالا).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | یک هواپیما دو صندلی در عرشهٔ پرواز دارد (برای خلبان و کمک خلبان) و تعدادی صندلی مسافرین. هر ردیف شامل چهار صندلی است.
28 |
29 |
30 | 1st class rows (%1)
31 | اولین کلاس ردیفها (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | دومین کلاس ردیف: %1
36 |
37 |
38 | Seats: %1
39 | صندلیها: %1
40 |
41 |
42 | Plane Seat Calculator
43 | محاسبهگر صندلیهای هواپیما
44 |
45 |
46 | rows (%1)
47 | ردیفها (%1)
48 |
49 |
50 | 1st class rows: %1
51 | اولین ردیف کلاس: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | یک هواپیما تعداد از صندلیهای مسافرین را دارد. هر ردیف شمال چهار صندلی است.
56 |
57 |
58 | 2nd class rows (%1)
59 | دومین کلاس ردیفها (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_he.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | שורות: %1
8 |
9 |
10 | seats =
11 | מושבים =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | במטוס יש שני מושבים עבור הצוות (בשביל הטייס וטייס המשנה), ומספר שורות מושבים במחלקת הנוסעים הראשונה ובמחלקת הנוסעים השנייה. כל שורה במחלקה הראשונה מכילה ארבעה מושבים. כל שורה במחלקה השנייה מכילה חמישה מושבים.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | בנה נוסחה (למטה) אשר תחשב את סך כל המושבים במטוס בהתאם לשינוי מספר השורות (למעלה).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | במטוס יש שני מושבים עבור הצוות (בשביל הטייס וטייס המשנה), ומספר שורות עם מושבי נוסעים. בכל שורה יש ארבעה מושבים.
28 |
29 |
30 | 1st class rows (%1)
31 | שורות במחלקה ראשונה (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | שורות במחלקה שנייה: %1
36 |
37 |
38 | Seats: %1
39 | מושבים: %1
40 |
41 |
42 | Plane Seat Calculator
43 | מחשבון מושב במטוס
44 |
45 |
46 | rows (%1)
47 | שורות (%1)
48 |
49 |
50 | 1st class rows: %1
51 | שורות במחלקה ראשונה: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | במטוס יש מספר שורות עם מושבי נוסעים. בכל שורה יש ארבעה מושבים.
56 |
57 |
58 | 2nd class rows (%1)
59 | שורות במחלקה שנייה: (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_hrx.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Reihe: %1
8 |
9 |
10 | seats =
11 | Sitze =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | En Fluchzeich hot zwooi Sitze im Pilotstand (für den Pilot und Co-Pilot) und en Oonzohl an Reihe mit Passagiersitze der 1. und 2. Klasse. Jede 1.-Klasse-Reih enthält vier Sitze. Jede 2.-Klasse-Reih enthält fünf Sitze.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Erstell en Formel (unne), die die gesamte Oonzohl an Sitze im Fluchzeich berechnet, wenn die Reihe (uwe) geännert sin.
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | En Fluchzeich hot zwooi Sitze im Pilotestand (für den Pilot und Co-Pilot) und en Oonzohl an Reihe mit Passagiersitze. Jede Reih enthält vier Sitze.
28 |
29 |
30 | 1st class rows (%1)
31 | Reihe von der 1. Klasse (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Reihe von der 2. Klasse: %1
36 |
37 |
38 | Seats: %1
39 | Sitz: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Fluchzeichsitzrechner
44 |
45 |
46 | rows (%1)
47 | Reihe (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Reihe von der 1. Klasse: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | En Fluchzeich hot en Oonzohl an Reihe mit Passagiersitze. Jede Reih enthält vier Sitze.
56 |
57 |
58 | 2nd class rows (%1)
59 | Reihe von der 2. Klasse (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_is.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Raðir: %1
8 |
9 |
10 | seats =
11 | sæti =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Flugvél er með tvö sæti í stjórnklefa (fyrir flugmanninn og aðstoðarflugmanninn) og einhvern fjölda sætaraða fyrir farþega á 1. og 2. farrými. Hver sætaröð á 1. farrými hefur fjögur sæti. Hver sætaröð á 2. farrými hefur fimm sæti.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Búðu til formúlu (hér fyrir neðan) sem reiknar heildarfjölda sæta í flugvélinni eftir því sem röðunum er breytt (hér fyrir ofan).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Flugvél er með tvö sæti í stjórnklefa (fyrir flugmanninn og aðstoðarflugmanninn) og einhvern fjölda sætaraða fyrir farþega. Hver sætaröð hefur fjögur sæti.
28 |
29 |
30 | 1st class rows (%1)
31 | raðir 1. farrými (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Raðir 2. farrými: %1
36 |
37 |
38 | Seats: %1
39 | Sæti: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Flugsætareiknir
44 |
45 |
46 | rows (%1)
47 | raðir (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Raðir 1. farrými: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Flugvél er með einhvern fjölda sætaraða fyrir farþega. Í hverri röð eru fjögur sæti.
56 |
57 |
58 | 2nd class rows (%1)
59 | raðir 2. farrými (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_ja.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | 列の数: %1
8 |
9 |
10 | seats =
11 | 座席の数 =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | 飛行機には、操縦室の 2 つの座席 (操縦士と副操縦士) と、ファーストクラスとセカンドクラスの乗客の座席の列があります。それぞれの列に、ファーストクラスでは 4 つの座席、セカンドクラスでは 5 つの座席があります。
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | 飛行機の座席の数を計算する式を、上で列の数を変更しても正しくなるように、下に入力してください。
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | 飛行機には、操縦室の 2 つの座席 (操縦士と副操縦士) と、乗客の座席の列があります。それぞれの列に 4 つの座席があります。
28 |
29 |
30 | 1st class rows (%1)
31 | ファーストクラスの列数 (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | セカンドクラスの列数: %1
36 |
37 |
38 | Seats: %1
39 | 座席の数: %1
40 |
41 |
42 | Plane Seat Calculator
43 | 飛行機座席計算機
44 |
45 |
46 | rows (%1)
47 | 列の数 (%1)
48 |
49 |
50 | 1st class rows: %1
51 | ファーストクラスの列数: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | 飛行機に乗客の座席の列があります。それぞれの列に 4 つの座席があります。
56 |
57 |
58 | 2nd class rows (%1)
59 | セカンドクラスの列数 (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_ko.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | 행 수: %1
8 |
9 |
10 | seats =
11 | 좌석수 =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | 비행기는 비행 갑판(조종사와 부조종사용)에서 좌석 두 개가 있고, 1등석과 2등석 승객 좌석의 행 수가 있습니다. 각 1등석 행에는 시트 네 개가 포함되어 있습니다. 각 2등석 행에는 시트 다섯 개가 포함되어 있습니다.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | 행이 바뀐(위) 비행기에 좌석의 총 수를 계산하는 공식(아래)을 구축하세요.
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | 비행기는 비행 갑판(조종사와 부조종사용)에서 좌석 두 개가 있고, 승객 좌석의 행 수가 있습니다. 각 행에는 시트 네 개가 포함되어 있습니다.
28 |
29 |
30 | 1st class rows (%1)
31 | 1등석 행 수 (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | 2등석 행 수: %1
36 |
37 |
38 | Seats: %1
39 | 좌석 수: %1
40 |
41 |
42 | Plane Seat Calculator
43 | 비행기 좌석 계산기
44 |
45 |
46 | rows (%1)
47 | 행 수 (%1)
48 |
49 |
50 | 1st class rows: %1
51 | 1등석 행 수: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | 비행기는 승객 좌석의 행 수가 있습니다. 각 행에는 시트 네 개가 포함되어 있습니다.
56 |
57 |
58 | 2nd class rows (%1)
59 | 2등석 행 수 (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_nb.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Rader: %1
8 |
9 |
10 | seats =
11 | seter =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Et fly har to seter i cockpit (for piloten og andrepiloten), og et antall rader med passasjerseter på første og andre klasse. Hver av radene på første klasse har fire seter. Hver av radene på andre klasse har fem seter.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Bygg en formel (under) som beregner det totale antall seter på flyet etter hvert som radene endres (over).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Et fly har to seter i cockpit (for piloten og andrepiloten), og et antall rader med passasjerseter. Hver rad inneholder fire seter.
28 |
29 |
30 | 1st class rows (%1)
31 | Rader i første klasse (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Rader i andre klasse: %1
36 |
37 |
38 | Seats: %1
39 | Seter: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Flysetekalkulator
44 |
45 |
46 | rows (%1)
47 | rader (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Rader i første klasse: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Et fly har et antall rader med passasjerseter. Hver rad inneholder fire seter.
56 |
57 |
58 | 2nd class rows (%1)
59 | Rader i andre klasse (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_nl.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Rijen: %1
8 |
9 |
10 | seats =
11 | stoelen=
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Een vliegtuig heeft twee stoelen in de cockpit (voor de piloot en de copiloot) en een aantal rijen voor 1e klasse en 2e klasse passagiers. Iedere rij in de 1e klasse heeft vier stoelen. Iedere rij in de 2e klasse heeft vijf stoelen.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Maak hieronder een formule die het totale aantal stoelen in het vliegtuig berekent als het aantal rijen hierboven wordt aangepast.
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Een vliegtuig heeft twee stoelen in de cockpit (voor de piloot en de copiloot) en een aantal rijen met stoelen voor passagiers. Iedere rij bevat vier stoelen.
28 |
29 |
30 | 1st class rows (%1)
31 | Rijen 1e klas (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Rijen 2e klas: %1
36 |
37 |
38 | Seats: %1
39 | Zitplaatsen: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Vliegtuigstoelencalculator
44 |
45 |
46 | rows (%1)
47 | rijen (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Rijen 1e klas: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Een vliegtuig heeft een aantal rijen met stoelen. Iedere rij heeft vier stoelen.
56 |
57 |
58 | 2nd class rows (%1)
59 | Rijen 2e klas (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_ru.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Рядов: %1
8 |
9 |
10 | seats =
11 | места =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | В самолёте 2 места для пилота и его помощника, несколько рядов с пассажирскими местами первого класса, а также несколько рядов с пассажирскими местами второго класса. В каждом ряду первого класса 4 места. В каждом ряду второго класса 5 мест.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Постройте формулу в области ниже, которая поможет рассчитать общее количество мест в самолёте (как на рисунке выше).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | В самолёте 2 места для пилота и его помощника, а также несколько рядов с пассажирскими местами. В каждом ряду 4 места.
28 |
29 |
30 | 1st class rows (%1)
31 | ряды 1-го класса (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Рядов 2-го класса: %1
36 |
37 |
38 | Seats: %1
39 | Мест: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Калькулятор посадочных мест в самолёте
44 |
45 |
46 | rows (%1)
47 | ряды (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Рядов 1-го класса: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | В самолёте несколько рядов с пассажирскими местами. В каждом ряду 4 места.
56 |
57 |
58 | 2nd class rows (%1)
59 | ряды 2-го класса (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_sv.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Rader: %1
8 |
9 |
10 | seats =
11 | säten =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Ett flygplan har två säten i cockpiten (ett för piloten och ett för andrepiloten) och ett antal rader med passagerarsäten i första och andra klass. Varje rad i första klass innehåller fyra säten. Varje rad i andra klass innehåller fem säten.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Bygg en formel (nedan) som beräknar det totala antalet säten på flygplanet när raderna ändras (ovan).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Ett flygplan har två säten i cockpiten (ett för piloten och ett för andrepiloten) och ett antal rader med passagerarsäten. Varje rad innehåller fyra säten.
28 |
29 |
30 | 1st class rows (%1)
31 | Rader i första klass (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Rader i andra klass: %1
36 |
37 |
38 | Seats: %1
39 | Säten: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Plansäteskalkylator
44 |
45 |
46 | rows (%1)
47 | rader (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Rader i första klass: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Ett flygplan har ett antal rader med passagerarsäten. Varje rad innehåller fyra säten.
56 |
57 |
58 | 2nd class rows (%1)
59 | Rader i andra klass (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_th.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | %1 แถว
8 |
9 |
10 | seats =
11 | จำนวนที่นั่ง =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | ภายในเครื่องบินจะมีที่นั่งนักบินอยู่ 2 ที่ (สำหรับนักบิน และผู้ช่วยนักบิน) และจะมีแถวที่นั่งสำหรับผู้โดยสาร "ชั้นเฟิร์สคลาส" และ "ชั้นธุรกิจ" อยู่จำนวนหนึ่ง โดยในชั้นเฟิร์สคลาสจะมีแถวละ 4 ที่นั่ง ส่วนในชั้นธุรกิจจะมีแถวละ 5 ที่นั่ง
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | สร้างสูตรคำนวณ (ด้านล่าง) เพื่อคำนวณหาจำนวนที่นั่งทั้งหมดบนเครื่องบิน ตามจำนวนแถวที่เปลี่ยนไป (ด้านบน)
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | ภายในเครื่องบินจะมีที่นั่งนักบินอยู่ 2 ที่ (สำหรับนักบิน และผู้ช่วยนักบิน) และมีแถวที่นั่งผู้โดยสารอยู่จำนวนหนึ่ง ในแต่ละแถวจะมี 4 ที่นั่ง
28 |
29 |
30 | 1st class rows (%1)
31 | จำนวนแถวชั้นเฟิร์สคลาส (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | ชั้นธุรกิจ %1 แถว
36 |
37 |
38 | Seats: %1
39 | คำนวณได้ทั้งหมด %1 ที่นั่ง
40 |
41 |
42 | Plane Seat Calculator
43 | ระบบคำนวณที่นั่งบนเครื่องบิน
44 |
45 |
46 | rows (%1)
47 | จำนวนแถว (%1)
48 |
49 |
50 | 1st class rows: %1
51 | ชั้นเฟิร์สคลาส %1 แถว
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | ภายในเครื่องบินประกอบไปด้วยแถวของที่นั่งผู้โดยสาร ในแต่ละแถวจะมี 4 ที่นั่ง
56 |
57 |
58 | 2nd class rows (%1)
59 | จำนวนแถวชั้นธุรกิจ (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_tr.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Sıralar: %1
8 |
9 |
10 | seats =
11 | koltuklar =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Bir uçağın uçuş güvertesinde iki koltuğu (pilot ve yardımcı pilot için), ve belirli sayıda birinci sınıf ve ikinci sınıf yolcu koltuğu sırası vardır. Her birinci sınıf sıra dört koltuk içerir. Her ikinci sınıf sıra beş koltuk içerir.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Sıralar(üstte) değiştikçe uçaktaki toplam koltuk sayısını hesaplayan bir formül(altta) oluşturun.
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Bir uçağın uçuş güvertesinde iki koltuğu (pilot ve yardımcı pilot için), ve belirli sayıda koltuk sırası vardır. Her sıra dört koltuk içerir.
28 |
29 |
30 | 1st class rows (%1)
31 | Birinci sınıf sıralar (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | İkinci sınıf sıralar: %1
36 |
37 |
38 | Seats: %1
39 | Koltuklar: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Uçak Koltuğu Hesaplayıcı
44 |
45 |
46 | rows (%1)
47 | sıralar (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Birinci sınıf sıralar: (%1)
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Bir uçağın belirli sayıda koltuk sırası vardır. Her sıra dört koltuk içerir.
56 |
57 |
58 | 2nd class rows (%1)
59 | İkinci sınıf sıralar (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_uk.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Рядки: %1
8 |
9 |
10 | seats =
11 | місць=
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Літак має два місця в кабіні екіпажу (пілот і другий пілот), і кілька рядів 1-го класу 2-го класу пасажирських місць. Кожний ряд 1-го класу містить чотири місця. Кожен ряд 2-го класу містить п'ять місць.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Побудувати формулу (нижче), яка обчислює кількість місць на літаку при зміні рядків (див. вище).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Літак має два місця в кабіні екіпажу (пілот і другий пілот), і кілька рядів пасажирських сидінь. Кожен рядок містить чотири місця.
28 |
29 |
30 | 1st class rows (%1)
31 | рядів 1-го класу (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | рядів 2-го класу: %1
36 |
37 |
38 | Seats: %1
39 | Місць: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Калькулятор місць у літаку
44 |
45 |
46 | rows (%1)
47 | рядки (%1)
48 |
49 |
50 | 1st class rows: %1
51 | рядів 1-го класу: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Літак має кілька рядів пасажирських сидінь. Кожен ряд містить чотири місця.
56 |
57 |
58 | 2nd class rows (%1)
59 | рядів 2-го класу (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_vi.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | Số hàng ghế: %1
8 |
9 |
10 | seats =
11 | Tính số chỗ ngồi =
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | Một chiếc máy bay này có hai chỗ ngồi ở sàn (cho phi công trưởng và phi công phó), và một số hàng ghế hạng 1 và hạng 2. Mỗi hàng hạng 1 có bốn chỗ ngồi. Mỗi hàng hạng 2 có năm chỗ ngồi.
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | Dưới đây hãy tạo công thức tính số chỗ ngồi trên máy bay để nó thay đổi tùy theo số lượng hàng ghế (hình trên).
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | Một máy bay có hai ghế trong buồng lái (dành cho phi công trưởng và phi công phụ), và một loạt hàng ghế cho hành khách. Mỗi hàng có bốn ghế (bốn chỗ ngồi).
28 |
29 |
30 | 1st class rows (%1)
31 | số hàng hạng nhất (%1)
32 |
33 |
34 | 2nd class rows: %1
35 | Hàng hạng hai: %1
36 |
37 |
38 | Seats: %1
39 | Số chỗ ngồi: %1
40 |
41 |
42 | Plane Seat Calculator
43 | Máy bay ghế máy tính
44 |
45 |
46 | rows (%1)
47 | đếm số hàng ghế (%1)
48 |
49 |
50 | 1st class rows: %1
51 | Hàng hạng nhất: %1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | Máy bay có một số hàng ghế hành khách. Mỗi hàng có bốn chỗ ngồi.
56 |
57 |
58 | 2nd class rows (%1)
59 | số hàng hạng hai (%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_zh-hans.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | 行:%1
8 |
9 |
10 | seats =
11 | 座位=
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | 一架飞机除了有两个座位供正副驾驶员,还有一定量行数的头等及经济乘客座位。头等每行共四座,经济每行共五座。
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | 于下方写出一条公式以计算飞机上的座位总数。
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | 一架飞机除了有两个座位供正副驾驶员,还有一定量行数的乘客座位。每行共四座。
28 |
29 |
30 | 1st class rows (%1)
31 | 头等行(%1)
32 |
33 |
34 | 2nd class rows: %1
35 | 经济等行:%1
36 |
37 |
38 | Seats: %1
39 | 座位:%1
40 |
41 |
42 | Plane Seat Calculator
43 | 飞机座位计算器
44 |
45 |
46 | rows (%1)
47 | 行 (%1)
48 |
49 |
50 | 1st class rows: %1
51 | 头等行:%1
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | 一架飞机有一定量行数的乘客座位,每行共四座。
56 |
57 |
58 | 2nd class rows (%1)
59 | 经济等行(%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/plane/xlf/translated_msgs_zh-hant.xlf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Rows: %1
7 | 排:%1
8 |
9 |
10 | seats =
11 | 座位=
12 |
13 |
14 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of 1st class and 2nd class passenger seats. Each 1st class row contains four seats. Each 2nd class row contains five seats.
15 | 一架飛機除了有兩個座位供正副機師,還有一定量行數的頭等及經濟乘客座位。頭等艙每排都包含四個席位,經濟艙每排都包含五個席位。。
16 |
17 |
18 | ?
19 | ?
20 |
21 |
22 | Build a formula (below) that calculates the total number of seats on the airplane as the rows are changed (above).
23 | 於下方寫出一條公式以計算飛機上的座位總數。
24 |
25 |
26 | An airplane has two seats in the flight deck (for the pilot and co-pilot), and a number of rows of passenger seats. Each row contains four seats.
27 | 一架飛機除了有兩個座位供正副機師,還有一定量行數的乘客座位。每排都包含四個席位。
28 |
29 |
30 | 1st class rows (%1)
31 | 頭等艙(%1)
32 |
33 |
34 | 2nd class rows: %1
35 | 經濟艙:%1 排
36 |
37 |
38 | Seats: %1
39 | 座位:%1
40 |
41 |
42 | Plane Seat Calculator
43 | 飛機座位計算器
44 |
45 |
46 | rows (%1)
47 | 排(%1)
48 |
49 |
50 | 1st class rows: %1
51 | 頭等艙:%1 排
52 |
53 |
54 | An airplane has a number of rows of passenger seats. Each row contains four seats.
55 | 一架飛機有一定量行數的乘客座位,每排都包含四個席位。
56 |
57 |
58 | 2nd class rows (%1)
59 | 經濟艙(%1)
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/blockly/demos/prettify.css:
--------------------------------------------------------------------------------
1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
--------------------------------------------------------------------------------
/blockly/demos/realtime/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Blockly Demo: Realtime Collaboration
6 |
7 |
8 |
9 |
10 |
27 |
28 |
29 |
Test realtime collaboration by opening
54 |
55 | this link in a separate browser window or tab and they will be
56 | synchronized. You can even share the link with a friend!.
The first step in creating a resizable Blockly workspace is to use
39 | CSS or tables to create an area for it.
40 | Next, inject Blockly over that area.
40 | Once an area is defined, Blockly can be
41 | injected and positioned over the area.
42 | A resize handler keeps it in position as the page changes.
43 |