Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Not sure if the Hjson format is what you use when you make changes to the mod itself, or if that's only for the settings file, but I'm using that format just in case, to maybe make it easier for you to just copy and paste all this.
First of all, I wasn't really satisfied with which words were on the buttons and which words were on the display on the Who's On First module. This is my fault, I guess I should have specified that for you from the beginning, so sorry about that. But it also seems like there are a few words missing from the list that you must have forgotten to add. So, here's what I would like it to actually be:
"displays": ["JA","FÖRSTA","DISPLAYEN","OKEJ","DET STÅR","INGET"," ","TOM","NEJ","SKÄL","SJÄL","SÄTT","SET","SETT","STJÄL","SNART","ELLER","HELLER","SEJ","SÄG","HÄLLER","CHECK","KÄCK","TJECK","SIG","GJORD","JORD","HJORD"],
"buttons": ["REDO","FÖRSTA","NEJ","TOM","INGET","JA","VAD","ÖHHH","VÄNSTER","HÖGER","MITTEN","OKEJ","VÄNTA","TRYCK","ELLER","HELLER","SEJ","SÄG","HÄLLER","LR","ÖÖÖH","Ö","VAD?","KLAR","NÄSTA","STOPP","VISST","SOM"],
Also, the passwords aren't in alphabetical order in the manual. Does the game treat "Å" and "Ä" as an "A" and "Ö" as an "O", and then outputs the manual in wrong "alphabetical" order automatically? It looks to me like that's what's happening when looking at the order of the passwords. If that's the case, then maybe there isn't really anything you can do about it? Anyway, here is the order they should actually be in, if you're able to fix it:
"passwords": ["andas","blank","bomba","börja","efter","eller","först","hitta","hålla","höger","inget","kabel","klipp","knapp","lampa","liten","lösen","minne","modul","måste","något","nästa","panik","släpp","snart","stava","stopp","svara","tiden","tryck","tänka","varje","vilka","visst","vänta"],
I hope this isn't too much trouble. Sorry again, hehe. And thanks for your hard work! :)
Yes the language file within the mod looks exactly the same.
Yes that is exactly what's happening. I'm using the default c-sharp sorting function, which does exactly that, which is correct for German. I was not away there are different rules in other languages, but I can add this functionality. Could you tell me between which letters Å , Ä and Ö are sorted for Swedish?
...maybe I should just deactivate the automatic sorting and put the words into the list presorted.
Also changed the word "orkade" to "rekade" in the morse code word list.
As far as I can see we have so far:
It's a bit hard to explain, so I'll give an example. Let's look at my words "stiga" and "riktig". At first glance they don't look very similar - the only letters they have in common are "tig", and they're not even in the same place in the words. Here are the words in morse code:
* * * - * * - - * * - (stiga)
* - * * * - * - - * * - - * (riktig)
They don't look similar at all, right? But now we use the fact that the words loop, and that it's sometimes really difficult to know when a word, or even a letter, starts and when it ends in the module. So let's put the letters they have in common, "tig", at the start of the code. Now they look like this instead:
- * * - - * * - * * * (tigas)
- * * - - * * - * * * - * - (tigrik)
And suddenly they look very much like each other; "as" from "stiga" becomes "* - * * *" when the word loops, and "ri" from "riktig" is "* - * * *". We've essentially made it so they have two more letters in common, even though they aren't actually the same letters.Tricky!
- * * * * - - - - * - (dimma)
- * * * * * - - - - * - (dejta)
The morse code looks very similar, but only the first and last letters are actually the same.