Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions t6/raw/english/localizedstrings/en_plutonium.str
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ VERSION "1"
CONFIG "C:/projects/cod/t6/bin/StringEd.cfg"
FILENOTES "T6 is all UTF-8 encoded"

// MAINLOBBY

REFERENCE MPUI_MODS_DESC
LANG_ENGLISH "Play modifications created by the community."

// MODS

REFERENCE MOD_LOAD
Expand Down
5 changes: 5 additions & 0 deletions t6/raw/english/localizedstrings/fr_plutonium.str
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ VERSION "1"
CONFIG "C:/projects/cod/t6/bin/StringEd.cfg"
FILENOTES "Thanks Flo203"

// MAINLOBBY

REFERENCE MPUI_MODS_DESC
LANG_ENGLISH ""

// MODS

REFERENCE MOD_LOAD
Expand Down
5 changes: 5 additions & 0 deletions t6/raw/english/localizedstrings/ge_plutonium.str
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ VERSION "1"
CONFIG "C:/projects/cod/t6/bin/StringEd.cfg"
FILENOTES "Thanks JohnKramer"

// MAINLOBBY

REFERENCE MPUI_MODS_DESC
LANG_ENGLISH ""

// MODS

REFERENCE MOD_LOAD
Expand Down
5 changes: 5 additions & 0 deletions t6/raw/english/localizedstrings/it_plutonium.str
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ VERSION "1"
CONFIG "C:/projects/cod/t6/bin/StringEd.cfg"
FILENOTES "Translated from English to Italian. When literal translation feels unnatural, the use of <articoli determinativi> is used to naturalise the flow of the text. Translation type: functional equivalence. NO AI WAS USED. Thanks FutureRave"

// MAINLOBBY

REFERENCE MPUI_MODS_DESC
LANG_ENGLISH ""

// MODS

REFERENCE MOD_LOAD
Expand Down
5 changes: 5 additions & 0 deletions t6/raw/english/localizedstrings/ja_plutonium.str
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ VERSION "1"
CONFIG "C:/projects/cod/t6/bin/StringEd.cfg"
FILENOTES "Deepseek translated... Sorry..."

// MAINLOBBY

REFERENCE MPUI_MODS_DESC
LANG_ENGLISH ""

// MODS

REFERENCE MOD_LOAD
Expand Down
5 changes: 5 additions & 0 deletions t6/raw/english/localizedstrings/po_plutonium.str
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ VERSION "1"
CONFIG "C:/projects/cod/t6/bin/StringEd.cfg"
FILENOTES "Thanks Ziomix"

// MAINLOBBY

REFERENCE MPUI_MODS_DESC
LANG_ENGLISH ""

// MODS

REFERENCE MOD_LOAD
Expand Down
5 changes: 5 additions & 0 deletions t6/raw/english/localizedstrings/ru_plutonium.str
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ VERSION "1"
CONFIG "C:/projects/cod/t6/bin/StringEd.cfg"
FILENOTES "Thanks luigistyle"

// MAINLOBBY

REFERENCE MPUI_MODS_DESC
LANG_ENGLISH ""

// MODS

REFERENCE MOD_LOAD
Expand Down
5 changes: 5 additions & 0 deletions t6/raw/english/localizedstrings/sp_plutonium.str
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ VERSION "1"
CONFIG "C:/projects/cod/t6/bin/StringEd.cfg"
FILENOTES "Thanks Gencrack"

// MAINLOBBY

REFERENCE MPUI_MODS_DESC
LANG_ENGLISH ""

// MODS

REFERENCE MOD_LOAD
Expand Down
4 changes: 2 additions & 2 deletions t6/raw/ui/t6/mainlobby.lua
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ CoD.MainLobby.PopulateButtons_Multiplayer = function (MainLobbyButtonPane)
MainLobbyButtonPane.body.optionsButton.hintText = Engine.Localize("MPUI_OPTIONS_DESC")
MainLobbyButtonPane.body.optionsButton:setActionEventName("open_options_menu")
MainLobbyButtonPane.body.modsButton = MainLobbyButtonPane.body.buttonList:addButton(Engine.Localize("MENU_MODS_CAPS"), nil, 12)
MainLobbyButtonPane.body.modsButton.hintText = Engine.Localize("MENU_SELECT_MOD_NAME_TO_LAUNCH")
MainLobbyButtonPane.body.modsButton.hintText = Engine.Localize("MPUI_MODS_DESC")
MainLobbyButtonPane.body.modsButton:setActionEventName("open_mods_menu")
end

Expand Down Expand Up @@ -463,7 +463,7 @@ CoD.MainLobby.PopulateButtons_Zombie = function (MainLobbyButtonPane)
MainLobbyButtonPane.body.optionsButton.hintText = Engine.Localize("MPUI_OPTIONS_DESC")
MainLobbyButtonPane.body.optionsButton:setActionEventName("open_options_menu")
MainLobbyButtonPane.body.modsButton = MainLobbyButtonPane.body.buttonList:addButton(Engine.Localize("MENU_MODS_CAPS"), nil, 10)
MainLobbyButtonPane.body.modsButton.hintText = Engine.Localize("MENU_SELECT_MOD_NAME_TO_LAUNCH")
MainLobbyButtonPane.body.modsButton.hintText = Engine.Localize("MPUI_MODS_DESC")
MainLobbyButtonPane.body.modsButton:setActionEventName("open_mods_menu")
end

Expand Down