-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #919 from bitpredator/dev
remove + chore: [Christmas] pack + Performed formatting work and set the weather to clear
- Loading branch information
Showing
31 changed files
with
35 additions
and
46 deletions.
There are no files selected for viewing
4 changes: 0 additions & 4 deletions
4
server-data/resources/[Christmas]/changer_square/fxmanifest.lua
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-2.57 MB
...er-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_beaver.ydr
Binary file not shown.
Binary file removed
BIN
-29 KB
...er-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_border.ydr
Binary file not shown.
Binary file removed
BIN
-244 KB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_candy.ydr
Binary file not shown.
Binary file removed
BIN
-199 KB
...er-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_ferris.ydr
Binary file not shown.
Binary file removed
BIN
-690 KB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_gifts.ydr
Binary file not shown.
Binary file removed
BIN
-845 KB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_iglu.ydr
Binary file not shown.
Binary file removed
BIN
-277 KB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_luzes.ydr
Binary file not shown.
Binary file removed
BIN
-37.7 KB
...data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_mahzinha1.ydr
Binary file not shown.
Binary file removed
BIN
-37.8 KB
...data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_mahzinha2.ydr
Binary file not shown.
Binary file removed
BIN
-1.79 MB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_santa.ydr
Binary file not shown.
Binary file removed
BIN
-1.32 KB
...er-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_santa.ytyp
Binary file not shown.
Binary file removed
BIN
-2.36 KB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_star.ydr
Binary file not shown.
Binary file removed
BIN
-164 KB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_tree.ydr
Binary file not shown.
Binary file removed
BIN
-132 KB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_tree2.ydr
Binary file not shown.
Binary file removed
BIN
-3.48 MB
server-data/resources/[Christmas]/changer_square/stream/changer_props/changer_snow_txt.ytd
Binary file not shown.
Binary file removed
BIN
-524 Bytes
server-data/resources/[Christmas]/changer_square/stream/changer_snow_manifest.ymf
Binary file not shown.
Binary file removed
BIN
-6.35 KB
server-data/resources/[Christmas]/changer_square/stream/changer_ymap.ymap
Binary file not shown.
Binary file removed
BIN
-7.94 KB
server-data/resources/[Christmas]/changer_square/stream/hei_dt1_13_strm_0.ymap
Binary file not shown.
Binary file removed
BIN
-130 KB
server-data/resources/[Christmas]/changer_square/stream/objetos/dt1_13_0.ybn
Binary file not shown.
Binary file removed
BIN
-1.57 MB
server-data/resources/[Christmas]/changer_square/stream/objetos/dt1_13_build1.ydr
Binary file not shown.
Binary file removed
BIN
-177 KB
server-data/resources/[Christmas]/changer_square/stream/objetos/dt1_13_dtlb.ydr
Binary file not shown.
Binary file removed
BIN
-2.13 KB
server-data/resources/[Christmas]/changer_square/stream/objetos/dt1_13_grounddetailb.ydr
Binary file not shown.
Binary file removed
BIN
-134 KB
server-data/resources/[Christmas]/changer_square/stream/objetos/dt1_13_superlod_children.ydd
Binary file not shown.
Binary file removed
BIN
-111 KB
server-data/resources/[Christmas]/changer_square/stream/objetos/hi@dt1_13_0.ybn
Binary file not shown.
Binary file removed
BIN
-1.18 MB
server-data/resources/[Christmas]/changer_square/stream/prop_ld_ferris_wheel+hidr.ytd
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
Locales = {} | ||
|
||
function _(str, ...) -- Translate string | ||
|
||
if Locales[Config.Locale] ~= nil then | ||
|
||
if Locales[Config.Locale][str] ~= nil then | ||
return string.format(Locales[Config.Locale][str], ...) | ||
else | ||
return 'Translation [' .. Config.Locale .. '][' .. str .. '] does not exist' | ||
end | ||
|
||
else | ||
return 'Locale [' .. Config.Locale .. '] does not exist' | ||
end | ||
|
||
if Locales[Config.Locale] ~= nil then | ||
if Locales[Config.Locale][str] ~= nil then | ||
return string.format(Locales[Config.Locale][str], ...) | ||
else | ||
return "Translation [" .. Config.Locale .. "][" .. str .. "] does not exist" | ||
end | ||
else | ||
return "Locale [" .. Config.Locale .. "] does not exist" | ||
end | ||
end | ||
|
||
function _U(str, ...) -- Translate string first char uppercase | ||
return tostring(_(str, ...):gsub("^%l", string.upper)) | ||
end | ||
return tostring(_(str, ...):gsub("^%l", string.upper)) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters