[compassgps] Add Git commit & patch info:
Commit: https://github.com/Kilarin/compassgps/tree/96892a0 Patch: https://github.com/AntumDeluge/mtmod-compassgps/tree/888ec15
This commit is contained in:
parent
bf592bc3ab
commit
0f9e6827d4
@ -87,7 +87,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
|||||||
* storage/
|
* storage/
|
||||||
* [more_chests][] ([GPL][lic.gpl2.0]) -- version [c597779 Git][ver.more_chests] *2017-02-27*
|
* [more_chests][] ([GPL][lic.gpl2.0]) -- version [c597779 Git][ver.more_chests] *2017-02-27*
|
||||||
* tools/
|
* tools/
|
||||||
* [compassgps][] ([WTFPL][lic.wtfpl] / [CC0][lic.cc0] / [CC BY-SA][lic.ccbysa])
|
* [compassgps][] ([WTFPL][lic.wtfpl] / [CC0][lic.cc0] / [CC BY-SA][lic.ccbysa]) -- version: [96892a0 Git][ver.compassgps] *2015-07-31* ([patched][patch.compassgps])
|
||||||
* [tools_obsidian][] ([LGPL / CC BY-SA][lic.tools_obsidian]) -- version: [f77fd79][ver.tools_obsidian] *2016-03-19*
|
* [tools_obsidian][] ([LGPL / CC BY-SA][lic.tools_obsidian]) -- version: [f77fd79][ver.tools_obsidian] *2016-03-19*
|
||||||
* [torches][] ([LGPL / CC-BY-SA](mods/tools/torches/README.txt))
|
* [torches][] ([LGPL / CC-BY-SA](mods/tools/torches/README.txt))
|
||||||
* [workbench][] ([GPL / WTFPL](mods/tools/workbench/LICENSE))
|
* [workbench][] ([GPL / WTFPL](mods/tools/workbench/LICENSE))
|
||||||
@ -403,6 +403,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
|||||||
[ver.christmas]: https://github.com/TheZenKitteh/minetest-christmas/tree/d3bd872
|
[ver.christmas]: https://github.com/TheZenKitteh/minetest-christmas/tree/d3bd872
|
||||||
[ver.cme]: https://github.com/BlockMen/cme/tree/e3502a1
|
[ver.cme]: https://github.com/BlockMen/cme/tree/e3502a1
|
||||||
[ver.coloredwood]: https://github.com/minetest-mods/coloredwood/tree/fc4ab15
|
[ver.coloredwood]: https://github.com/minetest-mods/coloredwood/tree/fc4ab15
|
||||||
|
[ver.compassgps]: https://github.com/Kilarin/compassgps/tree/96892a0
|
||||||
[ver.craft_guide]: https://github.com/cornernote/minetest-craft_guide/tree/20520b5
|
[ver.craft_guide]: https://github.com/cornernote/minetest-craft_guide/tree/20520b5
|
||||||
[ver.craftguide]: https://github.com/minetest-mods/craftguide/tree/86a96c3
|
[ver.craftguide]: https://github.com/minetest-mods/craftguide/tree/86a96c3
|
||||||
[ver.creeper]: https://github.com/Rui-Minetest/creeper/tree/036666e
|
[ver.creeper]: https://github.com/Rui-Minetest/creeper/tree/036666e
|
||||||
@ -458,6 +459,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
|
|||||||
[patch.campfire]: https://github.com/AntumDeluge/mtmod-campfire/tree/67b9dd7
|
[patch.campfire]: https://github.com/AntumDeluge/mtmod-campfire/tree/67b9dd7
|
||||||
[patch.christmas]: https://github.com/AntumDeluge/mtmod-christmas/tree/f6c8dc2
|
[patch.christmas]: https://github.com/AntumDeluge/mtmod-christmas/tree/f6c8dc2
|
||||||
[patch.coloredwood]: https://github.com/AntumDeluge/mtmod-coloredwood/tree/ed6c46f
|
[patch.coloredwood]: https://github.com/AntumDeluge/mtmod-coloredwood/tree/ed6c46f
|
||||||
|
[patch.compassgps]: https://github.com/AntumDeluge/mtmod-compassgps/tree/888ec15
|
||||||
[patch.craftguide]: https://github.com/AntumDeluge/mtmod-craftguide/tree/89db504
|
[patch.craftguide]: https://github.com/AntumDeluge/mtmod-craftguide/tree/89db504
|
||||||
[patch.crops]: https://github.com/AntumDeluge/mtmod-crops/tree/b79cf07
|
[patch.crops]: https://github.com/AntumDeluge/mtmod-crops/tree/b79cf07
|
||||||
[patch.currency]: https://github.com/AntumDeluge/mtmod-currency/tree/7b0e29f
|
[patch.currency]: https://github.com/AntumDeluge/mtmod-currency/tree/7b0e29f
|
||||||
|
@ -72,6 +72,13 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'compassgps:cgpsmap',
|
||||||
|
recipe = {
|
||||||
|
{'compassgps:cgpsmap_marked'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("compassgps:cgpsmap", {
|
minetest.register_craftitem("compassgps:cgpsmap", {
|
||||||
description = S("CompassGPS Map (blank)"),
|
description = S("CompassGPS Map (blank)"),
|
||||||
inventory_image = "cgpsmap-blank.png",
|
inventory_image = "cgpsmap-blank.png",
|
||||||
@ -340,12 +347,4 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|||||||
player:set_wielded_item(selected_cgpsmap[playername]) --new name is saved in marked cpgsmap
|
player:set_wielded_item(selected_cgpsmap[playername]) --new name is saved in marked cpgsmap
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end)
|
||||||
)
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = 'compassgps:cgpsmap',
|
|
||||||
recipe = {
|
|
||||||
{'compassgps:cgpsmap_marked'},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
default
|
default
|
||||||
intllib?
|
intllib?
|
||||||
craft_guide?
|
craft_guide?
|
||||||
|
@ -1,63 +0,0 @@
|
|||||||
bkmrkidx\=nil = bkmrkidx\=nil
|
|
||||||
playername\=%s = playername\=%s
|
|
||||||
playername\=nil = playername\=nil
|
|
||||||
%s's map = Karte von %s
|
|
||||||
A bookmark with the name '%s' can't be created. = Ein weiterer Wegpunkt mit dem Namen '%s' kann nicht erstellt werden.
|
|
||||||
Admin = Administrator
|
|
||||||
Bookmark '%s' added at %s type\=%s = Wegpunkt '%s' wurde bei %s vom Typ %s erstellt.
|
|
||||||
Change hud: = Ändere HUD:
|
|
||||||
Color: = Farbe:
|
|
||||||
Dist: = Entfernung:
|
|
||||||
Compass Type: = Kompasstyp:
|
|
||||||
Give the bookmark a name. = Geben Sie dem Wegpunkt einen Namen
|
|
||||||
Lets the compassgps point to the bookmark = Lässt den Kompass auf den Wegpunkt zeigen.
|
|
||||||
No = Nein
|
|
||||||
No bookmark was specified. = Kein Wegpunkt wurde angegegeben.
|
|
||||||
Pointing at %s. = Zeige auf %s.
|
|
||||||
Pointing at default location. = Zeige auf die Standardposition.
|
|
||||||
Private = Privat
|
|
||||||
Remove bookmark: = Entferne Wegpunkt:
|
|
||||||
Removes the bookmark specified by <bookmark_name> = Entfernt den Wegpunkt der mit <bookmark_name> angegeben ist.
|
|
||||||
Settings = Einstellungen
|
|
||||||
Shared = Geteilt
|
|
||||||
Show: = Zeige:
|
|
||||||
Sort by: = Sortiere nach:
|
|
||||||
Teleporting to %s = Teleportiere zu %s
|
|
||||||
The bookmark = Der Wegpunkt
|
|
||||||
The maximum number of shared bookmarks any user can create is %d. = Jeder Nutzer kann nur %d geteilte Wegpunkte erstellen.
|
|
||||||
Yes = Ja
|
|
||||||
You already have a bookmark with that name. = Sie haben bereits einen Wegpunkt mit diesem Namen.
|
|
||||||
You have no bookmark with this name. = Sie haben keinen Wegpunkt mit diesem Namen.
|
|
||||||
bookmark = Wegpunkt
|
|
||||||
compassgps reading bookmarks = compassgps liest die Wegpunkte.
|
|
||||||
compassgps reading settings = compassgps liest die Einstellungen.
|
|
||||||
compassgps = Kompass
|
|
||||||
compassgps teleporting player %s to %s = compassgps teleportiert Spieler %s nach %s.
|
|
||||||
compassgps writing settings = compassgps schreibt die Einstellungen.
|
|
||||||
compassgps.%s invalid bkrmkidx = compassgps.%s ungültige bkmrkidx.
|
|
||||||
compassgps.%s invalid bookmark playername\=%s bkmrkid\=%s = compassgps.%s ungültiger Wegpunkt Spielername\=%s bkmrkidx\=%s.
|
|
||||||
compassgps.%s player not found = compassgps.%s Spieler nicht gefunden.
|
|
||||||
compassgps: hud color not valid hex number = compassgps: HUD Farbe ist keine zulässige Hexadezimalzahl.
|
|
||||||
compassgps: hud coords are not numeric. Change to between 0 and 1 = compassgps: HUD Koordinaten sind keine Zahlen. Ändern sie diese zu Werten zwischen 0 und 1.
|
|
||||||
compassgps: hud coords out of range, hud will not be displayed. Change to between 0 and 1 to restore = compassgps: HUD Koordinaten sind außerhalb des zulässigen Bereichs. Ändern sie diese zu Werten zwischen 0 und 1 um das HUD wiederherzustellen.
|
|
||||||
compassgps:%s invalid bookmark = compassgps.%s ungültiger Wegpunkt
|
|
||||||
create admin = Erstelle Administratorwegpunkt
|
|
||||||
create bookmark = Erstelle Wegpunkt
|
|
||||||
create shared = Erstelle geteilten Wegpunkt
|
|
||||||
current position : = Momentane Position :
|
|
||||||
distance = Entfernung
|
|
||||||
find selected bookmark = Finde den ausgewählten Wegpunkt
|
|
||||||
list_bookmarks: Lists all bookmarks of a player = list_bookmarks: Zeigt alle Wegpunkte eines Spielers.
|
|
||||||
name = Name
|
|
||||||
remove bookmark = Entferne den Wegpunkt
|
|
||||||
remove bookmark playername\=%s bkmrkidx\=%s = Entferne den Wegpunkt Spielername\=%s bkmrkidx\=%s
|
|
||||||
removed %s = %s entfernt.
|
|
||||||
set_bookmark: Sets a location bookmark for the player = set_bookmark: Setzt einen Wegpunkt für den Spieler.
|
|
||||||
teleport to bookmark = Teleportiere zu dem Wegpunkt.
|
|
||||||
you can not remove someone elses bookmark: = Sie können den Wegpunkt eines anderen Spielers nicht entfernen:
|
|
||||||
CompassGPS Map (blank) = CompassGPS Karte (leer)
|
|
||||||
CompassGPS Map (marked) = CompassGPS Karte (markiert)
|
|
||||||
Write to cgpsmap = Schreibe auf die Karte
|
|
||||||
copy bookmark to your compassgps = Kopiere den Wegpunkt in ihren Kompass.
|
|
||||||
bookmark name: = Name des Wegpunkts:
|
|
||||||
bookmark pos: = Position des Wegpunkts:
|
|
@ -1,63 +0,0 @@
|
|||||||
bkmrkidx\=nil =
|
|
||||||
playername\=%s =
|
|
||||||
playername\=nil =
|
|
||||||
%s's map =
|
|
||||||
A bookmark with the name '%s' can't be created. =
|
|
||||||
Admin =
|
|
||||||
Bookmark '%s' added at %s type\=%s =
|
|
||||||
Change hud: =
|
|
||||||
Color: =
|
|
||||||
Dist: =
|
|
||||||
Compass Type: =
|
|
||||||
Give the bookmark a name. =
|
|
||||||
Lets the compassgps point to the bookmark =
|
|
||||||
No =
|
|
||||||
No bookmark was specified. =
|
|
||||||
Pointing at %s. =
|
|
||||||
Pointing at default location. =
|
|
||||||
Private =
|
|
||||||
Remove bookmark: =
|
|
||||||
Removes the bookmark specified by <bookmark_name> =
|
|
||||||
Settings =
|
|
||||||
Shared =
|
|
||||||
Show: =
|
|
||||||
Sort by: =
|
|
||||||
Teleporting to %s =
|
|
||||||
The bookmark =
|
|
||||||
The maximum number of shared bookmarks any user can create is %d. =
|
|
||||||
Yes =
|
|
||||||
You already have a bookmark with that name. =
|
|
||||||
You have no bookmark with this name. =
|
|
||||||
bookmark =
|
|
||||||
compassgps reading bookmarks =
|
|
||||||
compassgps reading settings =
|
|
||||||
compassgps =
|
|
||||||
compassgps teleporting player %s to %s =
|
|
||||||
compassgps writing settings =
|
|
||||||
compassgps.%s invalid bkrmkidx =
|
|
||||||
compassgps.%s invalid bookmark playername\=%s bkmrkid\=%s =
|
|
||||||
compassgps.%s player not found =
|
|
||||||
compassgps: hud color not valid hex number =
|
|
||||||
compassgps: hud coords are not numeric. Change to between 0 and 1 =
|
|
||||||
compassgps: hud coords out of range, hud will not be displayed. Change to between 0 and 1 to restore =
|
|
||||||
compassgps:%s invalid bookmark =
|
|
||||||
create admin =
|
|
||||||
create bookmark =
|
|
||||||
create shared =
|
|
||||||
current position : =
|
|
||||||
distance =
|
|
||||||
find selected bookmark =
|
|
||||||
list_bookmarks: Lists all bookmarks of a player =
|
|
||||||
name =
|
|
||||||
remove bookmark =
|
|
||||||
remove bookmark playername\=%s bkmrkidx\=%s =
|
|
||||||
removed %s =
|
|
||||||
set_bookmark: Sets a location bookmark for the player =
|
|
||||||
teleport to bookmark =
|
|
||||||
you can not remove someone elses bookmark: =
|
|
||||||
CompassGPS Map (blank) =
|
|
||||||
CompassGPS Map (marked) =
|
|
||||||
Write to cgpsmap =
|
|
||||||
copy bookmark to your compassgps =
|
|
||||||
bookmark name: =
|
|
||||||
bookmark pos: =
|
|
Loading…
x
Reference in New Issue
Block a user