Skip to content

Commit

Permalink
Fix sentences
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreSi committed Sep 17, 2024
1 parent 3dc78c6 commit acde423
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Extensions/TileMap/JsExtension.js
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
.addExpression(
'TilesetColumnCount',
_('Tileset column count'),
_('Get the number of column in the tileset.'),
_('Get the number of columns in the tileset.'),
'',
'JsPlatform/Extensions/tile_map.svg'
)
Expand All @@ -761,7 +761,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
.addExpression(
'TilesetRowCount',
_('Tileset row count'),
_('Get the number of row in the tileset.'),
_('Get the number of rows in the tileset.'),
'',
'JsPlatform/Extensions/tile_map.svg'
)
Expand Down 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_ of _PARAM0_'),
_('the tile id in _PARAM0_ at scene coordinates _PARAM3_ ; _PARAM4_'),
'',
'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_ of _PARAM0_'
'Flip tile vertically in _PARAM0_ at scene coordinates _PARAM1_ ; _PARAM2_: _PARAM3_'
),
_('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_ of _PARAM0_'
'Flip tile horizontally in _PARAM0_ at scene coordinates _PARAM1_ ; _PARAM2_: _PARAM3_'
),
_('Effects'),
'res/actions/flipX24.png',
Expand All @@ -884,7 +884,7 @@ const defineSimpleTileMap = function (extension, _, gd) {
'RemoveTileAtPosition',
_('Remove tile (at position)'),
_('Remove the tile at the scene coordinates.'),
_('Remove tile at scene coordinates _PARAM1_ ; _PARAM2_'),
_('Remove tile in _PARAM0_ at scene coordinates _PARAM1_ ; _PARAM2_'),
'',
'JsPlatform/Extensions/tile_map.svg',
'JsPlatform/Extensions/tile_map.svg'
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_ of _PARAM0_'
'Flip tile vertically in _PARAM0_ at grid coordinates _PARAM1_ ; _PARAM2_: _PARAM3_'
),
_('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_ of _PARAM0_'
'Flip tile horizontally in _PARAM0_ at grid coordinates _PARAM1_ ; _PARAM2_: _PARAM3_'
),
_('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_ of _PARAM0_'),
_('Remove tile in _PARAM0_ at grid coordinates _PARAM1_ ; _PARAM2_'),
'',
'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_ of _PARAM0_ is flipped horizontally'
'The tile in _PARAM0_ at scene coordinates _PARAM1_ ; _PARAM2_ 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_ of _PARAM0_ is flipped vertically'
'The tile in _PARAM0_ at scene coordinates _PARAM1_ ; _PARAM2_ 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_ of _PARAM0_ is flipped horizontally'
'The tile in _PARAM0_ at grid coordinates _PARAM1_ ; _PARAM2_ 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_ of _PARAM0_ is flipped vertically'
'The tile in _PARAM0_ at grid coordinates _PARAM1_ ; _PARAM2_ is flipped vertically'
),
_('Effects'),
'res/actions/flipY24.png',
Expand Down

0 comments on commit acde423

Please sign in to comment.