Skip to content

Commit

Permalink
Add missing parameter in tilemap sentences
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreSi committed Sep 16, 2024
1 parent 5172201 commit 3dc78c6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Extensions/TileMap/JsExtension.js
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
'TileIdAtPosition',
_('Tile (at position)'),
_('the id of the tile at the scene coordinates'),
_('the tile id at scene coordinates _PARAM3_ ; _PARAM4_'),
_('the tile id at scene coordinates _PARAM3_ ; _PARAM4_ of _PARAM0_'),
'',
'JsPlatform/Extensions/tile_map.svg'
)
Expand All @@ -847,7 +847,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
_('Flip tile vertically (at position)'),
_('Flip tile vertically at scene coordinates.'),
_(
'Flip tile vertically at scene coordinates _PARAM1_ ; _PARAM2_: _PARAM3_'
'Flip tile vertically at scene coordinates _PARAM1_ ; _PARAM2_: _PARAM3_ of _PARAM0_'
),
_('Effects'),
'res/actions/flipY24.png',
Expand All @@ -866,7 +866,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
_('Flip tile horizontally (at position)'),
_('Flip tile horizontally at scene coordinates.'),
_(
'Flip tile horizontally at scene coordinates _PARAM1_ ; _PARAM2_: _PARAM3_'
'Flip tile horizontally at scene coordinates _PARAM1_ ; _PARAM2_: _PARAM3_ of _PARAM0_'
),
_('Effects'),
'res/actions/flipX24.png',
Expand Down Expand Up @@ -918,7 +918,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
_('Flip tile vertically (on the grid)'),
_('Flip tile vertically at grid coordinates.'),
_(
'Flip tile vertically at grid coordinates _PARAM1_ ; _PARAM2_: _PARAM3_'
'Flip tile vertically at grid coordinates _PARAM1_ ; _PARAM2_: _PARAM3_ of _PARAM0_'
),
_('Effects'),
'res/actions/flipY24.png',
Expand All @@ -937,7 +937,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
_('Flip tile horizontally (on the grid)'),
_('Flip tile horizontally at grid coordinates.'),
_(
'Flip tile horizontally at grid coordinates _PARAM1_ ; _PARAM2_: _PARAM3_'
'Flip tile horizontally at grid coordinates _PARAM1_ ; _PARAM2_: _PARAM3_ of _PARAM0_'
),
_('Effects'),
'res/actions/flipX24.png',
Expand All @@ -955,7 +955,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
'RemoveTileAtGridCoordinates',
_('Remove tile (on the grid)'),
_('Remove the tile at the grid coordinates.'),
_('Remove tile at grid coordinates _PARAM1_ ; _PARAM2_'),
_('Remove tile at grid coordinates _PARAM1_ ; _PARAM2_ of _PARAM0_'),
'',
'JsPlatform/Extensions/tile_map.svg',
'JsPlatform/Extensions/tile_map.svg'
Expand All @@ -972,7 +972,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
_('Tile flipped horizontally (at position)'),
_('Check if tile at scene coordinates is flipped horizontally.'),
_(
'The tile at scene coordinates _PARAM1_ ; _PARAM2_ is flipped horizontally'
'The tile at scene coordinates _PARAM1_ ; _PARAM2_ of _PARAM0_ is flipped horizontally'
),
_('Effects'),
'res/actions/flipX24.png',
Expand All @@ -990,7 +990,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
_('Tile flipped vertically (at position)'),
_('Check if tile at scene coordinates is flipped vertically.'),
_(
'The tile at scene coordinates _PARAM1_ ; _PARAM2_ is flipped vertically'
'The tile at scene coordinates _PARAM1_ ; _PARAM2_ of _PARAM0_ is flipped vertically'
),
_('Effects'),
'res/actions/flipY24.png',
Expand All @@ -1008,7 +1008,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
_('Tile flipped horizontally (on the grid)'),
_('Check if tile at grid coordinates is flipped horizontally.'),
_(
'The tile at grid coordinates _PARAM1_ ; _PARAM2_ is flipped horizontally'
'The tile at grid coordinates _PARAM1_ ; _PARAM2_ of _PARAM0_ is flipped horizontally'
),
_('Effects'),
'res/actions/flipX24.png',
Expand All @@ -1026,7 +1026,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
_('Tile flipped vertically (on the grid)'),
_('Check if tile at grid coordinates is flipped vertically.'),
_(
'The tile at grid coordinates _PARAM1_ ; _PARAM2_ is flipped vertically'
'The tile at grid coordinates _PARAM1_ ; _PARAM2_ of _PARAM0_ is flipped vertically'
),
_('Effects'),
'res/actions/flipY24.png',
Expand Down

0 comments on commit 3dc78c6

Please sign in to comment.