Hello, I am a veteran player of oblivion and am also making translation of MOD for Japanese players. And our biggest concerns are this MOD:Nehrim now. We think that this "Nehrim" is another new game rather than "Oblivion." There are many surprising new worlds and interesting quest in this MOD. Therefore, there are many people who want to play Nehrim immediately. So, I want me or a well-qualified person to permit translating Nehrim for Japanese players. We think that we would like to translate from both the German version and an English-language edition. The result of translation will mainly be exhibited at the place called a "Oblivion Mod translation place." (http://modl10n.oblivion.z49.org/) Thanks for your time.
There is already a japanese translation being worked on, and it's nearly finished:
http://transobli.blog16.fc2.com/
http://transobli.blog16.fc2.com/
Yes, he is a man who raised this project. Although his translation is nearing completion, he has not distributed the result yet. And in order to achieve better results, when an English-language edition is released, a project will be started in the "Oblivion Mod translation place." The "Oblivion Mod translation place" has a plan which distributes a result, after obtaining the author's permission. You say that an English-language edition will be released soon, so I contacted here. I'll apologize, if offended by not having contacted until now.
You may translate Nehrim in any language you want 
Thank you so much! Permission formal for those who want this translation will serve as good news.
Hello all.
Translation into Japanese was completed mostly, and two kinds of translation files exist now. One of them makes a proper noun English :
You know, it exist www.Nehrim.de. (into the Japanese national flag)
And in another direction, we did perfect translation including a noun into Japanese.
(Though, some books is still a non-translation for a while.)
Now, the file is in the following URL.
Explanation of this Japanese file (Oblivion Japanese Wiki) :
http://jpmod.oblivion.z49.org/?%C7%C9%C ... Mod#c_chou
The download link of Japanese version of the Nehrim (translated from DV & EN) 1.1.0.5 :
http://www.4shared.com/file/e3SXWLmv/Ne ... EJ_012.htm
However, though regrettable, the signboard or map which appear in a game are not made into Japanese.
Thank you Nehrim Team!
Translation into Japanese was completed mostly, and two kinds of translation files exist now. One of them makes a proper noun English :
You know, it exist www.Nehrim.de. (into the Japanese national flag)
And in another direction, we did perfect translation including a noun into Japanese.
(Though, some books is still a non-translation for a while.)
Now, the file is in the following URL.
Explanation of this Japanese file (Oblivion Japanese Wiki) :
http://jpmod.oblivion.z49.org/?%C7%C9%C ... Mod#c_chou
The download link of Japanese version of the Nehrim (translated from DV & EN) 1.1.0.5 :
http://www.4shared.com/file/e3SXWLmv/Ne ... EJ_012.htm
However, though regrettable, the signboard or map which appear in a game are not made into Japanese.
Thank you Nehrim Team!
Nehrim Japanese version 1.1.1.0, now available too. The download URL is the same as former.
This time, the maps and the road signs were also made into Japanese!
Thanks Dennis for the materials.

This time, the maps and the road signs were also made into Japanese!
Thanks Dennis for the materials.

Awesome stuff! Thanks for your translation work and help on the english version too. I will check it out soon
Also there was a major bug in our version 1.1.1.0.. You should change it in your version too.
First of all the script NQ15W02EnemyScript
Here is the full and correct script in German:
Just translate the message "Zieht Euch zurück!" / "Fall back!" again.
After that you need the change in the scripts NQ15W02EasySwitchScript, NQ15W02MediumSwitchScript, NQ15W02HardSwitchScript
Theese lines have been added in the line 926:
if ( NQ15W02EnemyEndBossRef.GetDisabled == 1 )
NQ15W02EnemyEndBossRef.Enable
endif
Add theese three lines to every of the three scripts.
Something small arvisrend discovered:
There was a bug with the counter in the same three scripts.
You have had translated the %.0f with %.of, but %.0f is a message function not a word. So it has to be a zero not an o.
Here the right code in German again:
So change every %.of => %.0f 16 times in every of the three scripts.
The switch NQ15W02MediumSwitch was not translated, but maybe it is in the Japanese version already. That's it.
Also there was a major bug in our version 1.1.1.0.. You should change it in your version too.
First of all the script NQ15W02EnemyScript
Here is the full and correct script in German:
Code Select all
SCN NQ15W02EnemyScript
Short State
Float Timer
Float DeathTimer
Short DeathTime
Begin OnActivate
Return
End
Begin OnDeath
PlaySound "SPLAlterationHit"
PlaySound "NQ15EnemyDeathSound01"
Set State to 1
Disable
Resurrect
End
Begin GameMode
if ( State == 1 ) && ( GetDisabled == 1 )
Set Timer to Timer + GetSecondsPassed
if ( Timer >= 1 )
Enable
Set State to 0
Set Timer to 0
MoveTo "NQ15W02EnemyReturnMarkerRef"
endif
elseif ( State == 1 ) && ( GetDisabled == 0 )
Set State to 0
Set Timer to 0
endif
if ( NQ15W02.GameStarted == 0 ) && (State == 0 )
MoveTo "NQ15W02EnemyReturnMarkerRef"
endif
if ( State != 1 )
if ( GetDistance, Player <= 470 ) && ( NQ15W02.GameStarted == 1 )
Message "Zieht Euch zurück!"
endif
if ( GetDistance, Player <= 200 ) && ( NQ15W02.GameStarted == 1 )
Player.Kill
endif
endif
End
After that you need the change in the scripts NQ15W02EasySwitchScript, NQ15W02MediumSwitchScript, NQ15W02HardSwitchScript
Code Select all
; Wave 16 !!!!!!!!!!!!!!!!!! >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
if ( StartEnemyRushState == 32 )
Set NQ15W02.Wave16 to 1
PlaySound "AABoese03"
NQ15W02EnemyEndBossRef.SetAV Health 25000
NQ15W02EnemyEndBossRef.SetAV Speed 12
if ( NQ15W02EnemyEndBossRef.GetDisabled == 1 )
NQ15W02EnemyEndBossRef.Enable
endif
NQ15W02EnemyEndBossRef.MoveTo "NQ15W02EnemyEnterMarkerRef"
Set RemainingSec to 0
Set StartEnemyRushState to 33
elseif ( GetDeadCount "NQ15W02EnemyEndBoss" == NQ15W02.NeededEnemyDeath16Count +1) && ( StartEnemyRushState == 33 ) ; GameWonif ( NQ15W02EnemyEndBossRef.GetDisabled == 1 )
NQ15W02EnemyEndBossRef.Enable
endif
Add theese three lines to every of the three scripts.
Something small arvisrend discovered:
There was a bug with the counter in the same three scripts.
You have had translated the %.0f with %.of, but %.0f is a message function not a word. So it has to be a zero not an o.
Here the right code in German again:
Code Select all
if remainingSec > 0
message "Noch %.0f Sekunden, bis die 2. Gegnerwelle eintrifft!", remainingSec, 1
elseThe switch NQ15W02MediumSwitch was not translated, but maybe it is in the Japanese version already. That's it.
I'm sorry! I made a stupid mistake. I knew about that, but when translating the texts, I have made it "%.of" carelessly.
Since the same mistake is also in "NQ15W02Turret01SCRIPT", I will report this to arvisrend. There is no such problem at my Japanese version.
And thank you for reporting a major bug and its correction method. I just finished correcting the portion now.
Then, I would like to reconfirm in the scripts NQ15W02EasySwitchScript, NQ15W02MediumSwitchScript, NQ15W02HardSwitchScript.
"Set RemainingSec to 0" of the line 931 also needs change for 0 from 10?
And if you would like to see, the Japanese signs and maps are downloadable on the following URL.
http://www.mediafire.com/download.php?ran7lcll9apr5pj
Since the same mistake is also in "NQ15W02Turret01SCRIPT", I will report this to arvisrend. There is no such problem at my Japanese version.
And thank you for reporting a major bug and its correction method. I just finished correcting the portion now.
Then, I would like to reconfirm in the scripts NQ15W02EasySwitchScript, NQ15W02MediumSwitchScript, NQ15W02HardSwitchScript.
"Set RemainingSec to 0" of the line 931 also needs change for 0 from 10?
And if you would like to see, the Japanese signs and maps are downloadable on the following URL.
http://www.mediafire.com/download.php?ran7lcll9apr5pj
Our Japanese version came to be equipped with the Japanese launcher now by work of Hoxyd!
And changelog is exhibited by the following URL.
http://www.sureai.net/support/changelogs/
Thank you Hoxyd!
And changelog is exhibited by the following URL.
http://www.sureai.net/support/changelogs/
Thank you Hoxyd!
Awesome work Fujisan! I will add this today to the sites. Thanks for all the effort.
Edit: Oh, wait. Where is the link again to the actual version?
Edit: Oh, wait. Where is the link again to the actual version?
Oh, sorry. The actual link place of my Japanese version is as follows.
http://www.4shared.com/file/e3SXWLmv/Ne ... J_011.html
And another translator's version has been also updated to the current version.
(These two versions differ in some text expressions.)
Regards
Fujisan
Edit :
The download place of the launcher simple substance was arranged.
It is the following URL.
http://www.4shared.com/file/qW7Vs2dD/Ne ... 11_JP.html
http://www.4shared.com/file/e3SXWLmv/Ne ... J_011.html
And another translator's version has been also updated to the current version.
(These two versions differ in some text expressions.)
Regards
Fujisan
Edit :
The download place of the launcher simple substance was arranged.
It is the following URL.
http://www.4shared.com/file/qW7Vs2dD/Ne ... 11_JP.html
I'm very happy for today is a very impressive day. Now, the Japanese version has an update installer.
http://www.4shared.com/file/cEcK4aGg/Ne ... 11_JP.html
What a size of this file! This is the favor of Hoxyd altogether. Thanks a million, Hoxyd!
cheers,
Fujisan
http://www.4shared.com/file/cEcK4aGg/Ne ... 11_JP.html
What a size of this file! This is the favor of Hoxyd altogether. Thanks a million, Hoxyd!
cheers,
Fujisan
Hi Fujisan, long time no see.
Without my knowing it, you seem to have finished a japanese installer.
You must be tired.
As a person who has translated most of Nehrim itself and its website,
I prefered you to let me know it...
By the way, it seems a download-link to my strage is deleted.
Without my knowing it, you seem to have finished a japanese installer.
You must be tired.
As a person who has translated most of Nehrim itself and its website,
I prefered you to let me know it...
By the way, it seems a download-link to my strage is deleted.
Hi Inago
1) To be sure, you made most translations of the German version and my Japanese version uses it considerably. I wrote that to my readme text and I express gratitude to you again here.
But you know, my version also includes many parts which I translated from the version of English and German, and as a result, my version differs from your version clearly.
And the offer of a Japanese version installer is to my version, and is based on the kindness to me of Hoxyd. Please read and understand the flow of this thread.
2) I don't know that the download link of your version were removed. As mentioned above, I wrote that your version was similarly updated.
Therefore, I never thought that the download link of your version would be removed.
But I think that it is a regrettable thing, hence I will ask Hoxyd so that your download link may revive.
1) To be sure, you made most translations of the German version and my Japanese version uses it considerably. I wrote that to my readme text and I express gratitude to you again here.
But you know, my version also includes many parts which I translated from the version of English and German, and as a result, my version differs from your version clearly.
And the offer of a Japanese version installer is to my version, and is based on the kindness to me of Hoxyd. Please read and understand the flow of this thread.
2) I don't know that the download link of your version were removed. As mentioned above, I wrote that your version was similarly updated.
Therefore, I never thought that the download link of your version would be removed.
But I think that it is a regrettable thing, hence I will ask Hoxyd so that your download link may revive.
Hi, Hoxyd
Thanks for your upload.
This will give us, Nehrim players in Japan, accessibility to both download links.
Please leave it as it is now temporarily.
By the way, you intend not to keep german-version in the options for japanese players?
Thanks again.
>>Fujisan
ummm... I don't want to argue with you.
I think, very difference you made may muddy the waters.
I don't want to talk about "should have" or "what if",
but you should have kept it merely "Cytosine-version of Inago's translation" consistently.
And you said "because I thought it would make Inago feel bad", on 2ch.
If you think really so, you should tell me as soon as possible.
I'm afraid... your very doing and saying make me feel slighted and "feel bad".
Thanks for your upload.
This will give us, Nehrim players in Japan, accessibility to both download links.
Please leave it as it is now temporarily.
By the way, you intend not to keep german-version in the options for japanese players?
Thanks again.
>>Fujisan
ummm... I don't want to argue with you.
I think, very difference you made may muddy the waters.
I don't want to talk about "should have" or "what if",
but you should have kept it merely "Cytosine-version of Inago's translation" consistently.
And you said "because I thought it would make Inago feel bad", on 2ch.
If you think really so, you should tell me as soon as possible.
I'm afraid... your very doing and saying make me feel slighted and "feel bad".
Hey Inago...
I did my best for you. I asked Hoxyd for solution of the problem about your removed link, and had it revived. Is your reaction to it "umm..."? I was able to believe my eyes hardly. Moreover, I was surprised reading your unjust description about my version. "I heard the some difference is shown in nouns."??? Don't pretend not to know. I explained the difference with my version and your version repeatedly. However, you are going to ignore my works.
And you say that there is still some dissatisfaction.
It would seem that you don't understand many things correctly. But, this thread is not a place which discusses our problem. If you would like to say something, send a mail direct to me in Japanese because both we are Japanese. As I recall, I have not got yet the reply of a mail sent before to you. Why do you dislike e-mail?
I did my best for you. I asked Hoxyd for solution of the problem about your removed link, and had it revived. Is your reaction to it "umm..."? I was able to believe my eyes hardly. Moreover, I was surprised reading your unjust description about my version. "I heard the some difference is shown in nouns."??? Don't pretend not to know. I explained the difference with my version and your version repeatedly. However, you are going to ignore my works.
And you say that there is still some dissatisfaction.
It would seem that you don't understand many things correctly. But, this thread is not a place which discusses our problem. If you would like to say something, send a mail direct to me in Japanese because both we are Japanese. As I recall, I have not got yet the reply of a mail sent before to you. Why do you dislike e-mail?




