-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
classref_database.pot
161 lines (135 loc) · 4.35 KB
/
classref_database.pot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Translations template for Learn GDScript From Zero.
# Copyright (C) 2024 GDQuest
# This file is distributed under the same license as the Learn GDScript From
# Zero project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Learn GDScript From Zero \n"
"Report-Msgid-Bugs-To: https://github.com/GDQuest/learn-gdscript\n"
"POT-Creation-Date: 2024-12-12 14:39+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.1\n"
#. Reference: show
#: ./course/documentation.csv:2
msgid "shows the current scene"
msgstr ""
#. Reference: hide
#: ./course/documentation.csv:3
msgid "hides the current scene"
msgstr ""
#. Reference: rotate
#: ./course/documentation.csv:4
msgid ""
"Applies a rotation to the node, in radians, starting from its current "
"rotation."
msgstr ""
#. Reference: move_forward
#: ./course/documentation.csv:5
msgid "Moves the turtle in the direction it's facing by some pixels."
msgstr ""
#. Reference: turn_right
#: ./course/documentation.csv:6
msgid "Rotates the turtle to the right by some degrees."
msgstr ""
#. Reference: turn_left
#: ./course/documentation.csv:7
msgid "Rotates the turtle to the left by some degrees."
msgstr ""
#. Reference: jump
#: ./course/documentation.csv:8
msgid "Offsets the turtle's position by the given x and y amounts of pixels."
msgstr ""
#. Reference: draw_rectangle
#: ./course/documentation.csv:9
msgid "Makes the turtle draw a rectangle starting at its current position."
msgstr ""
#. Reference: position.x
#: ./course/documentation.csv:10
msgid "The position of the entity on the horizontal axis."
msgstr ""
#. Reference: position.y
#: ./course/documentation.csv:11
msgid "The position of the entity on the vertical axis."
msgstr ""
#. Reference: move_local_x
#: ./course/documentation.csv:12
msgid ""
"Applies a local translation on the node's X axis based on the "
"[code]Node._process[/code]'s [code]delta[/code]. If [code]scaled[/code] "
"is false, normalizes the movement."
msgstr ""
#. Reference: board_size
#: ./course/documentation.csv:13
msgid ""
"Stores how many cells make up the width ([code]board_size.x[/code]) and "
"height ([code]board_size.y[/code]) of the board."
msgstr ""
#. Reference: cell
#: ./course/documentation.csv:14
msgid ""
"The cell position of the robot on the board. [code]Vector2(0, 0)[/code] "
"is the square cell in the top left of the board."
msgstr ""
#. Reference: range
#: ./course/documentation.csv:15
msgid "Creates a list of numbers from [code]0[/code] to [code]length - 1[/code]."
msgstr ""
#. Reference: play_animation
#: ./course/documentation.csv:16
msgid "Orders the robot to play an animation."
msgstr ""
#. Reference: select_units
#: ./course/documentation.csv:17
msgid "Selects units in the cell coordinates passed as the function's argument."
msgstr ""
#. Reference: robot.move_to
#: ./course/documentation.csv:18
msgid "Queues a move animation towards the target cell."
msgstr ""
#. Reference: array.append
#: ./course/documentation.csv:19
msgid "Adds the value passed as an argument at the back of the array."
msgstr ""
#. Reference: array.pop_front
#: ./course/documentation.csv:20
msgid "Removes the first value from the array and returns it."
msgstr ""
#. Reference: array.pop_back
#: ./course/documentation.csv:21
msgid "Removes the last value from the array and returns it."
msgstr ""
#. Reference: str
#: ./course/documentation.csv:22
msgid ""
"Returns the argument converted into a [code]String[/code]. Works with the"
" majority of value types."
msgstr ""
#. Reference: int
#: ./course/documentation.csv:23
msgid ""
"Returns the argument converted into an [code]int[/code] (whole number) "
"[i]if possible[/i]. Supports converting decimal numbers, strings, and "
"booleans. Useful to convert player text input into numbers."
msgstr ""
#. Reference: place_unit
#: ./course/documentation.csv:24
msgid ""
"Creates a new unit matching the type parameter and places it at the "
"desired cell position on the game grid."
msgstr ""
#. Reference: display_item
#: ./course/documentation.csv:25
msgid "Creates a new item and displays it in the inventory."
msgstr ""
#. Reference: add_item
#: ./course/documentation.csv:26
msgid "Increases the item count by amount."
msgstr ""