Merge branch 'master' into new_plants
This commit is contained in:
commit
20e1e9c296
@ -139,7 +139,7 @@ it only records interactions with nodes but not player movement.
|
|||||||
|
|
||||||
This feature is EXPERIMENTAL and has some rough edges, so
|
This feature is EXPERIMENTAL and has some rough edges, so
|
||||||
use with care! The main use case for this feature is to record
|
use with care! The main use case for this feature is to record
|
||||||
solutions in the core levels.
|
solutions in level packs, most importantly the core levels.
|
||||||
|
|
||||||
This feature is useful to test and verify if the levels are still solvable
|
This feature is useful to test and verify if the levels are still solvable
|
||||||
in a later update in case the behavior of a laser block was accidentally
|
in a later update in case the behavior of a laser block was accidentally
|
||||||
@ -158,9 +158,9 @@ Commands:
|
|||||||
a file is saved into the world directory on success.
|
a file is saved into the world directory on success.
|
||||||
WARNING: Existing files will be silently overwritten!
|
WARNING: Existing files will be silently overwritten!
|
||||||
* `/replay_solution`: Replay the solution for the current level. This
|
* `/replay_solution`: Replay the solution for the current level. This
|
||||||
only works for core levels and only when you're at the beginning
|
only works for level pack levels and only when you're at the beginning
|
||||||
of a level.
|
of a level.
|
||||||
* `/test_core_solutions`: Mass-test ALL core levels in sequential
|
* `/test_pack_solutions`: Mass-test ALL levels of a level pack in sequence
|
||||||
|
|
||||||
The solution test will halt automatically when any inconsistency was
|
The solution test will halt automatically when any inconsistency was
|
||||||
detected. You can always abort the solution test or a recording by
|
detected. You can always abort the solution test or a recording by
|
||||||
|
@ -287,6 +287,14 @@ so they work in Luanti.
|
|||||||
- By Ogrebane
|
- By Ogrebane
|
||||||
- License: CC0
|
- License: CC0
|
||||||
- <http://opengameart.org/content/wood-and-metal-sound-effects-volume-2>
|
- <http://opengameart.org/content/wood-and-metal-sound-effects-volume-2>
|
||||||
|
- `lzr_parrot_npc_curr.ogg`
|
||||||
|
- By Breviceps
|
||||||
|
- License: CC0
|
||||||
|
- <https://freesound.org/people/Breviceps/sounds/445119/>
|
||||||
|
- `lzr_doors_door_locked.ogg`
|
||||||
|
- by saha213131
|
||||||
|
- License: CC0
|
||||||
|
- <https://freesound.org/people/saha213131/sounds/730189/>
|
||||||
|
|
||||||
|
|
||||||
## Translations
|
## Translations
|
||||||
|
@ -101,6 +101,11 @@ a special event to happen.
|
|||||||
* `water=3`: Water
|
* `water=3`: Water
|
||||||
* `liquid=3`: Node is a liquid in a semantic sense
|
* `liquid=3`: Node is a liquid in a semantic sense
|
||||||
* `pane=1`: Pane (flat window-like block)
|
* `pane=1`: Pane (flat window-like block)
|
||||||
|
* `door`: Door segment
|
||||||
|
* `1`: Bottom segment
|
||||||
|
* `2`: Top segment
|
||||||
|
* `door_exit=1`: Exit door segment
|
||||||
|
* `door_locked=1`: Locked door segment
|
||||||
* `stair`: Stair
|
* `stair`: Stair
|
||||||
* `1`: Normal stair
|
* `1`: Normal stair
|
||||||
* `2`: Inner stair
|
* `2`: Inner stair
|
||||||
|
@ -224,6 +224,9 @@ If you think you made a nice level, send it to Wuzzy per e-mail at
|
|||||||
Wuzzy@disroot.org. This game desperately needs more levels, so submissions
|
Wuzzy@disroot.org. This game desperately needs more levels, so submissions
|
||||||
are appreciated. :D
|
are appreciated. :D
|
||||||
|
|
||||||
|
If you have multiple levels, you may construct a level pack. See
|
||||||
|
`LEVEL_PACKS.md` for details.
|
||||||
|
|
||||||
|
|
||||||
### Technical steps
|
### Technical steps
|
||||||
|
|
||||||
@ -257,7 +260,7 @@ Each record contains multiple values, in this order:
|
|||||||
* `<border list>`: List of border blocks, see below
|
* `<border list>`: List of border blocks, see below
|
||||||
* `<ambience>`: Ambient sounds. Either `ocean`, `temple` or `none`.
|
* `<ambience>`: Ambient sounds. Either `ocean`, `temple` or `none`.
|
||||||
* `<sky>`: Sky ID. See the mod `lzr_sky` for available skies. (optional)
|
* `<sky>`: Sky ID. See the mod `lzr_sky` for available skies. (optional)
|
||||||
* `<npc_texts>`: This is the text that will show when the player interacts with the information block. (optional)
|
* `<npc_texts>`: This is the text that will show when the player interacts with Goldie the Parrot. (optional)
|
||||||
* `<weather>`: Weather ID. See the mod `lzr_weather` for available weathers. (optional)
|
* `<weather>`: Weather ID. See the mod `lzr_weather` for available weathers. (optional)
|
||||||
* `<backdrop>`: Backdrop ID. This is the environment that surrounds the playable level area. One of `ocean`, `islands`, `underground`, `sky`. (optional)
|
* `<backdrop>`: Backdrop ID. This is the environment that surrounds the playable level area. One of `ocean`, `islands`, `underground`, `sky`. (optional)
|
||||||
* `<backdrop_position>`: Backdrop position, written in format (x,y,z). Only relevant for the `islands` backdrop. (optional)
|
* `<backdrop_position>`: Backdrop position, written in format (x,y,z). Only relevant for the `islands` backdrop. (optional)
|
||||||
|
105
LEVEL_PACKS.md
Normal file
105
LEVEL_PACKS.md
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
# Level packs
|
||||||
|
|
||||||
|
A level pack is a collection of levels that belong together.
|
||||||
|
|
||||||
|
This is the best way to store and share custom levels, but it requires
|
||||||
|
Lua programming skills to add a new level pack.
|
||||||
|
|
||||||
|
To add a new level pack, a new Luanti mod must be created containing these things:
|
||||||
|
|
||||||
|
1) Level schematic (`*.mts`) files. These are for the blocks of the level
|
||||||
|
2) Level metadata in a level data CSV file. This contains all information that
|
||||||
|
the schematic file cannot hold, e.g. title, boundary blocks, weather, sky, etc.
|
||||||
|
The level data CSV specifies the metadata for ALL levels at once.
|
||||||
|
This file also defines the level order. Levels at the top will be played first.
|
||||||
|
3) Lua code to register the level pack (see below)
|
||||||
|
|
||||||
|
The mod must depend on `lzr_levels`.
|
||||||
|
|
||||||
|
The mod *should* follow the naming convention `lzr_pack_<name>`.
|
||||||
|
|
||||||
|
Apart from this, the mod can be like any other mod and may add or
|
||||||
|
change other things on top of just the levels themselves.
|
||||||
|
|
||||||
|
## File structure
|
||||||
|
|
||||||
|
Normally, the file structure of the mod is as follows:
|
||||||
|
|
||||||
|
* `mod.conf`: Must declare dependency on `lzr_levels`
|
||||||
|
* `init.lua`: Lua code to register level pack (see below)
|
||||||
|
* `data/level_data.csv`: CSV file for level metadata for ALL levels
|
||||||
|
* `schematics/`: The level `*.mts` files go here
|
||||||
|
* `solutions/`: (optional) Level solution files `*.sol.csv` go here.
|
||||||
|
* `locale/`: (optional) To store the locale files, if present
|
||||||
|
|
||||||
|
Some of these file locations may be changed by parameters of the
|
||||||
|
function `lzr_levels.register_level_pack`.
|
||||||
|
|
||||||
|
## Register the level pack
|
||||||
|
|
||||||
|
To register a level pack, you must call `lzr_levels.register_level_pack`.
|
||||||
|
The definition of this function is as follows:
|
||||||
|
|
||||||
|
### `lzr_levels.register_level_pack(name, info)`
|
||||||
|
|
||||||
|
Register a level pack. For this to work, the level-related data must be present in the
|
||||||
|
locations defined at `level_data_file`, `schematic_path` and (optionally) `solutions_path`
|
||||||
|
described below.
|
||||||
|
|
||||||
|
If successful, the level pack will appear in the game under the custom levels menu.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
|
||||||
|
* `name`: Level pack ID. A string. The allowed characters are `a-z`, `A-Z`, `0-9` and `_` (underscore). IDs starting with two underscores are reserved to Lazarr!
|
||||||
|
* `info`: Table of optional additional information, with these fields:
|
||||||
|
* `title`: human-readable level pack title
|
||||||
|
* `description`: short description/explanation about this level pack. 1-3 sentences.
|
||||||
|
* `textdomain_level_names`: textdomain of the translation file containing the translated level names (default: no translation)
|
||||||
|
* `textdomain_npc_texts`: textdomain of the translation file containing the translated texts for NPCs like Goldie the Parrot (default: no translation)
|
||||||
|
* `level_data_file`: Path to CSV file containing metadata of all levels (default: `<modpath>/data/level_data.csv`)
|
||||||
|
* `schematic_path`: Path to directory containing the level '.mts' schematic files (default: `<modpath>/schematics`)
|
||||||
|
* `solutions_path`: Path to directory containing the *optional* level '.sol.csv' solution files (default: `<modpath>/solutions`)
|
||||||
|
|
||||||
|
If successful, the level pack will appear in the game under the custom levels menu.
|
||||||
|
|
||||||
|
#### A note about solution files
|
||||||
|
|
||||||
|
Solution files exist for internal purposes, for the quality assurance and game stability of
|
||||||
|
Lazarr! to ensure the levels still work after major changes to the game. This feature mainly
|
||||||
|
exists for the core levels and it’s not neccessary for custom level packs to create them.
|
||||||
|
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
A simple example with one level, translated into German.
|
||||||
|
|
||||||
|
We call the mod `lzr_pack_example`.
|
||||||
|
|
||||||
|
Here’s the file structure:
|
||||||
|
|
||||||
|
* `mod.conf`
|
||||||
|
* `init.lua`
|
||||||
|
* `schematics`
|
||||||
|
* `lzr_pack_example_example.mts`
|
||||||
|
* `data`
|
||||||
|
* `level_data.csv`
|
||||||
|
* `locale`
|
||||||
|
* `lzr_pack_example.pot`
|
||||||
|
* `lzr_pack_example.po.de`
|
||||||
|
* `lzr_pack_example_level_names.pot`
|
||||||
|
* `lzr_pack_example_level_names.de.po`
|
||||||
|
* `lzr_pack_example_npc_texts.pot`
|
||||||
|
* `lzr_pack_example_npc_texts.de.po`
|
||||||
|
|
||||||
|
The code of `init.lua`:
|
||||||
|
|
||||||
|
|
||||||
|
local S = minetest.get_translator("lzr_pack_example")
|
||||||
|
|
||||||
|
lzr_levels.register_level_pack("example", {
|
||||||
|
title = S("My Example Levels"),
|
||||||
|
description = S("Some example levels to test things."),
|
||||||
|
textdomain_level_names = "lzr_pack_example_level_names",
|
||||||
|
textdomain_npc_texts = "lzr_pack_example_npc_texts",
|
||||||
|
})
|
||||||
|
|
@ -22,10 +22,10 @@ Mirrors and other things will help you.
|
|||||||
You start in the captain's cabin, the base of your treasure-hunting
|
You start in the captain's cabin, the base of your treasure-hunting
|
||||||
operations. Use the book in front of you to select the first level.
|
operations. Use the book in front of you to select the first level.
|
||||||
|
|
||||||
The spinning information blocks will guide you through the levels.
|
Goldie the Parrot will guide you through the levels.
|
||||||
|
|
||||||
## Installing
|
## Installing
|
||||||
You need Luanti version 5.9.0 (or later) to play this.
|
You need Luanti version 5.10.0 (or later) to play this.
|
||||||
Download Luanti from <https://www.minetest.net>.
|
Download Luanti from <https://www.minetest.net>.
|
||||||
|
|
||||||
Refer to Luanti documentation to learn how to install a game in Luanti.
|
Refer to Luanti documentation to learn how to install a game in Luanti.
|
||||||
|
@ -5,5 +5,5 @@ allowed_mapgens = singlenode
|
|||||||
disabled_settings = enable_damage,creative_mode,enable_server
|
disabled_settings = enable_damage,creative_mode,enable_server
|
||||||
disallowed_mapgen_settings = seed
|
disallowed_mapgen_settings = seed
|
||||||
map_persistent = false
|
map_persistent = false
|
||||||
min_minetest_version = 5.9
|
min_minetest_version = 5.10
|
||||||
textdomain = lzr_game_meta
|
textdomain = lzr_game_meta
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 685 B After Width: | Height: | Size: 316 KiB |
@ -223,6 +223,7 @@ minetest.register_chatcommand("music", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- Special built-in ambience that is completely silent
|
-- Special built-in ambience that is completely silent
|
||||||
|
--~ Special entry in music list representing silence
|
||||||
lzr_ambience.register_ambience("none", nil, nil, S("None"))
|
lzr_ambience.register_ambience("none", nil, nil, S("None"))
|
||||||
|
|
||||||
dofile(minetest.get_modpath("lzr_ambience").."/register.lua")
|
dofile(minetest.get_modpath("lzr_ambience").."/register.lua")
|
||||||
|
39
mods/lzr_ambience/locale/lzr_ambience.de.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.de.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: de\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr "Musik aktiviert"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr "Musik deaktiviert"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr "Musik umschalten"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr "Musik eingeschaltet."
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr "Musik ausgeschaltet."
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr "Keine"
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=Musik aktiviert
|
|
||||||
Music disabled=Musik deaktiviert
|
|
||||||
Toggle music=Musik umschalten
|
|
||||||
Music enabled.=Musik eingeschaltet.
|
|
||||||
Music disabled.=Musik ausgeschaltet.
|
|
||||||
None=Keine
|
|
39
mods/lzr_ambience/locale/lzr_ambience.es.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.es.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: es\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr "Música activada"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr "Música desactivada"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr "Activar música"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr "Música activada."
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr "Música desactivada."
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr "Ninguno"
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=Ninguno
|
|
39
mods/lzr_ambience/locale/lzr_ambience.fr.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.fr.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr "(Dés)activer la musique"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr "Aucun"
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=(Dés)activer la musique
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=Aucun
|
|
39
mods/lzr_ambience/locale/lzr_ambience.id.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.id.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: id\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
39
mods/lzr_ambience/locale/lzr_ambience.it.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.it.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: it\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
39
mods/lzr_ambience/locale/lzr_ambience.jbo.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.jbo.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: jbo\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
39
mods/lzr_ambience/locale/lzr_ambience.ms.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.ms.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: ms\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
43
mods/lzr_ambience/locale/lzr_ambience.pot
Normal file
43
mods/lzr_ambience/locale/lzr_ambience.pot
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the Lazarr! package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Lazarr! 2.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-14 13:56+0100\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
39
mods/lzr_ambience/locale/lzr_ambience.pt_BR.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.pt_BR.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: pt_BR\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
40
mods/lzr_ambience/locale/lzr_ambience.ru.po
Normal file
40
mods/lzr_ambience/locale/lzr_ambience.ru.po
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: ru\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr "Пусто"
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=Пусто
|
|
39
mods/lzr_ambience/locale/lzr_ambience.se.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.se.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: se\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
39
mods/lzr_ambience/locale/lzr_ambience.sk.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.sk.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: sk\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
39
mods/lzr_ambience/locale/lzr_ambience.tr.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.tr.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: tr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
39
mods/lzr_ambience/locale/lzr_ambience.zh_Hans.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.zh_Hans.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: zh_Hans\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: \n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
39
mods/lzr_ambience/locale/lzr_ambience.zh_Hant.po
Normal file
39
mods/lzr_ambience/locale/lzr_ambience.zh_Hant.po
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: zh_Hant\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: \n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:168
|
||||||
|
msgid "Music enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:171
|
||||||
|
msgid "Music disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:213
|
||||||
|
msgid "Toggle music"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:218
|
||||||
|
msgid "Music enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_ambience/init.lua:220
|
||||||
|
msgid "Music disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ Special entry in music list representing silence
|
||||||
|
#: mods/lzr_ambience/init.lua:227
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: de\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr "Musik aktiviert"
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr "Musik deaktiviert"
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr "Musik umschalten"
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr "Musik eingeschaltet."
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr "Musik ausgeschaltet."
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr "Keine"
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: es\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr "Ninguno"
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr "(Dés)activer la musique"
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr "Aucun"
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: id\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: it\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: jbo\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: ms\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: pt_BR\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: ru\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr "Пусто"
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: se\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: sk\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: tr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: Automatically generated\n"
|
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: zh_Hans\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
@ -1,32 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_ambience x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: Automatically generated\n"
|
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: zh_Hant\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "Music enabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Toggle music"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music enabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Music disabled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "None"
|
|
||||||
msgstr ""
|
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_ambience
|
|
||||||
Music enabled=
|
|
||||||
Music disabled=
|
|
||||||
Toggle music=
|
|
||||||
Music enabled.=
|
|
||||||
Music disabled.=
|
|
||||||
None=
|
|
@ -1,2 +1,3 @@
|
|||||||
name = lzr_ambience
|
name = lzr_ambience
|
||||||
depends = lzr_messages
|
depends = lzr_messages
|
||||||
|
description = Ambient music
|
||||||
|
@ -73,7 +73,7 @@ end
|
|||||||
|
|
||||||
local STR_WARNING_1 = S("WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!")
|
local STR_WARNING_1 = S("WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!")
|
||||||
local STR_WARNING_2 = S("Please exit the game and reset the following Luanti settings to their default value:")
|
local STR_WARNING_2 = S("Please exit the game and reset the following Luanti settings to their default value:")
|
||||||
-- concatenate invalid settings with list separator (comma)
|
--~ list separator for list of invalid player movement settings
|
||||||
local STR_INVALID_SETTINGS = table.concat(invalid_settings, S(", "))
|
local STR_INVALID_SETTINGS = table.concat(invalid_settings, S(", "))
|
||||||
|
|
||||||
local disconnect = function(player)
|
local disconnect = function(player)
|
||||||
|
@ -0,0 +1,53 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: de\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
"WARNUNG: Die Einstellungen für die Spielerbewegung sind nicht auf den "
|
||||||
|
"empfohlenen Werten für Lazarr! Die Physik wird evtl. nicht wie erwartet "
|
||||||
|
"funktionieren!"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
"Bitte verlassen Sie das Spiel und setzen Sie die folgenden Luanti-"
|
||||||
|
"Einstellungen auf ihren Standardwert zurück:"
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ", "
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
"Sie haben das Spiel verlassen. Denken Sie dran, dass Lazarr! erwartet, dass "
|
||||||
|
"die folgenden Luanti-Einstellungen auf den Standardwert zurückgesetzt "
|
||||||
|
"werden: @1"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr "Spiel verlassen"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr "Trotzdem weiterspielen"
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=WARNUNG: Die Einstellungen für die Spielerbewegung sind nicht auf den empfohlenen Werten für Lazarr! Die Physik wird evtl. nicht wie erwartet funktionieren!
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=Bitte verlassen Sie das Spiel und setzen Sie die folgenden Luanti-Einstellungen auf ihren Standardwert zurück:
|
|
||||||
, =,
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=Sie haben das Spiel verlassen. Denken Sie dran, dass Lazarr! erwartet, dass die folgenden Luanti-Einstellungen auf den Standardwert zurückgesetzt werden: @1
|
|
||||||
Exit game=Spiel verlassen
|
|
||||||
Continue playing anyway=Trotzdem weiterspielen
|
|
@ -0,0 +1,52 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: es\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
"¡ADVERTENCIA: La configuración del movimiento del jugador no está en los "
|
||||||
|
"valores recomendados para Lazarr! ¡La física puede no funcionar como se "
|
||||||
|
"espera!"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
"Por favor sal del nivel y reinicia los siguientes ajustes Luanti a su valor "
|
||||||
|
"por defecto:"
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ", "
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
"Renunciaste. Recuerda, Lazarr! espera que los siguientes ajustes Luanti se "
|
||||||
|
"reinicien a su valor por defecto: @1"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr "Salir del juego"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr "Seguir jugando de todas formas"
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=¡ADVERTENCIA: La configuración del movimiento del jugador no está en los valores recomendados para Lazarr! ¡La física puede no funcionar como se espera!
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =,
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=Salir del juego
|
|
||||||
Continue playing anyway=Seguir jugando de todas formas
|
|
@ -0,0 +1,47 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
"ATTENTION : les paramètres de mouvement du joueur ne sont pas celles "
|
||||||
|
"recommandées pour Lazarr ! Le jeu peut ne pas fonctionner correctement !"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ", "
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr "Quitter le jeu"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr "Continuer à jouer malgré tout"
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=ATTENTION : les paramètres de mouvement du joueur ne sont pas celles recommandées pour Lazarr ! Le jeu peut ne pas fonctionner correctement !
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =,
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=Quitter le jeu
|
|
||||||
Continue playing anyway=Continuer à jouer malgré tout
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: id\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: it\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: jbo\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: ms\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,49 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the Lazarr! package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Lazarr! 2.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-14 13:56+0100\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: pt_BR\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,48 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: ru\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
"ВНИМАНИЕ: Настройки движения игрока не соответствуют рекомендуемым для "
|
||||||
|
"Lazarr! Физика может работать неправильно!"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ", "
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr "Выйти из игры"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr "Продолжать играть в любом случае"
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=ВНИМАНИЕ: Настройки движения игрока не соответствуют рекомендуемым для Lazarr! Физика может работать неправильно!
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =,
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=Выйти из игры
|
|
||||||
Continue playing anyway=Продолжать играть в любом случае
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: se\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: sk\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: tr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: zh_Hans\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: \n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -0,0 +1,45 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
||||||
|
"Report-Msgid-Bugs-To: Wuzzy@disroot.org\n"
|
||||||
|
"POT-Creation-Date: 2024-12-10 03:16+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: zh_Hant\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: \n"
|
||||||
|
"X-Generator: ltt_convert 0.2.0\n"
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:74
|
||||||
|
msgid ""
|
||||||
|
"WARNING: The player movement settings are not at the recommended values for "
|
||||||
|
"Lazarr! The physics might not work as intended!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:75
|
||||||
|
msgid ""
|
||||||
|
"Please exit the game and reset the following Luanti settings to their "
|
||||||
|
"default value:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ~ list separator for list of invalid player movement settings
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:77
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:81
|
||||||
|
msgid ""
|
||||||
|
"You quit. Remember, Lazarr! expects the following Luanti settings to be "
|
||||||
|
"reset to the default value: @1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:87
|
||||||
|
msgid "Exit game"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mods/lzr_check_movement_settings/init.lua:88
|
||||||
|
msgid "Continue playing anyway"
|
||||||
|
msgstr ""
|
@ -1,7 +0,0 @@
|
|||||||
# textdomain: lzr_check_movement_settings
|
|
||||||
WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!=
|
|
||||||
Please exit the game and reset the following Luanti settings to their default value:=
|
|
||||||
, =
|
|
||||||
You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1=
|
|
||||||
Exit game=
|
|
||||||
Continue playing anyway=
|
|
@ -1,38 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: 2024-10-25 12:05+0000\n"
|
|
||||||
"Last-Translator: Wuzzy <Wuzzy@users.noreply.translate.codeberg.org>\n"
|
|
||||||
"Language-Team: German <https://translate.codeberg.org/projects/lazarr/"
|
|
||||||
"lzr_check_movement_settings/de/>\n"
|
|
||||||
"Language: de\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.8.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr "WARNUNG: Die Einstellungen für die Spielerbewegung sind nicht auf den empfohlenen Werten für Lazarr! Die Physik wird evtl. nicht wie erwartet funktionieren!"
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
"Bitte verlassen Sie das Spiel und setzen Sie die folgenden Luanti-"
|
|
||||||
"Einstellungen auf ihren Standardwert zurück:"
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ", "
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
"Sie haben das Spiel verlassen. Denken Sie dran, dass Lazarr! erwartet, dass "
|
|
||||||
"die folgenden Luanti-Einstellungen auf den Standardwert zurückgesetzt werden:"
|
|
||||||
" @1"
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr "Spiel verlassen"
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr "Trotzdem weiterspielen"
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: es\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr "¡ADVERTENCIA: La configuración del movimiento del jugador no está en los valores recomendados para Lazarr! ¡La física puede no funcionar como se espera!"
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ", "
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr "Salir del juego"
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr "Seguir jugando de todas formas"
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr "ATTENTION : les paramètres de mouvement du joueur ne sont pas celles recommandées pour Lazarr ! Le jeu peut ne pas fonctionner correctement !"
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ", "
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr "Quitter le jeu"
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr "Continuer à jouer malgré tout"
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: id\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: it\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: jbo\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: ms\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: pt_BR\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: ru\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr "ВНИМАНИЕ: Настройки движения игрока не соответствуют рекомендуемым для Lazarr! Физика может работать неправильно!"
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ", "
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr "Выйти из игры"
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr "Продолжать играть в любом случае"
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: se\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: sk\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: tr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: \n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: Automatically generated\n"
|
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: zh_Hans\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
@ -1,32 +0,0 @@
|
|||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Luanti textdomain lzr_check_movement_settings x.x.x\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: \n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: Automatically generated\n"
|
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: zh_Hant\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: mtt_convert 0.1.1\n"
|
|
||||||
|
|
||||||
msgid "WARNING: The player movement settings are not at the recommended values for Lazarr! The physics might not work as intended!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Please exit the game and reset the following Luanti settings to their default value:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ", "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "You quit. Remember, Lazarr! expects the following Luanti settings to be reset to the default value: @1"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Exit game"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Continue playing anyway"
|
|
||||||
msgstr ""
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user