Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
homedecor_modpack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
homedecor_modpack
Compare revisions
3aa0951941929707c280c66d9c600eded3bbbf63 to f41f09c0050ced284f04cf40083ee42d5ee6a333
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Illuna-Minetest/homedecor_modpack
Select target project
No results found
f41f09c0050ced284f04cf40083ee42d5ee6a333
Select Git revision
Branches
master
Swap
Target
Illuna-Minetest/homedecor_modpack
Select target project
Illuna-Minetest/homedecor_modpack
1 result
3aa0951941929707c280c66d9c600eded3bbbf63
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
homedecor_i18n/locale/template.pot
+630
-608
630 additions, 608 deletions
homedecor_i18n/locale/template.pot
homedecor_i18n/tools/updatepo.sh
+2
-0
2 additions, 0 deletions
homedecor_i18n/tools/updatepo.sh
lrfurn/init.lua
+3
-3
3 additions, 3 deletions
lrfurn/init.lua
with
635 additions
and
611 deletions
homedecor_i18n/locale/template.pot
View file @
f41f09c0
This diff is collapsed.
Click to expand it.
homedecor_i18n/tools/updatepo.sh
View file @
f41f09c0
...
...
@@ -7,6 +7,8 @@ cd "$(dirname "${BASH_SOURCE[0]}")/..";
# Extract translatable strings.
xgettext
--from-code
=
UTF-8
\
--language
=
Lua
\
--sort-by-file
\
--keyword
=
S
\
--keyword
=
NS:1,2
\
--keyword
=
N_
\
...
...
This diff is collapsed.
Click to expand it.
lrfurn/init.lua
View file @
f41f09c0
...
...
@@ -38,9 +38,9 @@ function lrfurn.check_right(pos, fdir, long, placer)
return
false
elseif
minetest
.
is_protected
(
pos2
,
placer
:
get_player_name
())
then
if
not
long
then
minetest
.
chat_send_player
(
placer
:
get_player_name
(),
"Someone else owns the spot where other end goes!"
)
minetest
.
chat_send_player
(
placer
:
get_player_name
(),
S
(
"Someone else owns the spot where other end goes!"
)
)
else
minetest
.
chat_send_player
(
placer
:
get_player_name
(),
"Someone else owns the spot where the middle or far end goes!"
)
minetest
.
chat_send_player
(
placer
:
get_player_name
(),
S
(
"Someone else owns the spot where the middle or far end goes!"
)
)
end
return
false
end
...
...
@@ -50,7 +50,7 @@ function lrfurn.check_right(pos, fdir, long, placer)
if
node3
and
node3
.
name
~=
"air"
then
return
false
elseif
minetest
.
is_protected
(
pos3
,
placer
:
get_player_name
())
then
minetest
.
chat_send_player
(
placer
:
get_player_name
(),
"Someone else owns the spot where the other end goes!"
)
minetest
.
chat_send_player
(
placer
:
get_player_name
(),
S
(
"Someone else owns the spot where the other end goes!"
)
)
return
false
end
end
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
Next