From 024b303db4303772d7566c931ea1d0800bb49572 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:06 +0100 Subject: [PATCH 001/170] New translations meta.yml (Romanian) --- ro-RO/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ro-RO/meta.yml diff --git a/ro-RO/meta.yml b/ro-RO/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/ro-RO/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 1fd976f12c7bead57f6630f1b4b727a20071ecd5 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:07 +0100 Subject: [PATCH 002/170] New translations meta.yml (Indonesian) --- id-ID/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 id-ID/meta.yml diff --git a/id-ID/meta.yml b/id-ID/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/id-ID/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 5b3a7ccf2cfd7a6a4895b14bc140e0e00b20a72a Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:08 +0100 Subject: [PATCH 003/170] New translations meta.yml (Slovak) --- sk-SK/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sk-SK/meta.yml diff --git a/sk-SK/meta.yml b/sk-SK/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/sk-SK/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 06aa404821d194a9e4de876f7bd5c5874a46f77a Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:09 +0100 Subject: [PATCH 004/170] New translations step_1.md (Slovak) --- sk-SK/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sk-SK/step_1.md diff --git a/sk-SK/step_1.md b/sk-SK/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/sk-SK/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 95b4a87550207b4055678063827d1f8ebc54ba5e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:10 +0100 Subject: [PATCH 005/170] New translations meta.yml (Serbian (Cyrillic)) --- sr-SP/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sr-SP/meta.yml diff --git a/sr-SP/meta.yml b/sr-SP/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/sr-SP/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 2f1e69ac13d6a4746ceae5394ac2642934bc05f0 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:11 +0100 Subject: [PATCH 006/170] New translations step_1.md (Serbian (Cyrillic)) --- sr-SP/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sr-SP/step_1.md diff --git a/sr-SP/step_1.md b/sr-SP/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/sr-SP/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From c71ed48850d2909bc8dd038e33cd61462b75b451 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:11 +0100 Subject: [PATCH 007/170] New translations meta.yml (Ukrainian) --- uk-UA/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 uk-UA/meta.yml diff --git a/uk-UA/meta.yml b/uk-UA/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/uk-UA/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From b72fc9265f661f6f8185cfee5b76e7df3da38b4f Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:12 +0100 Subject: [PATCH 008/170] New translations step_1.md (Ukrainian) --- uk-UA/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 uk-UA/step_1.md diff --git a/uk-UA/step_1.md b/uk-UA/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/uk-UA/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 08249680d68c0b3a6091a05d9e9cede57e130356 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:13 +0100 Subject: [PATCH 009/170] New translations meta.yml (Chinese Simplified) --- zh-CN/meta.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/zh-CN/meta.yml b/zh-CN/meta.yml index 8aa849b..3623a01 100644 --- a/zh-CN/meta.yml +++ b/zh-CN/meta.yml @@ -1,13 +1,15 @@ -title: 使用 Python 海龟编写文本 +--- +title: Writing text with Python turtle hero_image: images/banner.png -description: 使用 Python 海龟编写文本 -original_url: +description: Writing text with Python turtle +original_url: theme: cc-prototype -duration: 1 # 1, 2 or 3 +duration: 1 listed: false ingredient: true copyedit: false -interests: "图形" -technologies: "python, 海龟" +interests: "graphics" +technologies: "python, turtle" steps: - - title: 编写文本 + - + title: Writing text From 44b18b120eef6ac7baaaf099bc314e366688979d Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:14 +0100 Subject: [PATCH 010/170] New translations step_1.md (Chinese Simplified) --- zh-CN/step_1.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/zh-CN/step_1.md b/zh-CN/step_1.md index 0a0870c..e1ad332 100644 --- a/zh-CN/step_1.md +++ b/zh-CN/step_1.md @@ -1,29 +1,29 @@ -你可以使用海龟来编写文本。 +You can use a turtle to write text. ```python turtle.write('Hello!') ``` -设置海龟颜色来创建彩色文本: +Set the turtle's color to create coloured text: ```python turtle.color('deep pink') turtle.write('Hello!') ``` -你还可以更改文本的字体和对齐方式。 +You can also change the font and alignment of the text. ```python style = ('Courier', 30, 'italic') turtle.write('Hello!', font=style, align='center') ``` -字体是一个包含以下元素的元组: -+ 字体名称,如“Arial”、“Courier”或“Times New Roman” -+ 以像素为单位的字体大小 -+ 字体类型,可以是“normal”(普通)、“bold”(粗体)或“italic”(斜体) +The font is a tuple containing: -要设置控制如何以海龟位置为基准来定位文本的对齐方式,请使用 `align` 参数。`align` 可设置为以下选项之一:“left”(左)、“center”(中)、“right”(右) ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' -示例: - +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 26b5e0da312cdba76e60194c68aaa8db30ab531b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:15 +0100 Subject: [PATCH 011/170] New translations meta.yml (Chinese Traditional) --- zh-TW/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 zh-TW/meta.yml diff --git a/zh-TW/meta.yml b/zh-TW/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/zh-TW/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 8447ce4695305cfa047c20d9c7bd6c7d1479f6eb Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:16 +0100 Subject: [PATCH 012/170] New translations step_1.md (Chinese Traditional) --- zh-TW/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 zh-TW/step_1.md diff --git a/zh-TW/step_1.md b/zh-TW/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/zh-TW/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From c7211227259b07ad358d1e7395acdca9b0eb2397 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:16 +0100 Subject: [PATCH 013/170] New translations meta.yml (Portuguese, Brazilian) --- pt-BR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pt-BR/meta.yml diff --git a/pt-BR/meta.yml b/pt-BR/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/pt-BR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From a92d92ff404920f3008dbcf14c49ce9420895405 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:17 +0100 Subject: [PATCH 014/170] New translations step_1.md (Portuguese, Brazilian) --- pt-BR/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pt-BR/step_1.md diff --git a/pt-BR/step_1.md b/pt-BR/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/pt-BR/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 84b925ffe536c3e125202e1ec179bebca4f94446 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:18 +0100 Subject: [PATCH 015/170] New translations step_1.md (Indonesian) --- id-ID/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 id-ID/step_1.md diff --git a/id-ID/step_1.md b/id-ID/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/id-ID/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 376db6e6e30dad547e24a531005aacef76527586 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:19 +0100 Subject: [PATCH 016/170] New translations meta.yml (Russian) --- ru-RU/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ru-RU/meta.yml diff --git a/ru-RU/meta.yml b/ru-RU/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/ru-RU/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From e623159455f94b7133b7315bed093b88affe511f Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:20 +0100 Subject: [PATCH 017/170] New translations meta.yml (Bengali) --- bn-BD/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bn-BD/meta.yml diff --git a/bn-BD/meta.yml b/bn-BD/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/bn-BD/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 66081e71d106e79934a35e21db4f1bfce48afdb2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:21 +0100 Subject: [PATCH 018/170] New translations step_1.md (Bengali) --- bn-BD/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 bn-BD/step_1.md diff --git a/bn-BD/step_1.md b/bn-BD/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/bn-BD/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 9aa5c8aa4a618299e118dbf22c1adf0cf5a8ed39 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:22 +0100 Subject: [PATCH 019/170] New translations meta.yml (Croatian) --- hr-HR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hr-HR/meta.yml diff --git a/hr-HR/meta.yml b/hr-HR/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/hr-HR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 859fcca5340b7a00219089c850fd1e6daf5f44e5 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:22 +0100 Subject: [PATCH 020/170] New translations step_1.md (Croatian) --- hr-HR/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 hr-HR/step_1.md diff --git a/hr-HR/step_1.md b/hr-HR/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/hr-HR/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 6cdb56cee9f1e3da8bc38d738d407cf9439f8f62 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:23 +0100 Subject: [PATCH 021/170] New translations meta.yml (Hindi) --- hi-IN/meta.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/hi-IN/meta.yml b/hi-IN/meta.yml index a0c89fb..3623a01 100644 --- a/hi-IN/meta.yml +++ b/hi-IN/meta.yml @@ -1,13 +1,15 @@ -title: पाइथन के साथ टेक्स्ट लिखना +--- +title: Writing text with Python turtle hero_image: images/banner.png -description: पाइथन के साथ टेक्स्ट लिखना -original_url: +description: Writing text with Python turtle +original_url: theme: cc-prototype -duration: 1 # 1, 2 or 3 +duration: 1 listed: false ingredient: true copyedit: false -interests: “graphics" -technologies: “python, turtle" +interests: "graphics" +technologies: "python, turtle" steps: - - title: टेक्स्ट लिखना + - + title: Writing text From b3b8574731a9d212e2e3203495a2a26a41626b89 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:24 +0100 Subject: [PATCH 022/170] New translations step_1.md (Hindi) --- hi-IN/step_1.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/hi-IN/step_1.md b/hi-IN/step_1.md index 192daf4..e1ad332 100644 --- a/hi-IN/step_1.md +++ b/hi-IN/step_1.md @@ -1,29 +1,29 @@ -आप लिखने के लिए टर्टल का उपयोग कर सकते हैं। +You can use a turtle to write text. ```python turtle.write('Hello!') ``` -रंगीन टेक्स्ट बनाने के लिए टर्टल का रंग निर्धारित करें: +Set the turtle's color to create coloured text: ```python turtle.color('deep pink') turtle.write('Hello!') ``` -आप फॉन्ट और टेक्स्ट के संरेखण में भी परिवर्तन कर सकते हैं। +You can also change the font and alignment of the text. ```python style = ('Courier', 30, 'italic') turtle.write('Hello!', font=style, align='center') ``` -फॉन्ट tuple जिसमें यह शामिल है: -+ फॉन्ट के नाम जैसे 'Arial', 'Courier', या 'Times New Roman' -+ पिक्सल्स में फॉन्ट का आकार -+ फॉन्ट की किस्म, जो 'normal', 'bold', या 'italic' हो सकती है +The font is a tuple containing: -वह संरेखण निर्धारित करने के लिए, जो टर्टल की स्थिति के आधार पर टेक्स्ट की स्थिति को नियंत्रित करता है, `align` पैरामीटर का उपयोग करें। `align` का उपयोग इनमें से के लिए किया जा सकता है: ‘बायाँ’, ‘केंद्र’, ‘दायाँ' ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' -उदाहरण: - +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 9551a6794fcf8cb4566a08d7b103525c0a3592b6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:25 +0100 Subject: [PATCH 023/170] New translations meta.yml (French, Canada) --- fr-CA/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 fr-CA/meta.yml diff --git a/fr-CA/meta.yml b/fr-CA/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/fr-CA/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From eadef15f7826ed0fad970bc8b7f29ffb01dbefa4 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:26 +0100 Subject: [PATCH 024/170] New translations step_1.md (French, Canada) --- fr-CA/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fr-CA/step_1.md diff --git a/fr-CA/step_1.md b/fr-CA/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/fr-CA/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 2fc33e018d9e92c740d637d88e8cb37aa8eb1254 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:27 +0100 Subject: [PATCH 025/170] New translations meta.yml (Welsh) --- cy-GB/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cy-GB/meta.yml diff --git a/cy-GB/meta.yml b/cy-GB/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/cy-GB/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 30ec2afcf2598b02c015facc0b411e5c5489ec0e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:28 +0100 Subject: [PATCH 026/170] New translations step_1.md (Welsh) --- cy-GB/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 cy-GB/step_1.md diff --git a/cy-GB/step_1.md b/cy-GB/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/cy-GB/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From aa51f905e18077d28e24c0a267faeb85e314e1d9 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:29 +0100 Subject: [PATCH 027/170] New translations meta.yml (Montenegrin (Latin)) --- me-ME/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 me-ME/meta.yml diff --git a/me-ME/meta.yml b/me-ME/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/me-ME/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From d85a4563cc32ba045559d02a18afac626e78636e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:30 +0100 Subject: [PATCH 028/170] New translations step_1.md (Montenegrin (Latin)) --- me-ME/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 me-ME/step_1.md diff --git a/me-ME/step_1.md b/me-ME/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/me-ME/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From b2029830f382063cfa707d3f4e940c01d41db818 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:31 +0100 Subject: [PATCH 029/170] New translations meta.yml (Spanish, Latin America) --- es-LA/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 es-LA/meta.yml diff --git a/es-LA/meta.yml b/es-LA/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/es-LA/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 5077315536cb761c22b652c2c476a302cc7071ac Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:32 +0100 Subject: [PATCH 030/170] New translations step_1.md (Russian) --- ru-RU/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ru-RU/step_1.md diff --git a/ru-RU/step_1.md b/ru-RU/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/ru-RU/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 9d4c6ace5b3804365c1e51391d8bea4de5382aeb Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:33 +0100 Subject: [PATCH 031/170] New translations step_1.md (Portuguese) --- pt-PT/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pt-PT/step_1.md diff --git a/pt-PT/step_1.md b/pt-PT/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/pt-PT/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 36df25074e35f894de63b7921349613a750893b7 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:35 +0100 Subject: [PATCH 032/170] New translations step_1.md (Romanian) --- ro-RO/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ro-RO/step_1.md diff --git a/ro-RO/step_1.md b/ro-RO/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/ro-RO/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 6ae0bceee94e711b8c711bf286139469a0884183 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:36 +0100 Subject: [PATCH 033/170] New translations step_1.md (German) --- de-DE/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 de-DE/step_1.md diff --git a/de-DE/step_1.md b/de-DE/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/de-DE/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From e4f7c72098f61ca83a82096c58b1ebd7307e15a8 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:37 +0100 Subject: [PATCH 034/170] New translations meta.yml (French) --- fr-FR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 fr-FR/meta.yml diff --git a/fr-FR/meta.yml b/fr-FR/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/fr-FR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 4dce652f6951628152d8440e9b0119c336afb440 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:38 +0100 Subject: [PATCH 035/170] New translations step_1.md (French) --- fr-FR/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fr-FR/step_1.md diff --git a/fr-FR/step_1.md b/fr-FR/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/fr-FR/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 963f9f048e4c2555d5f33e14a6781e389ccd3ed0 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:38 +0100 Subject: [PATCH 036/170] New translations meta.yml (Spanish) --- es-ES/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 es-ES/meta.yml diff --git a/es-ES/meta.yml b/es-ES/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/es-ES/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 6130c933e5b0977a542606df49febf42e77e5944 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:39 +0100 Subject: [PATCH 037/170] New translations step_1.md (Spanish) --- es-ES/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 es-ES/step_1.md diff --git a/es-ES/step_1.md b/es-ES/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/es-ES/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 25128e4370015144ca9d6f5c013fb2894e37ee46 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:40 +0100 Subject: [PATCH 038/170] New translations meta.yml (Arabic) --- ar-SA/meta.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ar-SA/meta.yml b/ar-SA/meta.yml index 688ed51..3623a01 100644 --- a/ar-SA/meta.yml +++ b/ar-SA/meta.yml @@ -1,13 +1,15 @@ -title: كتابة نص باستخدام سلحفاة Python +--- +title: Writing text with Python turtle hero_image: images/banner.png -description: كتابة نص باستخدام سلحفاة Python -original_url: +description: Writing text with Python turtle +original_url: theme: cc-prototype -duration: 1 # 1, 2 or 3 +duration: 1 listed: false ingredient: true copyedit: false interests: "graphics" technologies: "python, turtle" steps: - - title: كتابة نص + - + title: Writing text From 4ac432b30e5af91b0d9044e657fd36c6bc69ea7f Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:41 +0100 Subject: [PATCH 039/170] New translations step_1.md (Arabic) --- ar-SA/step_1.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/ar-SA/step_1.md b/ar-SA/step_1.md index 1c422cf..e1ad332 100644 --- a/ar-SA/step_1.md +++ b/ar-SA/step_1.md @@ -1,29 +1,29 @@ -يمكنك استخدام السلحفاة لكتابة نص. +You can use a turtle to write text. -``` +```python turtle.write('Hello!') ``` -عيِّن لون السلحفاة لتنشئ نصًا ملونًا: +Set the turtle's color to create coloured text: -``` +```python turtle.color('deep pink') turtle.write('Hello!') ``` -يمكنك أيضًا تغيير خط النص ومحاذاته. +You can also change the font and alignment of the text. -``` +```python style = ('Courier', 30, 'italic') turtle.write('Hello!', font=style, align='center') ``` -يكون الخط عبارة عن مجموعة بيانات مترابطة تحتوي على: -+ اسم الخط، مثل 'Arial' أو 'Courier' أو 'Times New Roman' -+ حجم الخط بوحدة البكسل -+ نوع الخط، ويمكن أن يكون 'normal' أو 'bold' أو 'italic' +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' -لتعيين المحاذاة التي تحدد موضع النص وفقًا لموضع السلحفاة، استخدم المَعلمة `align`. ويمكن تعيين المَعلمة `align` إلى أحد الخيارات التالية: 'left', 'center', 'right' +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' -مثال: - +Example: \ No newline at end of file From 5338e9e52bb60d534a8964bb9e3f9f2cf71c0d0a Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:42 +0100 Subject: [PATCH 040/170] New translations meta.yml (Catalan) --- ca-ES/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ca-ES/meta.yml diff --git a/ca-ES/meta.yml b/ca-ES/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/ca-ES/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 2bae5a09c178dd4d34040092d9e44c3eecf3aa3c Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:43 +0100 Subject: [PATCH 041/170] New translations step_1.md (Catalan) --- ca-ES/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ca-ES/step_1.md diff --git a/ca-ES/step_1.md b/ca-ES/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/ca-ES/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From c20b7039658739c1a8eca9491ff487ae4793dd6a Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:44 +0100 Subject: [PATCH 042/170] New translations meta.yml (Czech) --- cs-CZ/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cs-CZ/meta.yml diff --git a/cs-CZ/meta.yml b/cs-CZ/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/cs-CZ/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From fbe7d687fc3f58f37f0241bf866ae742964d163b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:45 +0100 Subject: [PATCH 043/170] New translations step_1.md (Czech) --- cs-CZ/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 cs-CZ/step_1.md diff --git a/cs-CZ/step_1.md b/cs-CZ/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/cs-CZ/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 25410388a84a0f961e39b64b51c61f887b71dcd6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:45 +0100 Subject: [PATCH 044/170] New translations meta.yml (Danish) --- da-DK/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 da-DK/meta.yml diff --git a/da-DK/meta.yml b/da-DK/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/da-DK/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 3fcbee1ea9d7dad312edb722c16254b5d256bdd7 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:46 +0100 Subject: [PATCH 045/170] New translations step_1.md (Danish) --- da-DK/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 da-DK/step_1.md diff --git a/da-DK/step_1.md b/da-DK/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/da-DK/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 2ec68d3498e35c67cd24c8f8c88d719860f410bd Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:47 +0100 Subject: [PATCH 046/170] New translations meta.yml (German) --- de-DE/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 de-DE/meta.yml diff --git a/de-DE/meta.yml b/de-DE/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/de-DE/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 9dd5d7234b899263d5de5ee28e52c84009c02d1e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:48 +0100 Subject: [PATCH 047/170] New translations meta.yml (Greek) --- el-GR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 el-GR/meta.yml diff --git a/el-GR/meta.yml b/el-GR/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/el-GR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 425a0c396dba94860a6c91f3f2cdb31f5415f0a4 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:49 +0100 Subject: [PATCH 048/170] New translations meta.yml (Portuguese) --- pt-PT/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pt-PT/meta.yml diff --git a/pt-PT/meta.yml b/pt-PT/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/pt-PT/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From e836e574e3c61f116d7d64c451f4d21ecce4cbde Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:50 +0100 Subject: [PATCH 049/170] New translations step_1.md (Greek) --- el-GR/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 el-GR/step_1.md diff --git a/el-GR/step_1.md b/el-GR/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/el-GR/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 359e093ab7df2e52a7e0a7d2a36a4337aac84582 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:51 +0100 Subject: [PATCH 050/170] New translations meta.yml (Hebrew) --- he-IL/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 he-IL/meta.yml diff --git a/he-IL/meta.yml b/he-IL/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/he-IL/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 5eca8a4447448a78d3a6b4d8a9baf59d0743ccf8 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:51 +0100 Subject: [PATCH 051/170] New translations step_1.md (Hebrew) --- he-IL/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 he-IL/step_1.md diff --git a/he-IL/step_1.md b/he-IL/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/he-IL/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 2d02d552e4d085518f8d5ff3c636d39244c90b13 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:52 +0100 Subject: [PATCH 052/170] New translations meta.yml (Italian) --- it-IT/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 it-IT/meta.yml diff --git a/it-IT/meta.yml b/it-IT/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/it-IT/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 7dde917bb4beb722d0b653d5350ad75b184aacb7 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:53 +0100 Subject: [PATCH 053/170] New translations step_1.md (Italian) --- it-IT/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 it-IT/step_1.md diff --git a/it-IT/step_1.md b/it-IT/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/it-IT/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From f833bc29cbc49f2630689fafd798a0ac7b345402 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:54 +0100 Subject: [PATCH 054/170] New translations meta.yml (Japanese) --- ja-JP/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ja-JP/meta.yml diff --git a/ja-JP/meta.yml b/ja-JP/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/ja-JP/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 288ddfd7dd38f2611519408bb1b683016da3168b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:55 +0100 Subject: [PATCH 055/170] New translations step_1.md (Japanese) --- ja-JP/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ja-JP/step_1.md diff --git a/ja-JP/step_1.md b/ja-JP/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/ja-JP/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From acb2d4c1d8de4448b2cce761ab9458930de85bcb Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:56 +0100 Subject: [PATCH 056/170] New translations meta.yml (Korean) --- ko-KR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ko-KR/meta.yml diff --git a/ko-KR/meta.yml b/ko-KR/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/ko-KR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 3939b164990829322cf1d5fae337b459b415bb94 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:57 +0100 Subject: [PATCH 057/170] New translations step_1.md (Korean) --- ko-KR/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ko-KR/step_1.md diff --git a/ko-KR/step_1.md b/ko-KR/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/ko-KR/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From c47a92b86df459ad1c54c8341bef105274a38aac Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:57 +0100 Subject: [PATCH 058/170] New translations meta.yml (Dutch) --- nl-NL/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nl-NL/meta.yml diff --git a/nl-NL/meta.yml b/nl-NL/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/nl-NL/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 767e456c10df62522180d9e642db3f71986d0eac Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:58 +0100 Subject: [PATCH 059/170] New translations step_1.md (Dutch) --- nl-NL/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 nl-NL/step_1.md diff --git a/nl-NL/step_1.md b/nl-NL/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/nl-NL/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 58a4f8f4197c607a0a4cf3f2a117a58e3214bdb2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:05:59 +0100 Subject: [PATCH 060/170] New translations meta.yml (Polish) --- pl-PL/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pl-PL/meta.yml diff --git a/pl-PL/meta.yml b/pl-PL/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/pl-PL/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 74baf90481586a37d9571f4a8488bde9a88f99cc Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:06:00 +0100 Subject: [PATCH 061/170] New translations step_1.md (Polish) --- pl-PL/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pl-PL/step_1.md diff --git a/pl-PL/step_1.md b/pl-PL/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/pl-PL/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 67d044c7a1e276b53bfc222241dcfc9756891958 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Aug 2018 16:06:01 +0100 Subject: [PATCH 062/170] New translations step_1.md (Spanish, Latin America) --- es-LA/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 es-LA/step_1.md diff --git a/es-LA/step_1.md b/es-LA/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/es-LA/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 65c9d94b4f30ed1f7b42c5212c322a0d5fc2d7f8 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Wed, 8 Aug 2018 15:53:12 +0100 Subject: [PATCH 063/170] New translations meta.yml (Afrikaans) --- af-ZA/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 af-ZA/meta.yml diff --git a/af-ZA/meta.yml b/af-ZA/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/af-ZA/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 4d2fa55d72d5fc69ae8b88c756c04a3c237df037 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Wed, 8 Aug 2018 15:53:19 +0100 Subject: [PATCH 064/170] New translations step_1.md (Afrikaans) --- af-ZA/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 af-ZA/step_1.md diff --git a/af-ZA/step_1.md b/af-ZA/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/af-ZA/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 89d5f8f3ce94021162215fdacfdfd9c4d4cc42aa Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 4 Sep 2018 14:06:59 +0100 Subject: [PATCH 065/170] New translations meta.yml (Dutch) --- nl-NL/meta.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nl-NL/meta.yml b/nl-NL/meta.yml index 3623a01..101d224 100644 --- a/nl-NL/meta.yml +++ b/nl-NL/meta.yml @@ -1,15 +1,15 @@ --- -title: Writing text with Python turtle +title: Tekst schrijven met de Python schildpad hero_image: images/banner.png -description: Writing text with Python turtle +description: Tekst schrijven met de Python schildpad original_url: theme: cc-prototype duration: 1 listed: false ingredient: true copyedit: false -interests: "graphics" +interests: "grafisch" technologies: "python, turtle" steps: - - title: Writing text + title: Tekst schrijven From 593234f2229f62175b23569092916009ebd4ac50 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 4 Sep 2018 14:07:01 +0100 Subject: [PATCH 066/170] New translations step_1.md (Dutch) --- nl-NL/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/nl-NL/step_1.md b/nl-NL/step_1.md index e1ad332..8ae4997 100644 --- a/nl-NL/step_1.md +++ b/nl-NL/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Je kunt een turtle (schildpad) gebruiken om tekst te schrijven. ```python -turtle.write('Hello!') +turtle.write('Hallo!') ``` -Set the turtle's color to create coloured text: +Stel de kleur van de schildpad in om gekleurde tekst te maken: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('Hallo!') ``` -You can also change the font and alignment of the text. +Je kunt ook het lettertype en de uitlijning van de tekst wijzigen. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('Hallo!', font=style, align='center') ``` -The font is a tuple containing: +Het lettertype is een tuple met: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ De naam van het lettertype, zoals 'Arial', 'Courier' of 'Times New Roman' ++ De lettergrootte in pixels ++ Het lettertype, dat 'normal' (normaal), 'bold' (vet) of 'italic'(cursief) kan zijn -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Om de uitlijning in te stellen die bepaalt op basis van de positie van de schildpad waar de tekst wordt geplaatst, gebruik je de parameter `align`. `align` kan op een van deze opties worden ingesteld: 'left' (links), 'center' (gecentreerd), 'right' (rechts) -Example: \ No newline at end of file +Voorbeeld: \ No newline at end of file From 27ef738d1b868819cf0ae8a6f9aa95b3d2826761 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 4 Sep 2018 14:07:02 +0100 Subject: [PATCH 067/170] New translations meta.yml (Portuguese, Brazilian) --- pt-BR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pt-BR/meta.yml b/pt-BR/meta.yml index 3623a01..34bdbe5 100644 --- a/pt-BR/meta.yml +++ b/pt-BR/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: Escrevendo texto com o tartaruga do Python hero_image: images/banner.png -description: Writing text with Python turtle +description: Escrevendo texto com o tartaruga do Python original_url: theme: cc-prototype duration: 1 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Escrever o texto From da6a56ef77c9a5cfa30294ddfc53a98cea7aed71 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 4 Sep 2018 14:07:03 +0100 Subject: [PATCH 068/170] New translations step_1.md (Portuguese, Brazilian) --- pt-BR/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pt-BR/step_1.md b/pt-BR/step_1.md index e1ad332..826a3a3 100644 --- a/pt-BR/step_1.md +++ b/pt-BR/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Podemos usar a tartaruga para escrever o texto. ```python -turtle.write('Hello!') +turtle.write ('Olá!') ``` -Set the turtle's color to create coloured text: +Defina a cor da tartaruga para criar um texto colorido: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write ('Olá!') ``` -You can also change the font and alignment of the text. +Também podemos alterar a fonte e o alinhamento do texto. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write ('Olá!', font=style, align='center') ``` -The font is a tuple containing: +A fonte é uma tupla contendo: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ O nome da fonte, como 'Arial', 'Courier' ou 'Times New Roman' ++ Definimos o tamanho da fonte em pixels ++ O tipo de fonte, que pode ser 'normal', 'bold'(negrito) ou 'italic'(itálico) -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Para definir o alinhamento que controla como o texto é posicionado com base na posição da tartaruga, use o parâmetro `align(alinhar)`. O `align(alinhar)` pode ser definido para uma destas opções: 'left'(à esquerda), 'center'(centralizado), 'right'(à direita) -Example: \ No newline at end of file +Exemplo: \ No newline at end of file From 9b2f8af0961aeaf0ec01856b35aea1cfa70afafd Mon Sep 17 00:00:00 2001 From: Raspberry Pi Translations Bot <36728703+raspberrypitranslationsbot@users.noreply.github.com> Date: Thu, 1 Nov 2018 11:30:15 +0000 Subject: [PATCH 069/170] New translations meta.yml (Norwegian) --- no-NO/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 no-NO/meta.yml diff --git a/no-NO/meta.yml b/no-NO/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/no-NO/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 81b189ac1654ef59d8fbc8d55b214fa7cce81db0 Mon Sep 17 00:00:00 2001 From: Raspberry Pi Translations Bot <36728703+raspberrypitranslationsbot@users.noreply.github.com> Date: Thu, 1 Nov 2018 11:30:16 +0000 Subject: [PATCH 070/170] New translations step_1.md (Norwegian) --- no-NO/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 no-NO/step_1.md diff --git a/no-NO/step_1.md b/no-NO/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/no-NO/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From aaee285f9f0505879b1feb2e6fd80146697ff421 Mon Sep 17 00:00:00 2001 From: Raspberry Pi Translations Bot <36728703+raspberrypitranslationsbot@users.noreply.github.com> Date: Thu, 1 Nov 2018 11:30:23 +0000 Subject: [PATCH 071/170] New translations meta.yml (Arabic) --- ar-SA/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ar-SA/meta.yml b/ar-SA/meta.yml index 3623a01..8a29e5f 100644 --- a/ar-SA/meta.yml +++ b/ar-SA/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: كتابة نص باستخدام Python turtle hero_image: images/banner.png -description: Writing text with Python turtle +description: كتابة نص باستخدام Python turtle original_url: theme: cc-prototype duration: 1 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: كتابة نص From 3107db2dab5dc3760b8d449d22b8645a09accd2d Mon Sep 17 00:00:00 2001 From: Raspberry Pi Translations Bot <36728703+raspberrypitranslationsbot@users.noreply.github.com> Date: Thu, 1 Nov 2018 11:30:25 +0000 Subject: [PATCH 072/170] New translations step_1.md (Arabic) --- ar-SA/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/ar-SA/step_1.md b/ar-SA/step_1.md index e1ad332..f59907b 100644 --- a/ar-SA/step_1.md +++ b/ar-SA/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +يمكنك استخدام turtle لكتابة النص. ```python -turtle.write('Hello!') +turtle.write('مرحباً!') ``` -Set the turtle's color to create coloured text: +اضبط لون turtle لإنشاء نص ملون: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('مرحباً!') ``` -You can also change the font and alignment of the text. +يمكنك أيضًا تغيير نوع الخط ومحاذاة النص. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('مرحباً!', font=style, align='center') ``` -The font is a tuple containing: +نوع الخط هو مجموعة تحتوي على: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ اسم الخط مثل "Arial" أو "Courier" أو "Times New Roman" ++ حجم الخط بالبكسل ++ نمط الخط ، الذي يمكن أن يكون "طبيعيًا" أو "غامقًا" أو "مائل" -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +لضبط المحاذاة التي تُحدد موضع النص وفقًا لموضع السلحفاة، استخدم المتغير `align`. المتغير `align` يمكن أن يأخذ أحد القيم التالية: "left"، و"center"، و"right" -Example: \ No newline at end of file +مثال: \ No newline at end of file From 2f9769aa64dc287fb78f660fb08c19f71423caff Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:20:30 +0100 Subject: [PATCH 073/170] New translations step_1.md (Turkish) --- tr-TR/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tr-TR/step_1.md diff --git a/tr-TR/step_1.md b/tr-TR/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/tr-TR/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From a3f338476ad664ba89de3a8f5504f0fda4812e83 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:20:32 +0100 Subject: [PATCH 074/170] New translations step_1.md (Vietnamese) --- vi-VN/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 vi-VN/step_1.md diff --git a/vi-VN/step_1.md b/vi-VN/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/vi-VN/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From 4a50a8be5dfaec2ca033ef3ccc295e0a308bbe66 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:20:33 +0100 Subject: [PATCH 075/170] New translations meta.yml (Vietnamese) --- vi-VN/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 vi-VN/meta.yml diff --git a/vi-VN/meta.yml b/vi-VN/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/vi-VN/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 3113f95d084046730e4e14cd4e682c4d26a8aac1 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:20:34 +0100 Subject: [PATCH 076/170] New translations meta.yml (Turkish) --- tr-TR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tr-TR/meta.yml diff --git a/tr-TR/meta.yml b/tr-TR/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/tr-TR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 68b7718c9611c84b173e39b3e5a6f60c64c533e8 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:20:36 +0100 Subject: [PATCH 077/170] New translations step_1.md (Swedish) --- sv-SE/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sv-SE/step_1.md diff --git a/sv-SE/step_1.md b/sv-SE/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/sv-SE/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From a28004e927132a561b6aa202a58e1505f0cb8530 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:21:10 +0100 Subject: [PATCH 078/170] New translations meta.yml (Swedish) --- sv-SE/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sv-SE/meta.yml diff --git a/sv-SE/meta.yml b/sv-SE/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/sv-SE/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From b8dca01fa41b278f0b1d2d650bc9719d8c83ed63 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:21:19 +0100 Subject: [PATCH 079/170] New translations meta.yml (English) --- en-US/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 en-US/meta.yml diff --git a/en-US/meta.yml b/en-US/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/en-US/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 1a1b70fa91f4b3cb9bae6f3ff05708aac831be35 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:21:20 +0100 Subject: [PATCH 080/170] New translations step_1.md (Hungarian) --- hu-HU/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 hu-HU/step_1.md diff --git a/hu-HU/step_1.md b/hu-HU/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/hu-HU/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From ba26ba473375759075ab4c2de84e3ba23c0222bb Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:21:21 +0100 Subject: [PATCH 081/170] New translations meta.yml (Hungarian) --- hu-HU/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hu-HU/meta.yml diff --git a/hu-HU/meta.yml b/hu-HU/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/hu-HU/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 93268e27cdf9c226dff362546fdd134c29767d4d Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:21:24 +0100 Subject: [PATCH 082/170] New translations step_1.md (English) --- en-US/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 en-US/step_1.md diff --git a/en-US/step_1.md b/en-US/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/en-US/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From bb28f9f91d83e39c521f11f1bc0fbdb69a147e62 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:21:29 +0100 Subject: [PATCH 083/170] New translations step_1.md (Finnish) --- fi-FI/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fi-FI/step_1.md diff --git a/fi-FI/step_1.md b/fi-FI/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/fi-FI/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From fba364a23c5234db316cd56cdd7e115e8cd8d194 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Fri, 3 May 2019 10:21:30 +0100 Subject: [PATCH 084/170] New translations meta.yml (Finnish) --- fi-FI/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 fi-FI/meta.yml diff --git a/fi-FI/meta.yml b/fi-FI/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/fi-FI/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 474774ef3e31b4093555d7076ae4d43b1840f5c6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 9 Aug 2019 12:44:14 +0100 Subject: [PATCH 085/170] New translations meta.yml (Norwegian) --- no-NO/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/no-NO/meta.yml b/no-NO/meta.yml index 3623a01..90937b3 100644 --- a/no-NO/meta.yml +++ b/no-NO/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: Skrive tekst med Python skilpadde hero_image: images/banner.png -description: Writing text with Python turtle +description: Skrive tekst med Python skilpadde original_url: theme: cc-prototype duration: 1 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Skrive tekst From 6227a722ca4e844fc16e248bdf7e6d28a698d00b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 9 Aug 2019 12:44:17 +0100 Subject: [PATCH 086/170] New translations step_1.md (Norwegian) --- no-NO/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/no-NO/step_1.md b/no-NO/step_1.md index e1ad332..7ed3dec 100644 --- a/no-NO/step_1.md +++ b/no-NO/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Du kan bruke en skilpadde til å skrive tekst. ```python -turtle.write('Hello!') +turtle.write('Hei!') ``` -Set the turtle's color to create coloured text: +Sett skillpaddens farge for å lage farget tekst: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('Hei!') ``` -You can also change the font and alignment of the text. +Du kan også endre skrift og justering av teksten. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write ('Hei!', font=style, align='center') ``` -The font is a tuple containing: +Skriften er en tuppel som inneholder: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ Skriftnavnet som 'Arial', 'Courier' eller 'Times New Roman' ++ Skriftstørrelsen i piksler ++ Skrifttypen, som kan være 'normal', 'bold' (fet) eller 'italics' (kursiv) -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +For å angi justeringen som styrer hvordan teksten er plassert basert på turtleposisjonen, bruk `align` parameteren. `align` kan settes til en av disse alternativene: 'left' (venstre), 'center' (sentrert), 'right' (høyre) -Example: \ No newline at end of file +Eksempel: \ No newline at end of file From fb2c6a55506324f054d2035427c772b04f2d56bf Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 9 Aug 2019 12:44:26 +0100 Subject: [PATCH 087/170] New translations step_1.md (Igbo) --- ig-NG/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ig-NG/step_1.md diff --git a/ig-NG/step_1.md b/ig-NG/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/ig-NG/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From ed5aa9587c0746d01c2763189b2398ccaad98fa5 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 9 Aug 2019 12:44:30 +0100 Subject: [PATCH 088/170] New translations meta.yml (Igbo) --- ig-NG/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ig-NG/meta.yml diff --git a/ig-NG/meta.yml b/ig-NG/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/ig-NG/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 6c00247d435324d7ea5a23f995e487ad5dfa314d Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 9 Aug 2019 12:44:33 +0100 Subject: [PATCH 089/170] New translations step_1.md (Dutch) --- nl-NL/step_1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nl-NL/step_1.md b/nl-NL/step_1.md index 8ae4997..61e67ff 100644 --- a/nl-NL/step_1.md +++ b/nl-NL/step_1.md @@ -22,8 +22,8 @@ Het lettertype is een tuple met: + De naam van het lettertype, zoals 'Arial', 'Courier' of 'Times New Roman' + De lettergrootte in pixels -+ Het lettertype, dat 'normal' (normaal), 'bold' (vet) of 'italic'(cursief) kan zijn ++ Het lettertype, dat 'normal' (normaal), 'bold' (vet) of 'italic' (cursief) kan zijn -Om de uitlijning in te stellen die bepaalt op basis van de positie van de schildpad waar de tekst wordt geplaatst, gebruik je de parameter `align`. `align` kan op een van deze opties worden ingesteld: 'left' (links), 'center' (gecentreerd), 'right' (rechts) +Om de uitlijning in te stellen waar de tekst op basis van de positie van de schildpad wordt geplaatst, gebruik je de parameter `align`. `align` kan op een van deze opties worden ingesteld: 'left' (links), 'center' (gecentreerd), 'right' (rechts) Voorbeeld: \ No newline at end of file From 12226c9c34cfabc1def3934fd53acf09de25cf40 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 9 Aug 2019 16:38:40 +0100 Subject: [PATCH 090/170] New translations meta.yml (Sinhala) --- si-LK/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 si-LK/meta.yml diff --git a/si-LK/meta.yml b/si-LK/meta.yml new file mode 100644 index 0000000..3623a01 --- /dev/null +++ b/si-LK/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From 21f847a8d2e89fcd3dd824355477653393ad1108 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 9 Aug 2019 16:38:57 +0100 Subject: [PATCH 091/170] New translations step_1.md (Sinhala) --- si-LK/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 si-LK/step_1.md diff --git a/si-LK/step_1.md b/si-LK/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/si-LK/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From c4f53f1b153d399f32ee9bb51ef910c724aa6aa6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Wed, 14 Aug 2019 10:36:39 +0100 Subject: [PATCH 092/170] New translations meta.yml (Romanian) --- ro-RO/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ro-RO/meta.yml b/ro-RO/meta.yml index 3623a01..41cb052 100644 --- a/ro-RO/meta.yml +++ b/ro-RO/meta.yml @@ -8,7 +8,7 @@ duration: 1 listed: false ingredient: true copyedit: false -interests: "graphics" +interests: "grafică" technologies: "python, turtle" steps: - From 944d664e2b234a05499371b358b55881bf6f54d6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 19 Aug 2019 17:25:00 +0100 Subject: [PATCH 093/170] New translations meta.yml (Romanian) --- ro-RO/meta.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ro-RO/meta.yml b/ro-RO/meta.yml index 41cb052..6d72c54 100644 --- a/ro-RO/meta.yml +++ b/ro-RO/meta.yml @@ -1,15 +1,15 @@ --- -title: Writing text with Python turtle +title: Scrierea de text cu broasca țestoasă Python hero_image: images/banner.png -description: Writing text with Python turtle +description: Scrierea de text cu broască țestoasă Python original_url: theme: cc-prototype duration: 1 listed: false ingredient: true copyedit: false -interests: "grafică" +interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Scrierea de text From f7f4ed25faa83bdab945662c3553b52f716d11d1 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 19 Aug 2019 17:25:01 +0100 Subject: [PATCH 094/170] New translations step_1.md (Romanian) --- ro-RO/step_1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ro-RO/step_1.md b/ro-RO/step_1.md index e1ad332..6225496 100644 --- a/ro-RO/step_1.md +++ b/ro-RO/step_1.md @@ -18,7 +18,7 @@ style = ('Courier', 30, 'italic') turtle.write('Hello!', font=style, align='center') ``` -The font is a tuple containing: +Fontul este un tuplu care conține: + The font name such as 'Arial', 'Courier', or 'Times New Roman' + The font size in pixels From 159ee7fdcea1a45888dd937a81b3c5ab5a85b38d Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 19 Aug 2019 17:34:15 +0100 Subject: [PATCH 095/170] New translations step_1.md (Romanian) --- ro-RO/step_1.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/ro-RO/step_1.md b/ro-RO/step_1.md index 6225496..6ddd618 100644 --- a/ro-RO/step_1.md +++ b/ro-RO/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Poți folosi o broască țestoasă pentru a scrie text. ```python -turtle.write('Hello!') +turtle.write('Salut!') ``` -Set the turtle's color to create coloured text: +Setează culoarea țestoasei pentru a crea text colorat: ```python -turtle.color('deep pink') -turtle.write('Hello!') +turtle.color("deep pink") +turtle.write("Salut!") ``` -You can also change the font and alignment of the text. +De asemenea, poți schimba fontul și alinierea textului. ```python -style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +stil = ('Courier', 30, 'italic') +turtle.write ('Salut!', font=stil, align='center') ``` Fontul este un tuplu care conține: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ Numele fontului, cum ar fi „Arial”, „Courier” sau „Times New Roman” ++ Dimensiunea fontului în pixeli ++ Tipul de font, care poate fi „normal”, „bold” sau „italic” -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Pentru a seta alinierea care controlează modul în care textul este poziționat pe baza poziției țestoasei, folosește parametrul `align`. `align` poate fi setat ca una din următoarele opțiuni: „left”, „center”, „right” -Example: \ No newline at end of file +Exemplu: \ No newline at end of file From 0a7a5b636ffd9ed079670f7d530c9f90521dc2ec Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 8 Oct 2019 14:00:55 +0100 Subject: [PATCH 096/170] New translations meta.yml (Croatian) --- hr-HR/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hr-HR/meta.yml b/hr-HR/meta.yml index 3623a01..3583df6 100644 --- a/hr-HR/meta.yml +++ b/hr-HR/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 7d6e4a455cddd6620249173341eda232b621ab63 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 8 Oct 2019 14:00:56 +0100 Subject: [PATCH 097/170] New translations meta.yml (German) --- de-DE/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/de-DE/meta.yml b/de-DE/meta.yml index 3623a01..3583df6 100644 --- a/de-DE/meta.yml +++ b/de-DE/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From b0b0446510cda5295d26b3c6222c59487e66d622 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 8 Oct 2019 14:00:57 +0100 Subject: [PATCH 098/170] New translations meta.yml (Spanish) --- es-ES/meta.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/es-ES/meta.yml b/es-ES/meta.yml index 3623a01..ff29743 100644 --- a/es-ES/meta.yml +++ b/es-ES/meta.yml @@ -1,10 +1,10 @@ --- -title: Writing text with Python turtle +title: Escribir texto con la tortuga de Python hero_image: images/banner.png -description: Writing text with Python turtle +description: Escribir texto con la tortuga de Python original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Escribir texto From 367deb6be28e3d328c011ebfa8c50d69487cf1f1 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 8 Oct 2019 14:00:58 +0100 Subject: [PATCH 099/170] New translations step_1.md (Spanish) --- es-ES/step_1.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/es-ES/step_1.md b/es-ES/step_1.md index e1ad332..c430362 100644 --- a/es-ES/step_1.md +++ b/es-ES/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Puedes usar una tortuga para escribir texto. ```python -turtle.write('Hello!') +turtle.write('¡Hola!') ``` -Set the turtle's color to create coloured text: +Establece el color de la tortuga para crear texto en color: ```python -turtle.color('deep pink') -turtle.write('Hello!') +turtle.color('deep pink') # rosa intenso +turtle.write('¡Hola!') ``` -You can also change the font and alignment of the text. +También puedes cambiar la fuente y la alineación del texto. ```python -style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +estilo = ('Courier', 30, 'italic') # fuente, tamaño, cursiva +turtle.write('¡Hola!', font = estilo, align = 'center') # centrado ``` -The font is a tuple containing: +La fuente es una tupla que contiene: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ El nombre de la fuente, como 'Arial', 'Courier' o 'Times New Roman' ++ El tamaño de la fuente en píxeles ++ El tipo de fuente, que puede ser 'normal', 'bold' o 'italic' (normal, negrita o cursiva) -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Para establecer la alineación que controla cómo se posiciona el texto en función de la posición de la tortuga, usa el parámetro `align` (alineación). `align` se puede establecer en una de estas opciones: 'left', 'center', 'right' (izquierda, centro, derecha) -Example: \ No newline at end of file +Ejemplo: \ No newline at end of file From adf8e539656d9502d71ea6bacade659acf850657 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 15 Oct 2019 10:36:19 +0100 Subject: [PATCH 100/170] New translations meta.yml (German) --- de-DE/meta.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/de-DE/meta.yml b/de-DE/meta.yml index 3583df6..6690c3b 100644 --- a/de-DE/meta.yml +++ b/de-DE/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: Schreiben von Text mit Python Turtle hero_image: images/banner.png -description: Writing text with Python turtle +description: Schreiben von Text mit Python Turtle original_url: theme: cc-prototype duration: 1 #1, 2 or 3 From 4eda0448a26eac79ce73639b53c883500b66367d Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 15 Oct 2019 10:48:32 +0100 Subject: [PATCH 101/170] New translations meta.yml (German) --- de-DE/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/de-DE/meta.yml b/de-DE/meta.yml index 6690c3b..3721625 100644 --- a/de-DE/meta.yml +++ b/de-DE/meta.yml @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Text schreiben From 294565a2bf073cdedf54bf86023f0e1f20bea8d5 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 15 Oct 2019 10:48:34 +0100 Subject: [PATCH 102/170] New translations step_1.md (German) --- de-DE/step_1.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/de-DE/step_1.md b/de-DE/step_1.md index e1ad332..79b2103 100644 --- a/de-DE/step_1.md +++ b/de-DE/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Du kannst eine Schildkröte verwenden, um Text zu schreiben. ```python -turtle.write('Hello!') +turtle.write ('Hallo!') ``` -Set the turtle's color to create coloured text: +Lege die Farbe der Schildkröte fest, um farbigen Text zu erstellen: ```python -turtle.color('deep pink') -turtle.write('Hello!') +turtle.color ('deep pink') +turtle.write ('Hallo!') ``` -You can also change the font and alignment of the text. +Du kannst auch die Schriftart und Ausrichtung des Textes ändern. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write ('Hallo!', font = style, align = 'center') ``` -The font is a tuple containing: +Die Schriftart ist ein Tupel mit: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ Dem Schriftnamen wie 'Arial', 'Courier' oder 'Times New Roman' ++ Der Schriftgröße in Pixel ++ Der Schriftart, die normal ('normal'), fett ('bold') oder kursiv ('italic') sein kann -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Um die Ausrichtung festzulegen, die die Position des Textes in Bezug zur Position der Schildkröte steuert, verwendest du den Parameter `align`. `align` kann auf eine der folgenden Optionen eingestellt werden: "left" (links), "center" (Mitte), "right" (rechts) -Example: \ No newline at end of file +Beispiel: \ No newline at end of file From 4e3aa8764ae3e319ce3c50793d8a25f0916e96a3 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 7 Nov 2019 10:48:13 +0000 Subject: [PATCH 103/170] New translations meta.yml (Croatian) --- hr-HR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hr-HR/meta.yml b/hr-HR/meta.yml index 3583df6..cde3a9d 100644 --- a/hr-HR/meta.yml +++ b/hr-HR/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: Pisanje teksta koristeći turtle modul u Pythonu hero_image: images/banner.png -description: Writing text with Python turtle +description: Pisanje teksta koristeći turtle modul u Pythonu original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Pisanje teksta From 5e759cad9d45a701a1631145b5dbebb598bc67f8 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 7 Nov 2019 10:48:14 +0000 Subject: [PATCH 104/170] New translations step_1.md (Croatian) --- hr-HR/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/hr-HR/step_1.md b/hr-HR/step_1.md index e1ad332..e803677 100644 --- a/hr-HR/step_1.md +++ b/hr-HR/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Možeš koristiti turtle modul za pisanje teksta. ```python -turtle.write('Hello!') +turtle.write('Bok!') ``` -Set the turtle's color to create coloured text: +Postavi boju kornjače da obojaš tekst: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('Bok!') ``` -You can also change the font and alignment of the text. +Također možeš promijeniti font i poravnavanje teksta. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('Bok!', font=style, align='center') ``` -The font is a tuple containing: +Font je linija koja sadrži: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ Naziv fonta, primjerice „Arial”, „Courier” ili „Times New Roman” ++ Veličinu fonta u pikselima ++ Tip fonta, koji može biti „normal” (normalan), „bold” (podebljan) ili „italic” (ukošen) -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Upotrijebi parametar `align` (poravnanje) da postaviš poravnanje koje, na temelju položaja kornjače, određuje kako će tekst biti postavljen. Parametar `align` može se postaviti na jednu od ovih opcija: „left” (lijevo), „center” (centrirano), „right” (desno) -Example: \ No newline at end of file +Na primjer: \ No newline at end of file From 8d4cb93fed383b2c5b14a2660ddde058c38ce723 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 7 Nov 2019 10:48:16 +0000 Subject: [PATCH 105/170] New translations meta.yml (Korean) --- ko-KR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ko-KR/meta.yml b/ko-KR/meta.yml index 3623a01..6d26835 100644 --- a/ko-KR/meta.yml +++ b/ko-KR/meta.yml @@ -4,12 +4,12 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false -interests: "graphics" +interests: "그래픽" technologies: "python, turtle" steps: - - title: Writing text + title: 글쓰기 From b22555be76a33e259dcda50781f379f6ddf5a865 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 7 Nov 2019 10:48:17 +0000 Subject: [PATCH 106/170] New translations meta.yml (Polish) --- pl-PL/meta.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pl-PL/meta.yml b/pl-PL/meta.yml index 3623a01..f6bc443 100644 --- a/pl-PL/meta.yml +++ b/pl-PL/meta.yml @@ -1,15 +1,15 @@ --- -title: Writing text with Python turtle +title: Pisanie tekstu za pomocą żółwia w Pythonie hero_image: images/banner.png -description: Writing text with Python turtle +description: Pisanie tekstu za pomocą żółwia w Pythonie original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false -interests: "graphics" -technologies: "python, turtle" +interests: "grafika" +technologies: "python, żółw" steps: - - title: Writing text + title: Pisanie tekstu From 1efa66fe0eeabe302df2fe4c3338e70512849f4e Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 7 Nov 2019 10:48:18 +0000 Subject: [PATCH 107/170] New translations step_1.md (Polish) --- pl-PL/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pl-PL/step_1.md b/pl-PL/step_1.md index e1ad332..b0eed52 100644 --- a/pl-PL/step_1.md +++ b/pl-PL/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Możesz użyć żółwia, aby napisać tekst. ```python -turtle.write('Hello!') +turtle.write("Witaj!") ``` -Set the turtle's color to create coloured text: +Ustaw kolor żółwia, aby utworzyć kolorowy tekst: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('Witaj!') ``` -You can also change the font and alignment of the text. +Możesz także zmienić czcionkę i wyrównanie tekstu. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('Witaj!', font=style, align='center') ``` -The font is a tuple containing: +Parametrowi font przypisujemy wartość zmiennej style, która zawiera: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ Nazwę czcionki, np. 'Arial', 'Courier' lub 'Times New Roman' ++ Rozmiar czcionki w pikselach ++ Wybrany typ czcionki: 'normal', 'bold' lub 'talic' (odpowiednio: normalna, pogrubiona lub kursywa) -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Użyj parametru `align`, aby ustawić sposób wyrównania tekstu względem położenia żółwia. Parametr `align` można ustawić na jedną z następujących opcji: "left", "center", "right" (odpowiednio: lewo, środek, prawo) -Example: \ No newline at end of file +Przykład: \ No newline at end of file From 987868d3ea38983235fb88d8fc23d1ec46d24839 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Wed, 13 Nov 2019 16:44:01 +0000 Subject: [PATCH 108/170] New translations meta.yml (Korean) --- ko-KR/meta.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ko-KR/meta.yml b/ko-KR/meta.yml index 6d26835..6d02e92 100644 --- a/ko-KR/meta.yml +++ b/ko-KR/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: 파이썬 터틀로 텍스트 쓰기 hero_image: images/banner.png -description: Writing text with Python turtle +description: 파이썬 터틀로 텍스트 쓰기 original_url: theme: cc-prototype duration: 1 #1, 2 or 3 From d0512135a0467661e93a7ba80d1f06a2153277ba Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Wed, 13 Nov 2019 16:44:02 +0000 Subject: [PATCH 109/170] New translations step_1.md (Korean) --- ko-KR/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/ko-KR/step_1.md b/ko-KR/step_1.md index e1ad332..9acc28a 100644 --- a/ko-KR/step_1.md +++ b/ko-KR/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +거북이를 사용하여 텍스트를 쓸 수 있습니다. ```python -turtle.write('Hello!') +turtle.write ( '안녕!') ``` -Set the turtle's color to create coloured text: +거북이의 색을 설정하여 색칠 된 텍스트를 쓸 수 있습니다. ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('안녕!') ``` -You can also change the font and alignment of the text. +텍스트의 글꼴과 맞춤을 변경할 수도 있습니다. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('안녕!', font=style, align='center') ``` -The font is a tuple containing: +글꼴은 다음을 포함하는 튜플입니다. -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ 'Arial', 'Courier'또는 'Times New Roman'과 같은 글꼴 이름 ++ 글꼴 크기 (픽셀 단위) ++ 글꼴 유형: '보통', '굵게'또는 '기울임 꼴' 등 -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +거북의 위치에 따라 텍스트의 위치를 ​​제어하는 ​​정렬을 설정하려면 `align` 매개 변수를 사용합니다. `align` 은 'left', 'center', 'right'중 하나의 옵션으로 설정할 수 있습니다. -Example: \ No newline at end of file +예시: \ No newline at end of file From 1e7311f339556840c85a0f6f1327bba7b5772db2 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 13 Jan 2020 13:56:32 +0000 Subject: [PATCH 110/170] New translations meta.yml (Greek) --- el-GR/meta.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/el-GR/meta.yml b/el-GR/meta.yml index 3623a01..400b5b2 100644 --- a/el-GR/meta.yml +++ b/el-GR/meta.yml @@ -1,15 +1,15 @@ --- -title: Writing text with Python turtle +title: Γράφοντας κείμενο με τη χελώνα Python hero_image: images/banner.png -description: Writing text with Python turtle +description: Γράφοντας κείμενο με τη χελώνα Python original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false -interests: "graphics" -technologies: "python, turtle" +interests: "γραφικά" +technologies: "python, χελώνα" steps: - - title: Writing text + title: Σύνταξη κειμένου From b32e35f946a316959258c294d60a0e41491a0b93 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 13 Jan 2020 13:56:34 +0000 Subject: [PATCH 111/170] New translations step_1.md (Greek) --- el-GR/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/el-GR/step_1.md b/el-GR/step_1.md index e1ad332..edf46fa 100644 --- a/el-GR/step_1.md +++ b/el-GR/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Μπορείτε να χρησιμοποιήσετε μια χελώνα για να γράψετε κείμενο. ```python -turtle.write('Hello!') +turtle.write ('Γεια σας!') ``` -Set the turtle's color to create coloured text: +Ρυθμίστε το χρώμα της χελώνας για να δημιουργήσετε έγχρωμο κείμενο: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write ('Γεια σας!') ``` -You can also change the font and alignment of the text. +Μπορείτε επίσης να αλλάξετε τη γραμματοσειρά και την ευθυγράμμιση του κειμένου. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('Γεια σας!', font=style, align='center') ``` -The font is a tuple containing: +Η γραμματοσειρά είναι μια πλειάδα που περιέχει: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ Το όνομα της γραμματοσειράς, όπως 'Arial', 'Courier' ή 'Times New Roman' ++ Το μέγεθος γραμματοσειράς σε εικονοστοιχεία ++ Ο τύπος γραμματοσειράς, ο οποίος μπορεί να είναι "κανονικός", "έντονος" ή "πλάγιος" -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Για να ορίσετε την ευθυγράμμιση που καθορίζει τον τρόπο με τον οποίο το κείμενο τοποθετείται με βάση τη θέση της χελώνας, χρησιμοποιήστε την παράμετρο `align`. Η `align` μπορεί να οριστεί σε μία από αυτές τις επιλογές: 'left', 'center', 'right' -Example: \ No newline at end of file +Για παράδειγμα: \ No newline at end of file From 9b76c2a93bb9116628f7a65d5aaf134829638b8c Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 13 Jan 2020 13:56:35 +0000 Subject: [PATCH 112/170] New translations meta.yml (Portuguese) --- pt-PT/meta.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pt-PT/meta.yml b/pt-PT/meta.yml index 3623a01..e475af4 100644 --- a/pt-PT/meta.yml +++ b/pt-PT/meta.yml @@ -1,15 +1,15 @@ --- -title: Writing text with Python turtle +title: Escrever texto com tartaruga Python hero_image: images/banner.png -description: Writing text with Python turtle +description: Escrever texto com tartaruga Python original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false -interests: "graphics" -technologies: "python, turtle" +interests: "gráficos" +technologies: "python, tartaruga" steps: - - title: Writing text + title: Escrever texto From d430433ca12e857ac0e71a98d104d08167dc6fb2 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 13 Jan 2020 13:56:36 +0000 Subject: [PATCH 113/170] New translations step_1.md (Portuguese) --- pt-PT/step_1.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pt-PT/step_1.md b/pt-PT/step_1.md index e1ad332..f757032 100644 --- a/pt-PT/step_1.md +++ b/pt-PT/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Podes usar uma tartaruga para escrever texto. ```python -turtle.write('Hello!') +turtle.write('Olá!') ``` -Set the turtle's color to create coloured text: +Define a cor da tartaruga para criar texto colorido: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('Olá!') ``` -You can also change the font and alignment of the text. +Também podes alterar a fonte e o alinhamento do texto. ```python -style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +estilo = ('Courier', 30, 'italic') +turtle.write('Olá!', font=estilo, align= 'center') ``` -The font is a tuple containing: +A fonte é uma lista ordenada que contém: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ O nome da fonte, como 'Arial', 'Courier' ou 'Times New Roman' ++ O tamanho da fonte em pixeis ++ O tipo de fonte, que pode ser 'normal', 'bold', ou 'italic' -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Para definir o alinhamento que controla a forma como o texto é posicionado com base na posição da tartaruga, utiliza o parâmetro `align`. `align` pode ser configurado para uma destas opções: 'left', 'center', 'right' -Example: \ No newline at end of file +Exemplo: \ No newline at end of file From 1c1d2acc598ef2919710b1c261fc3be56d81d068 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 13 Jan 2020 13:56:38 +0000 Subject: [PATCH 114/170] New translations meta.yml (Turkish) --- tr-TR/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tr-TR/meta.yml b/tr-TR/meta.yml index 3623a01..3583df6 100644 --- a/tr-TR/meta.yml +++ b/tr-TR/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 9070e1337fb199fb4f8ecf6802db83135fa20142 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 13 Jan 2020 13:56:39 +0000 Subject: [PATCH 115/170] New translations meta.yml (Ukrainian) --- uk-UA/meta.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/uk-UA/meta.yml b/uk-UA/meta.yml index 3623a01..511864f 100644 --- a/uk-UA/meta.yml +++ b/uk-UA/meta.yml @@ -1,10 +1,10 @@ --- -title: Writing text with Python turtle +title: Вивід тексту за допомогою Python turtle hero_image: images/banner.png -description: Writing text with Python turtle +description: Вивід тексту за допомогою Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Вивід тексту From db0ca634949f78c92301e5dc9a193b174f6cfdf6 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 13 Jan 2020 13:56:41 +0000 Subject: [PATCH 116/170] New translations step_1.md (Ukrainian) --- uk-UA/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/uk-UA/step_1.md b/uk-UA/step_1.md index e1ad332..cb2fecd 100644 --- a/uk-UA/step_1.md +++ b/uk-UA/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Ти можеш використовувати turtle для виводу тексту. ```python -turtle.write('Hello!') +turtle.write('Привіт!') ``` -Set the turtle's color to create coloured text: +Встановіть колір черепахи, щоб створити кольоровий текст: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('Привіт!') ``` -You can also change the font and alignment of the text. +Ти також можеш змінити шрифт і вирівнювання тексту. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('Привіт!', font=style, align='center') ``` -The font is a tuple containing: +Шрифт являє собою кортеж, що містить: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ Назва шрифту, наприклад "Arial", "Courier" або "Times New Roman" ++ Розмір шрифту в пікселях ++ Тип шрифту, який може бути "normal" (звичайний), "bold" (жирний) або "italic" (курсив) -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` може приймати наступні значення: "left" (ліво), "center" (центр), "right" (право) -Example: \ No newline at end of file +Приклад: \ No newline at end of file From 0140ce8f7909b958b0fef1f7afcbb3e5c6a7d097 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:36 +0000 Subject: [PATCH 117/170] New translations meta.yml (Afrikaans) --- af-ZA/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/af-ZA/meta.yml b/af-ZA/meta.yml index 3623a01..3583df6 100644 --- a/af-ZA/meta.yml +++ b/af-ZA/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 66648c32a6228c5888e3691ff7fb4f5be7a8e2be Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:37 +0000 Subject: [PATCH 118/170] New translations meta.yml (Russian) --- ru-RU/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ru-RU/meta.yml b/ru-RU/meta.yml index 3623a01..3583df6 100644 --- a/ru-RU/meta.yml +++ b/ru-RU/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 0f9fb3f0ae9d718a376b4b2d987b09f4a01ba6cc Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:39 +0000 Subject: [PATCH 119/170] New translations meta.yml (Montenegrin (Latin)) --- me-ME/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/me-ME/meta.yml b/me-ME/meta.yml index 3623a01..3583df6 100644 --- a/me-ME/meta.yml +++ b/me-ME/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 7589c2fea5a4de971e0a35d2a312bb0183c0a4b8 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:40 +0000 Subject: [PATCH 120/170] New translations meta.yml (Norwegian) --- no-NO/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/no-NO/meta.yml b/no-NO/meta.yml index 90937b3..5ca43c7 100644 --- a/no-NO/meta.yml +++ b/no-NO/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Skrive tekst med Python skilpadde original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 4ee66b60ce0261575e27179230621f7a0626501e Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:41 +0000 Subject: [PATCH 121/170] New translations meta.yml (Portuguese, Brazilian) --- pt-BR/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pt-BR/meta.yml b/pt-BR/meta.yml index 34bdbe5..5708604 100644 --- a/pt-BR/meta.yml +++ b/pt-BR/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Escrevendo texto com o tartaruga do Python original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 55fc66f3a0a0f278f4b8f9069234155e143b0815 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:43 +0000 Subject: [PATCH 122/170] New translations meta.yml (Romanian) --- ro-RO/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ro-RO/meta.yml b/ro-RO/meta.yml index 6d72c54..56973a3 100644 --- a/ro-RO/meta.yml +++ b/ro-RO/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Scrierea de text cu broască țestoasă Python original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 4a2cff8807b08beb4b14be8bf887a08145b3f7b0 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:44 +0000 Subject: [PATCH 123/170] New translations meta.yml (Serbian (Cyrillic)) --- sr-SP/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sr-SP/meta.yml b/sr-SP/meta.yml index 3623a01..3583df6 100644 --- a/sr-SP/meta.yml +++ b/sr-SP/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 18a5ada3f9810042136e5d2ff6b5a2ef45ed7474 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:45 +0000 Subject: [PATCH 124/170] New translations meta.yml (Italian) --- it-IT/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it-IT/meta.yml b/it-IT/meta.yml index 3623a01..3583df6 100644 --- a/it-IT/meta.yml +++ b/it-IT/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 245883bfc4e40058f6019e2e1ed8ed39d3e3f792 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:46 +0000 Subject: [PATCH 125/170] New translations meta.yml (Sinhala) --- si-LK/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/si-LK/meta.yml b/si-LK/meta.yml index 3623a01..3583df6 100644 --- a/si-LK/meta.yml +++ b/si-LK/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From b1c7e3f5c780ea5df4cb1583ebe302f42150b8ab Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:47 +0000 Subject: [PATCH 126/170] New translations meta.yml (Slovak) --- sk-SK/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sk-SK/meta.yml b/sk-SK/meta.yml index 3623a01..3583df6 100644 --- a/sk-SK/meta.yml +++ b/sk-SK/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 4cbf309f46886d16e2e32ad58b03b5d6ef448951 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:49 +0000 Subject: [PATCH 127/170] New translations meta.yml (Swedish) --- sv-SE/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv-SE/meta.yml b/sv-SE/meta.yml index 3623a01..3583df6 100644 --- a/sv-SE/meta.yml +++ b/sv-SE/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From b7481e2c9927d36fb87fd7b14dcd816bc5f6f9c0 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:51 +0000 Subject: [PATCH 128/170] New translations meta.yml (Vietnamese) --- vi-VN/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vi-VN/meta.yml b/vi-VN/meta.yml index 3623a01..3583df6 100644 --- a/vi-VN/meta.yml +++ b/vi-VN/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From edac4adbf499b37ccba6e70dcbdb5fabb258c465 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:52 +0000 Subject: [PATCH 129/170] New translations meta.yml (Welsh) --- cy-GB/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cy-GB/meta.yml b/cy-GB/meta.yml index 3623a01..3583df6 100644 --- a/cy-GB/meta.yml +++ b/cy-GB/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From b8b67ea22f59fb251fc6532c97c738ecbf31ecf2 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:53 +0000 Subject: [PATCH 130/170] New translations meta.yml (Japanese) --- ja-JP/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ja-JP/meta.yml b/ja-JP/meta.yml index 3623a01..3583df6 100644 --- a/ja-JP/meta.yml +++ b/ja-JP/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From f760578f81779094a2e743058f622a2021d09976 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:54 +0000 Subject: [PATCH 131/170] New translations meta.yml (Indonesian) --- id-ID/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/id-ID/meta.yml b/id-ID/meta.yml index 3623a01..3583df6 100644 --- a/id-ID/meta.yml +++ b/id-ID/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From bbb28da21b53da5f214293d63a2750f6ef894147 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:55 +0000 Subject: [PATCH 132/170] New translations meta.yml (Arabic) --- ar-SA/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ar-SA/meta.yml b/ar-SA/meta.yml index 8a29e5f..ad82fb4 100644 --- a/ar-SA/meta.yml +++ b/ar-SA/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: كتابة نص باستخدام Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 67b965f9feeede4955d5c21707ea7308fde6d2af Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:56 +0000 Subject: [PATCH 133/170] New translations meta.yml (Dutch) --- nl-NL/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nl-NL/meta.yml b/nl-NL/meta.yml index 101d224..af0246e 100644 --- a/nl-NL/meta.yml +++ b/nl-NL/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Tekst schrijven met de Python schildpad original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 29336f0848ae36b80eb8d35ec148b1370c8f0d82 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:58 +0000 Subject: [PATCH 134/170] New translations meta.yml (Bengali) --- bn-BD/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bn-BD/meta.yml b/bn-BD/meta.yml index 3623a01..3583df6 100644 --- a/bn-BD/meta.yml +++ b/bn-BD/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From be7b2cdb506ab3862f6da77a6f7fbbcc90135c3a Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:23:59 +0000 Subject: [PATCH 135/170] New translations meta.yml (Catalan) --- ca-ES/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ca-ES/meta.yml b/ca-ES/meta.yml index 3623a01..3583df6 100644 --- a/ca-ES/meta.yml +++ b/ca-ES/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From b3f80b254cd59091ff334a5dfba4101a0be3ad9d Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:00 +0000 Subject: [PATCH 136/170] New translations meta.yml (Chinese Simplified) --- zh-CN/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-CN/meta.yml b/zh-CN/meta.yml index 3623a01..3583df6 100644 --- a/zh-CN/meta.yml +++ b/zh-CN/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 2a81b27b12cfd49c5bb23efd4ed4381390eebb8b Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:01 +0000 Subject: [PATCH 137/170] New translations meta.yml (Chinese Traditional) --- zh-TW/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-TW/meta.yml b/zh-TW/meta.yml index 3623a01..3583df6 100644 --- a/zh-TW/meta.yml +++ b/zh-TW/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 249dbec12830ca9644d02b43c7bb2012c261b3ee Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:03 +0000 Subject: [PATCH 138/170] New translations meta.yml (Czech) --- cs-CZ/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cs-CZ/meta.yml b/cs-CZ/meta.yml index 3623a01..3583df6 100644 --- a/cs-CZ/meta.yml +++ b/cs-CZ/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From a7d3632a84e2cc37ebc4d7e6522a07eb9ac02cd8 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:04 +0000 Subject: [PATCH 139/170] New translations meta.yml (Danish) --- da-DK/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/da-DK/meta.yml b/da-DK/meta.yml index 3623a01..3583df6 100644 --- a/da-DK/meta.yml +++ b/da-DK/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 58a1e8cee794f32af4549ff5386e651d402c32f2 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:05 +0000 Subject: [PATCH 140/170] New translations meta.yml (English) --- en-US/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en-US/meta.yml b/en-US/meta.yml index 3623a01..3583df6 100644 --- a/en-US/meta.yml +++ b/en-US/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From cd858e05807cc32dd9d78ab5c3ae0bee4bb2b87a Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:06 +0000 Subject: [PATCH 141/170] New translations meta.yml (Igbo) --- ig-NG/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ig-NG/meta.yml b/ig-NG/meta.yml index 3623a01..3583df6 100644 --- a/ig-NG/meta.yml +++ b/ig-NG/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From ed8e967975ebd660520f039c5597e23e28d959c6 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:07 +0000 Subject: [PATCH 142/170] New translations meta.yml (Finnish) --- fi-FI/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fi-FI/meta.yml b/fi-FI/meta.yml index 3623a01..3583df6 100644 --- a/fi-FI/meta.yml +++ b/fi-FI/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From cb8b3f92f82ab5a14e67ed6196938ae3d3155d91 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:08 +0000 Subject: [PATCH 143/170] New translations meta.yml (French) --- fr-FR/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fr-FR/meta.yml b/fr-FR/meta.yml index 3623a01..3583df6 100644 --- a/fr-FR/meta.yml +++ b/fr-FR/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 2aa08ab3e29474a06f918ecfd9cee3a02f1a5f57 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:09 +0000 Subject: [PATCH 144/170] New translations meta.yml (French, Canada) --- fr-CA/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fr-CA/meta.yml b/fr-CA/meta.yml index 3623a01..3583df6 100644 --- a/fr-CA/meta.yml +++ b/fr-CA/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 745f621b6e3242c698d407d1c333b2c2b68fba53 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:11 +0000 Subject: [PATCH 145/170] New translations meta.yml (Hebrew) --- he-IL/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/he-IL/meta.yml b/he-IL/meta.yml index 3623a01..3583df6 100644 --- a/he-IL/meta.yml +++ b/he-IL/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From a014bb4094e63a748e80fbbea6da81f687f6e4d6 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:12 +0000 Subject: [PATCH 146/170] New translations meta.yml (Hindi) --- hi-IN/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hi-IN/meta.yml b/hi-IN/meta.yml index 3623a01..3583df6 100644 --- a/hi-IN/meta.yml +++ b/hi-IN/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From d0832f8d75142d6b2e2a780e91c3147c9959b9d5 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:13 +0000 Subject: [PATCH 147/170] New translations meta.yml (Hungarian) --- hu-HU/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hu-HU/meta.yml b/hu-HU/meta.yml index 3623a01..3583df6 100644 --- a/hu-HU/meta.yml +++ b/hu-HU/meta.yml @@ -4,7 +4,7 @@ hero_image: images/banner.png description: Writing text with Python turtle original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false From 813dba9825d71c2706804f0086fe6e866c9cc84b Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:24:15 +0000 Subject: [PATCH 148/170] New translations meta.yml (Spanish, Latin America) --- es-LA/meta.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/es-LA/meta.yml b/es-LA/meta.yml index 3623a01..ff29743 100644 --- a/es-LA/meta.yml +++ b/es-LA/meta.yml @@ -1,10 +1,10 @@ --- -title: Writing text with Python turtle +title: Escribir texto con la tortuga de Python hero_image: images/banner.png -description: Writing text with Python turtle +description: Escribir texto con la tortuga de Python original_url: theme: cc-prototype -duration: 1 +duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Escribir texto From 38992b8d45fb5fa58bcc177ba7f17fbbe835f3af Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 13 Mar 2020 12:12:39 +0000 Subject: [PATCH 149/170] New translations meta.yml (Turkish) --- tr-TR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tr-TR/meta.yml b/tr-TR/meta.yml index 3583df6..f815177 100644 --- a/tr-TR/meta.yml +++ b/tr-TR/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: Python turtle modülü ile metin yazma hero_image: images/banner.png -description: Writing text with Python turtle +description: Python turtle modülü ile metin yazma original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Metin yazma From c90ac1231dba35d31ce3feb1b55a9ad05cbfd1d1 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 13 Mar 2020 12:12:41 +0000 Subject: [PATCH 150/170] New translations step_1.md (Turkish) --- tr-TR/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tr-TR/step_1.md b/tr-TR/step_1.md index e1ad332..75360a2 100644 --- a/tr-TR/step_1.md +++ b/tr-TR/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Metin yazmak için bir turtle modülünü kullanabilirsiniz. ```python -turtle.write('Hello!') +turtle.write('Merhaba!') ``` -Set the turtle's color to create coloured text: +Renkli metin oluşturmak için turtle modülünün rengini ayarlayın: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('Merhaba!') ``` -You can also change the font and alignment of the text. +Metnin yazı tipini ve hizalamasını da değiştirebilirsiniz. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('Merhaba!', font=style, align='center') ``` -The font is a tuple containing: +Bu yazı tipi aşağıdakileri içeren bir demet(Demetler birden fazla veri türünü bir arada bulundurabilen virgüllerle veya parantez ile gösterilen immutable(değiştirilemeyen) veri tipleridir): -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ 'Arial', 'Courier' veya 'Times New Roman' gibi bir yazı tipi adı ++ Piksel cinsinden yazı tipi boyutu ++ 'Normal', 'kalın' veya 'italik' olabilen yazım türü -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Turtle modülünün konumuna göre metnin nasıl konumlandırıldığını kontrol eden hizalamayı ayarlamak için `align` değişkenini kullanın. `align` değişkeni şu seçeneklerden birine ayarlanabilir: 'left' (sol), 'center' (merkez), 'right' (sağ) -Example: \ No newline at end of file +Örneğin: \ No newline at end of file From ab7f161da47904711cd302fa06a4e2ce73076e33 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Wed, 22 Apr 2020 16:03:20 +0100 Subject: [PATCH 151/170] New translations meta.yml (Chinese Simplified) --- zh-CN/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zh-CN/meta.yml b/zh-CN/meta.yml index 3583df6..f712772 100644 --- a/zh-CN/meta.yml +++ b/zh-CN/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: 使用 Python turtle(海龟)编辑文本 hero_image: images/banner.png -description: Writing text with Python turtle +description: 使用 Python turtle(海龟)编辑文本 original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: 编辑文本 From 1e860f8a3262a5411219eab5451ad135d1ef0672 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Wed, 22 Apr 2020 16:03:21 +0100 Subject: [PATCH 152/170] New translations step_1.md (Chinese Simplified) --- zh-CN/step_1.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/zh-CN/step_1.md b/zh-CN/step_1.md index e1ad332..d76f293 100644 --- a/zh-CN/step_1.md +++ b/zh-CN/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +你可以使用turtle(海龟)来写文本 ```python turtle.write('Hello!') ``` -Set the turtle's color to create coloured text: +设置turtle的颜色,让你的文本内容五彩斑斓 ```python -turtle.color('deep pink') -turtle.write('Hello!') +turtle.color('deep pink')#设置颜色为深粉红色 +turtle.write('Hello!')#输出文字‘Hello!’ ``` -You can also change the font and alignment of the text. +你还可以更改字体以及文本的对齐方式 ```python -style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +style = ('Courier', 30, 'italic')#设置字体格式为style=(‘Courier’字体,字号30, 'italic'斜体) +turtle.write('Hello!', font=style, align='center')#以style的格式输出"Hello!",位置居中 ``` -The font is a tuple containing: +字体是一个元组,包括: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ 字体格式的名称,比如‘Arial’,‘Courier’,或者‘Times New Roman’。 ++ 字体的大小清晰度 ++ 字体的格式类型,包括正常‘normal’,加粗'bold',或者斜体'italic'。 -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +用参数`align` ,去设置文本相对于turtle所在位置的对齐方式。 `align` 可以被设置成: 'left', 'center', 'right',对应分别是‘左’,‘中’,‘右’的选择。 -Example: \ No newline at end of file +示例: \ No newline at end of file From 458cb4ed9b2ffa68fdb290247bc07a307aa6a729 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Wed, 22 Apr 2020 16:03:56 +0100 Subject: [PATCH 153/170] New translations step_1.md (Spanish, Latin America) --- es-LA/step_1.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/es-LA/step_1.md b/es-LA/step_1.md index e1ad332..c430362 100644 --- a/es-LA/step_1.md +++ b/es-LA/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Puedes usar una tortuga para escribir texto. ```python -turtle.write('Hello!') +turtle.write('¡Hola!') ``` -Set the turtle's color to create coloured text: +Establece el color de la tortuga para crear texto en color: ```python -turtle.color('deep pink') -turtle.write('Hello!') +turtle.color('deep pink') # rosa intenso +turtle.write('¡Hola!') ``` -You can also change the font and alignment of the text. +También puedes cambiar la fuente y la alineación del texto. ```python -style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +estilo = ('Courier', 30, 'italic') # fuente, tamaño, cursiva +turtle.write('¡Hola!', font = estilo, align = 'center') # centrado ``` -The font is a tuple containing: +La fuente es una tupla que contiene: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ El nombre de la fuente, como 'Arial', 'Courier' o 'Times New Roman' ++ El tamaño de la fuente en píxeles ++ El tipo de fuente, que puede ser 'normal', 'bold' o 'italic' (normal, negrita o cursiva) -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Para establecer la alineación que controla cómo se posiciona el texto en función de la posición de la tortuga, usa el parámetro `align` (alineación). `align` se puede establecer en una de estas opciones: 'left', 'center', 'right' (izquierda, centro, derecha) -Example: \ No newline at end of file +Ejemplo: \ No newline at end of file From 77d3f9f907a3c9c690abca3933b1835d4b93372a Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:22:21 +0100 Subject: [PATCH 154/170] New translations meta.yml (Chinese Traditional) --- zh-TW/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zh-TW/meta.yml b/zh-TW/meta.yml index 3583df6..7bde92c 100644 --- a/zh-TW/meta.yml +++ b/zh-TW/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: 用Python烏龜寫文字 hero_image: images/banner.png -description: Writing text with Python turtle +description: 用Python烏龜寫文字 original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: 寫文字 From 404ee8bddb39d0daca2fb6f0deddfde275956b6a Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:22:28 +0100 Subject: [PATCH 155/170] New translations step_1.md (Chinese Traditional) --- zh-TW/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/zh-TW/step_1.md b/zh-TW/step_1.md index e1ad332..87366c9 100644 --- a/zh-TW/step_1.md +++ b/zh-TW/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +你可以用烏龜來寫文字。 ```python -turtle.write('Hello!') +turtle.write('你好!') ``` -Set the turtle's color to create coloured text: +設定烏龜的顏色來創造彩色文字: ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('你好!') ``` -You can also change the font and alignment of the text. +您還可以更改文字的字體和對齊方式。 ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('你好!', font=style, align='center') ``` -The font is a tuple containing: +字體是包含以下內容的元組: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ 字體名稱,例如'Arial','Courier'或'Times New Roman' ++ 字體大小,以像素為單位 ++ 字體類型,可以是“正常”,“粗體”或“斜體” -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +根據烏龜的位置設置對齊方式來控制文字的位置,請使用 `align` 參數。 `align` 可以設置為以下選項之一:'left','center', 'right' -Example: \ No newline at end of file +範例: \ No newline at end of file From f75d60ffa67cba6e7193e3f738d25049ad56b8d2 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:22:31 +0100 Subject: [PATCH 156/170] New translations step_1.md (Ukrainian) --- uk-UA/step_1.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/uk-UA/step_1.md b/uk-UA/step_1.md index cb2fecd..8ab100e 100644 --- a/uk-UA/step_1.md +++ b/uk-UA/step_1.md @@ -4,7 +4,7 @@ turtle.write('Привіт!') ``` -Встановіть колір черепахи, щоб створити кольоровий текст: +Задай колір turtle, щоб створити кольоровий текст: ```python turtle.color('deep pink') @@ -18,12 +18,12 @@ style = ('Courier', 30, 'italic') turtle.write('Привіт!', font=style, align='center') ``` -Шрифт являє собою кортеж, що містить: +Шрифт являє собою кортеж (впорядкований скінчений набір елементів), що містить: -+ Назва шрифту, наприклад "Arial", "Courier" або "Times New Roman" ++ Назву шрифту, наприклад, "Arial", "Courier" або "Times New Roman" + Розмір шрифту в пікселях + Тип шрифту, який може бути "normal" (звичайний), "bold" (жирний) або "italic" (курсив) -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` може приймати наступні значення: "left" (ліво), "center" (центр), "right" (право) +Щоб задати вирівнювання, яке контролює розташування тексту відносно положення turtle, використовуйте параметр `align`. `align` може приймати наступні значення: "left" (ліво), "center" (центр), "right" (право). Приклад: \ No newline at end of file From f1be53d7317c06ef67ad5b9e1c11faca01c6b13f Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:22:38 +0100 Subject: [PATCH 157/170] New translations step_1.md (Filipino) --- fil-PH/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fil-PH/step_1.md diff --git a/fil-PH/step_1.md b/fil-PH/step_1.md new file mode 100644 index 0000000..e1ad332 --- /dev/null +++ b/fil-PH/step_1.md @@ -0,0 +1,29 @@ +You can use a turtle to write text. + +```python +turtle.write('Hello!') +``` + +Set the turtle's color to create coloured text: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +You can also change the font and alignment of the text. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +The font is a tuple containing: + ++ The font name such as 'Arial', 'Courier', or 'Times New Roman' ++ The font size in pixels ++ The font type, which can be 'normal', 'bold', or 'italic' + +To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' + +Example: \ No newline at end of file From dd722a9c4123fe0266732ebc5c3728b0216073a7 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:22:39 +0100 Subject: [PATCH 158/170] New translations meta.yml (Spanish, Latin America) --- es-LA/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/es-LA/meta.yml b/es-LA/meta.yml index ff29743..af3304a 100644 --- a/es-LA/meta.yml +++ b/es-LA/meta.yml @@ -1,7 +1,7 @@ --- -title: Escribir texto con la tortuga de Python +title: Escribiendo texto con Python tortuga hero_image: images/banner.png -description: Escribir texto con la tortuga de Python +description: Escribiendo texto con Python tortuga original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Escribir texto + title: Escribiendo texto From 349e859d969e8cae6134a839fb3ce79e4ff6cbcf Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:22:44 +0100 Subject: [PATCH 159/170] New translations meta.yml (Filipino) --- fil-PH/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 fil-PH/meta.yml diff --git a/fil-PH/meta.yml b/fil-PH/meta.yml new file mode 100644 index 0000000..3583df6 --- /dev/null +++ b/fil-PH/meta.yml @@ -0,0 +1,15 @@ +--- +title: Writing text with Python turtle +hero_image: images/banner.png +description: Writing text with Python turtle +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: Writing text From cfd3bb69198a41fce198add70390832e1d8807c1 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:22:49 +0100 Subject: [PATCH 160/170] New translations step_1.md (Hindi) --- hi-IN/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/hi-IN/step_1.md b/hi-IN/step_1.md index e1ad332..00d3c43 100644 --- a/hi-IN/step_1.md +++ b/hi-IN/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +आप पाठ लिखने के लिए तुर्त्ल का उपयोग कर सकते हैं। ```python -turtle.write('Hello!') +तुर्त्ल. लिखो ( 'हैलो!') ``` -Set the turtle's color to create coloured text: +रंगीन पाठ बनाने के लिए कछुए का रंग निर्धारित करें: ```python -turtle.color('deep pink') -turtle.write('Hello!') +तुर्त्ल. रंग('deep pink') +तुर्त्ल. लिखो ( 'हैलो!') ``` -You can also change the font and alignment of the text. +आप पाठ का फ़ॉन्ट और संरेखण भी बदल सकते हैं। ```python style = ('Courier', 30, 'italic') turtle.write('Hello!', font=style, align='center') ``` -The font is a tuple containing: +फ़ॉन्ट एक टपल युक्त है: -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ फ़ॉन्ट का नाम जैसे 'एरियल', 'कूरियर', या 'टाइम्स न्यू रोमन' ++ पिक्सेल में फ़ॉन्ट आकार ++ फ़ॉन्ट प्रकार, जो 'सामान्य', 'बोल्ड' या 'इटैलिक' हो सकता है -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +संरेखण सेट करने के लिए जो नियंत्रित करता है कि तुर्त्ल की स्थिति के आधार पर पाठ कैसे स्थित है, `align` पैरामीटर का उपयोग करें।। `align` संरेखित इनमें से किसी एक विकल्प पर सेट किया जा सकता है: 'लेफ्ट', 'सेंटर', 'राइट' -Example: \ No newline at end of file +उदाहरण: \ No newline at end of file From f2c15af6395ccedfc17fa199786c84ba06c33a96 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:22:50 +0100 Subject: [PATCH 161/170] New translations meta.yml (Hindi) --- hi-IN/meta.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hi-IN/meta.yml b/hi-IN/meta.yml index 3583df6..36cd882 100644 --- a/hi-IN/meta.yml +++ b/hi-IN/meta.yml @@ -1,15 +1,15 @@ --- -title: Writing text with Python turtle +title: पाइथन के साथ टेक्स्ट लिखना hero_image: images/banner.png -description: Writing text with Python turtle +description: पाइथन के साथ टेक्स्ट लिखना original_url: theme: cc-prototype duration: 1 #1, 2 or 3 listed: false ingredient: true copyedit: false -interests: "graphics" -technologies: "python, turtle" +interests: "“graphics\"" +technologies: "“python, turtle\"" steps: - - title: Writing text + title: टेक्स्ट लिखना From b536a0d1d0ce211026cb794b434bfb37b5043f87 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 28 May 2020 12:58:53 +0100 Subject: [PATCH 162/170] New translations step_1.md (Hindi) --- hi-IN/step_1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hi-IN/step_1.md b/hi-IN/step_1.md index 00d3c43..48e03c1 100644 --- a/hi-IN/step_1.md +++ b/hi-IN/step_1.md @@ -1,14 +1,14 @@ आप पाठ लिखने के लिए तुर्त्ल का उपयोग कर सकते हैं। ```python -तुर्त्ल. लिखो ( 'हैलो!') +turtle.write('हैलो!') ``` रंगीन पाठ बनाने के लिए कछुए का रंग निर्धारित करें: ```python -तुर्त्ल. रंग('deep pink') -तुर्त्ल. लिखो ( 'हैलो!') +turtle.color('deep pink') +turtle.write('हैलो!') ``` आप पाठ का फ़ॉन्ट और संरेखण भी बदल सकते हैं। From ebb80e3f1b0965c168070bf390029f3f2c89eecc Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Wed, 22 Jul 2020 16:26:21 +0100 Subject: [PATCH 163/170] New translations meta.yml (Marathi) --- mr-IN/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 mr-IN/meta.yml diff --git a/mr-IN/meta.yml b/mr-IN/meta.yml new file mode 100644 index 0000000..0b87321 --- /dev/null +++ b/mr-IN/meta.yml @@ -0,0 +1,15 @@ +--- +title: Python turtle सह मजकूर लिहिणे +hero_image: images/banner.png +description: Python turtle सह मजकूर लिहिणे +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: मजकूर लिहिणे From 02fbf5220a1557921f6072bae917d04a1480e845 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Wed, 22 Jul 2020 16:26:24 +0100 Subject: [PATCH 164/170] New translations step_1.md (Marathi) --- mr-IN/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 mr-IN/step_1.md diff --git a/mr-IN/step_1.md b/mr-IN/step_1.md new file mode 100644 index 0000000..8bb552b --- /dev/null +++ b/mr-IN/step_1.md @@ -0,0 +1,29 @@ +मजकूर लिहिण्यासाठी तुम्ही turtle चा वापरू शकता. + +```python +turtle.write('Hello!') +``` + +रंगीत मजकूर तयार करण्यासाठी turtle चा रंग सेट करा: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +तुम्ही मजकूराचा font आणि alignment देखील बदलू शकता. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +Font हे एक tuple आहे ज्यामध्ये: + ++ 'Arial', 'Courier', or 'Times New Roman' सारख्या fonts चे नाव ++ Font चा आकार pixels मध्ये ++ Font प्रकार, जो 'normal', 'bold', or 'italic' असू शकतो + +Turtle च्या स्थानाच्या आधारे मजकूर कसे स्थित आहे हे नियंत्रित करणारे alignment सेट करण्यासाठी,`align` मापदंड वापरा. या पर्यायांपैकी एक `align` सेट केले जाऊ शकते: 'left', 'center', 'right' + +उदाहरणः \ No newline at end of file From 74c332a69e504e5d2f9b4e5438ff39072887fa3e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Wed, 22 Jul 2020 16:26:25 +0100 Subject: [PATCH 165/170] New translations meta.yml (Kannada) --- kn-IN/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 kn-IN/meta.yml diff --git a/kn-IN/meta.yml b/kn-IN/meta.yml new file mode 100644 index 0000000..a001575 --- /dev/null +++ b/kn-IN/meta.yml @@ -0,0 +1,15 @@ +--- +title: Python turtle ಪಠ್ಯವನ್ನು ಬರೆಯುವುದು +hero_image: images/banner.png +description: Python tutle ಪಠ್ಯವನ್ನು ಬರೆಯುವುದು +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: false +interests: "graphics" +technologies: "python, turtle" +steps: + - + title: ಪಠ್ಯವನ್ನು ಬರೆಯುವುದು From f5bce37834755594d338af66e5a5fd00246c2bc7 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Wed, 22 Jul 2020 16:26:27 +0100 Subject: [PATCH 166/170] New translations step_1.md (Kannada) --- kn-IN/step_1.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 kn-IN/step_1.md diff --git a/kn-IN/step_1.md b/kn-IN/step_1.md new file mode 100644 index 0000000..4660201 --- /dev/null +++ b/kn-IN/step_1.md @@ -0,0 +1,29 @@ +ಪಠ್ಯವನ್ನು ಬರೆಯಲು ನೀವು turtle ಬಳಸಬಹುದು. + +```python +turtle.write('Hello!') +``` + +ಬಣ್ಣದ ಪಠ್ಯವನ್ನು ರಚಿಸಲು turtle's ಬಣ್ಣವನ್ನು ಹೊಂದಿಸಿ: + +```python +turtle.color('deep pink') +turtle.write('Hello!') +``` + +ನೀವು ಪಠ್ಯದ ಫಾಂಟ್ ಮತ್ತು ಜೋಡಣೆಯನ್ನು ಸಹ ಬದಲಾಯಿಸಬಹುದು. + +```python +style = ('Courier', 30, 'italic') +turtle.write('Hello!', font=style, align='center') +``` + +ಫಾಂಟ್ ಒಳಗೊಂಡಿರುವ tuple ಆಗಿದೆ: + ++ 'Arial', 'Courier', or 'Times New Roman' ನಂತಹ ಫಾಂಟ್ ಹೆಸರು ++ ಫಾಂಟ್ ಗಾತ್ರ ಪಿಕ್ಸೆಲ್‌ಗಳಲ್ಲಿ ++ ಫಾಂಟ್ ಪ್ರಕಾರ, 'normal', 'bold', or 'italic' ಅದುಆಗಿರಬಹುದು + +Turtle ಸ್ಥಾನವನ್ನು ಆಧರಿಸಿ ಪಠ್ಯವನ್ನು ಹೇಗೆ ಇರಿಸಲಾಗಿದೆ ಎಂಬುದನ್ನು ನಿಯಂತ್ರಿಸುವ ಜೋಡಣೆಯನ್ನು ಹೊಂದಿಸಲು, `align` ನಿಯತಾಂಕವನ್ನು ಬಳಸಿ. `align` ಅನ್ನು ಈ ಆಯ್ಕೆಗಳಲ್ಲಿ ಒಂದಕ್ಕೆ ಹೊಂದಿಸಬಹುದು: 'left', 'center', 'right' + +ಉದಾಹರಣೆ: \ No newline at end of file From e8c88d6bb86365063496f35c1a5e214f237dd474 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Tue, 6 Oct 2020 10:52:08 +0100 Subject: [PATCH 167/170] New translations step_1.md (French) --- fr-FR/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/fr-FR/step_1.md b/fr-FR/step_1.md index e1ad332..40d50a6 100644 --- a/fr-FR/step_1.md +++ b/fr-FR/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +Tu peux utiliser une tortue pour écrire du texte. ```python -turtle.write('Hello!') +turtle.write('Bonjour !') ``` -Set the turtle's color to create coloured text: +Définis la couleur de la tortue pour créer un texte coloré : ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('Bonjour !') ``` -You can also change the font and alignment of the text. +Tu peux également modifier la police et l'alignement du texte. ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('Bonjour !', font=style, align='center') ``` -The font is a tuple containing: +La police est un tuple contenant : -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ Le nom de la police tel que « Arial », « Courier » ou « Times New Roman » ++ La taille de la police en pixels ++ Le type de police, qui peut être « normal », « gras » ou « italique » -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +Pour définir l'alignement qui contrôle le positionnement du texte en fonction de la position de la tortue, utilise le paramètre `align`. `align` peut être défini sur l'une de ces options : 'left', 'center', 'right' -Example: \ No newline at end of file +Exemple : \ No newline at end of file From a13f59da56fe6cc87f99d9af24a6c66af40f66cf Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Tue, 6 Oct 2020 10:52:09 +0100 Subject: [PATCH 168/170] New translations meta.yml (French) --- fr-FR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fr-FR/meta.yml b/fr-FR/meta.yml index 3583df6..4a4f498 100644 --- a/fr-FR/meta.yml +++ b/fr-FR/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: Écrire du texte avec Python Turtle hero_image: images/banner.png -description: Writing text with Python turtle +description: Écrire du texte avec Python Turtle original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: Écrire du texte From 831749112472648aa28aca2b7a81a35e58e8bd3f Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 3 Dec 2020 10:57:33 +0000 Subject: [PATCH 169/170] New translations meta.yml (Japanese) --- ja-JP/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ja-JP/meta.yml b/ja-JP/meta.yml index 3583df6..7617de1 100644 --- a/ja-JP/meta.yml +++ b/ja-JP/meta.yml @@ -1,7 +1,7 @@ --- -title: Writing text with Python turtle +title: Pythonのturtleでテキストを書く hero_image: images/banner.png -description: Writing text with Python turtle +description: Pythonのタートル(かめ)でテキストを書く original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "graphics" technologies: "python, turtle" steps: - - title: Writing text + title: テキストを書く From cc659f6d69f28b7c1cde8a6e0a3e7f5f32f49762 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 3 Dec 2020 10:57:35 +0000 Subject: [PATCH 170/170] New translations step_1.md (Japanese) --- ja-JP/step_1.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/ja-JP/step_1.md b/ja-JP/step_1.md index e1ad332..d027318 100644 --- a/ja-JP/step_1.md +++ b/ja-JP/step_1.md @@ -1,29 +1,29 @@ -You can use a turtle to write text. +turtle(タートル)を使ってテキストを書くことができます。 ```python -turtle.write('Hello!') +turtle.write('こんにちは!') ``` -Set the turtle's color to create coloured text: +タートル(かめ)の色を設定して、色付きのテキストを作成します。 ```python turtle.color('deep pink') -turtle.write('Hello!') +turtle.write('こんにちは!') ``` -You can also change the font and alignment of the text. +テキストのフォントと配置を変更することもできます。 ```python style = ('Courier', 30, 'italic') -turtle.write('Hello!', font=style, align='center') +turtle.write('こんにちは!', font=style, align='center') ``` -The font is a tuple containing: +フォントは以下を含むタプルです。 -+ The font name such as 'Arial', 'Courier', or 'Times New Roman' -+ The font size in pixels -+ The font type, which can be 'normal', 'bold', or 'italic' ++ 'Arial'、 'C​​ourier'、 'Times New Roman'などのフォント名 ++ ピクセル単位のフォントサイズ ++ 'normal'(通常)、 'bold'(太字)、または 'italic'(斜体)のフォントタイプ -To set the alignment which controls how the text is positioned based on the position of the turtle, use the `align` parameter. `align` can be set to one of these options: 'left', 'center', 'right' +タートルの位置を基に、テキストをどう配置するかを決めるには、 `align` パラメータを使います。 `align` は、 'left'(左)、 'center'(中央)、 'right'(右)のいずれかを設定できます。 -Example: \ No newline at end of file +例: \ No newline at end of file