Jump to content

Search the Community

Showing results for tags 'language'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News & Announcements
    • News
  • Project Zomboid
    • PZ Updates
    • General Discussions
    • Bug Reports
    • PZ Support
    • PZ Multiplayer
    • PZ Community & Creativity
    • PZ Suggestions
  • PZ Modding
    • Tutorials & Resources
    • Mods
    • Items
    • Mapping
    • Mod Ideas and Requests
  • General Games Development
    • Indie Scene
  • Other Discussions
    • General Discussion
    • Forum Games & Activities

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Twitter


Interests

Found 5 results

  1. Hello! I write to you today as an accomplished man. For you see it is today that I completed "Icelandic Online's" "beginners" course for learning Icelandic just a few days before my return trip to Iceland. I enjoy playing PZ and thought it would be a great way for me to practice simple phrases and learn new vocabulary in Icelandic but the files aren't yet translated. Could someone in this game's community help me find a willing person or persons willing to translate the base game's files into Icelandic? I've posted on other forums specifically for learning Icelandic or Icelandic culture in general but my plea is often deleted as it is viewed as inappropriate for their forum /shrug That is all! I look forward to supporting a beautiful culture and language. Hell if this isn't done soon maybe I'll be the one doing the translations
  2. Ecco l'ultima versione della traduzione italiana di PZ (22/09/17 - build 38.15 IWBUMS). Ovviamente, se qualcuno ha suggerimenti o trova errori me lo faccia sapere. Traduzione IWBUMS su Steam Workshop QUI Contributors: d00de Xadhoom Changelog Dropbox link to files ______________________________________________________________________________________
  3. This is for people who wants to translate context menu items to disassemble in own languages. For now supports languages: ES, AR. Download: http://www.mediafire.com/file/c2lslv4avam2vnv/DisassembleFixer.rar
  4. Hello, Yesterday i posed a question in the Modding Help section about using custom translations. http://theindiestone.com/forums/index.php/topic/3676-custom-texts-for-gettext/ Conclusion, it is not possible yet to use a translations .txt as found in the game already, but theres a option comming available soon. Now i wanted to see if i could use getText in my lua files already instead of strings so i dont have to replace them later on when this option comes available. But since a option is coming available soon i wanted to keep it simple and make it so that when the official method comes around i could easily copy paste my translation data. So the result is a very simple getText override: --***********************************************************--** TURBOTUTONE **--** Temporary custom translations fix **--***********************************************************-- set the language you want to test herelangBrev = 'EN';-- improvised translation tabletLang = {};-- English language sectiontLang['EN'] = { -- Custom context menu stuff: CtxTurboCraft_Build = "TurboCraft build", -- Add more stuff:}-- saving the original getText functionlocal old_getText = getText;-- simple getText overridegetText = function(string) -- check the offical translation function local str = old_getText(string); -- if the strings dont match its safe to assume an official translation has been found, we return if str ~= string then return str; end -- if the strings matched previously, were gonna check the improvised translation table if tLang[langBrev][string] ~= nil then return tLang[langBrev][string]; end -- if none found, return the string as is return string;endCopy paste the code to a lua file in your mod directory and add your custom translations to the translation table (tLang) and it should work the same as with the official translation, for example: getText("CtxTurboCraft_Build")Now when there comes a official method for modders available to do custom languages, then you should be able to simply copy the translation data between the brackets of the tLang table into the appropiate text file formatting and remove this temporary fix lua file. Regards, Turbo
  5. First of all I have to say this is a fascinating game. It has all the specs i have always wanted in a game! So I would love to recommend this game to my south korean buddies but although there arent much stuff to read in the game they fear they would have difficulties playing the game because of the language. I'd love to help the devs out if they had any intentions to support Korean in the game..
×
×
  • Create New...