-
-
Save jacmoe/67cf02c35c4a6921808eafec4c748aff to your computer and use it in GitHub Desktop.
Revisions
-
jacmoe revised this gist
Mar 12, 2017 . 2 changed files with 15 additions and 15 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ these are all my text strings at the moment. i store them like this per language: wchar_t* g_danish_strings[] = { [TEXT_STRING_NAME_OF_LANG] = L"Dansk", [TEXT_STRING_NEW_GAME] = L"Nyt Spil", [TEXT_STRING_QUIT] = L"Afslut", [TEXT_STRING_OPTIONS] = L"Valgmuligheder", [TEXT_STRING_HOST] = L"Nyt Spil", [TEXT_STRING_JOIN] = L"Tilslut Spil", [TEXT_STRING_CANCEL] = L"Fortryd", [TEXT_STRING_START] = L"Start", [TEXT_STRING_IP_ADDRESS] = L"IP Addresse", [TEXT_STRING_CONNECTING] = L"Forbinder..." }; This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,15 +0,0 @@ -
capnramses created this gist
Mar 12, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ these are all my text strings at the moment. i store them like this per language: wchar_t* g_english_strings[] = { [TEXT_STRING_NAME_OF_LANG] = L"English", [TEXT_STRING_NEW_GAME] = L"New Game", [TEXT_STRING_QUIT] = L"Quit", [TEXT_STRING_OPTIONS] = L"Options", [TEXT_STRING_HOST] = L"Host Game", [TEXT_STRING_JOIN] = L"Join Game", [TEXT_STRING_CANCEL] = L"Cancel", [TEXT_STRING_START] = L"Start", [TEXT_STRING_IP_ADDRESS] = L"IP Address", [TEXT_STRING_CONNECTING] = L"Connecting..." };