Japanese Traslation for WiiMC
Home › Forums › Development › Japanese Traslation for WiiMC
- This topic is empty.
-
AuthorPosts
-
May 9, 2010 at 4:35 am #25395RudolfParticipant
1. fixed issues that ShowProgress and ShowAction msg is not translated.
2. updated jp.lang
I found some messages were refined, but some were degraded about r301 jp.lang updated by someone. 😐
so I merged and more refined. 😉by the way, I think It is necessary to implement some font check routine. (ex.md5 check)
I found that code dump screen occurs under some circumstances.
case1) failed downloading new font and corrupted font remained. (ex.0byte jp.ttf).
case2) change global language to the other needed new font not online.1. patch
--- menu.cpp
+++ menu.cpp.new
@@ -1001,7 +1001,7 @@
if(showProgress != 1)
CancelAction(); // wait for previous progress window to finish
- snprintf(progressMsg, 200, "%s", msg);
+ snprintf(progressMsg, 200, "%s", gettext(msg));
sprintf(progressTitle, "Please Wait");
progressThreadHalt = 0;
showProgress = 1;
@@ -1029,7 +1029,7 @@
if(showProgress != 2)
CancelAction(); // wait for previous progress window to finish
- snprintf(progressMsg, 200, "%s", msg);
+ snprintf(progressMsg, 200, "%s", gettext(msg));
sprintf(progressTitle, "Please Wait");
progressThreadHalt = 0;
showProgress = 2;3. new jp.lang (r301fix)
-deleted-May 19, 2010 at 3:25 pm #25380RudolfParticipantI updated jp.lang. 🙂
jp_lang_r321.zip
– deleted –May 29, 2010 at 8:41 am #25396RudolfParticipantSynched with r335. 😉
jp(r335).zip
– deleted –May 29, 2010 at 11:18 am #25397RudolfParticipantHi Tantric,
How about adding these msgids?msgid “sec”
msgid “min”for r339 patch
--- menu.cpp
+++ menu.cpp.new
@@ -3200,7 +3200,7 @@
sprintf(options.value[4], "%s", WiiSettings.rumble ? "On" : "Off");
if(WiiSettings.sleepTimer > 0)
- sprintf(options.value[5], "%d min", WiiSettings.sleepTimer);
+ sprintf(options.value[5], "%d %s", WiiSettings.sleepTimer,gettext("min"));
else
sprintf(options.value[5], "Off");
@@ -3610,9 +3610,9 @@
sprintf (options.value[3], "Auto");
sprintf (options.value[4], "%d%%", WiiSettings.cacheFill);
- sprintf (options.value[5], "%.1f sec", WiiSettings.audioDelay);
+ sprintf (options.value[5], "%.1f %s", WiiSettings.audioDelay,gettext("sec"));
sprintf (options.value[6], "%s", WiiSettings.autoResume ? "On" : "Off");
- sprintf (options.value[7], "%d sec", WiiSettings.seekTime);
+ sprintf (options.value[7], "%d %s", WiiSettings.seekTime,gettext("sec"));
snprintf(options.value[8], 40, "%s", WiiSettings.videosFolder);
optionBrowser.TriggerUpdate();
@@ -3814,7 +3814,7 @@
firstRun = false;
snprintf(options.value[0], 40, "%s", WiiSettings.picturesFolder);
- sprintf(options.value[1], "%d sec", WiiSettings.slideshowDelay);
+ sprintf(options.value[1], "%d %s", WiiSettings.slideshowDelay,gettext("sec"));
optionBrowser.TriggerUpdate();
}
@@ -4863,7 +4863,7 @@
firstRun = false;
sprintf(options.value[0], "%s", WiiSettings.subtitleVisibility ? "On" : "Off");
- sprintf(options.value[1], "%.1f sec", WiiSettings.subtitleDelay);
+ sprintf(options.value[1], "%.1f %s", WiiSettings.subtitleDelay,gettext("sec"));
strcpy(options.value[2], languages[GetLangIndex()].language);
if(GetCodepageIndex() == 0)
sprintf(options.value[3], "Default");
May 29, 2010 at 9:43 pm #25398RudolfParticipantThank you for adopting my suggestion. 🙂
I synced jp.lang with r341.May 29, 2010 at 10:15 pm #25399rodriesKeymasterAnd thank you for contributing! 🙂
May 31, 2010 at 12:53 pm #25400RudolfParticipantsynced with r343. 🙂
June 18, 2010 at 1:52 pm #25401RudolfParticipantsynced with r371.
msgid "Browser Folders"
msgid "Lock to Current Setting"
msgid "Set to Last Browsed"
msgid "Audio Language"
June 22, 2010 at 1:07 pm #25402RudolfParticipantsynced with r377.
msgid "Static"
fix 😀
msgid "Set to Last Browsed"
->msgid "Use Last Browsed"
June 25, 2010 at 7:26 am #25403RudolfParticipantsynced with r381.
msgid "DVD Support"
msgid "Enabled"
July 8, 2010 at 6:28 am #25404theawesomenessguyParticipantThis translation is better than oden’s because some of his Japanese is literal translation.
To oden: You don’t have to use Katakana English so much.July 29, 2010 at 4:22 pm #25405RudolfParticipantOh! I can watch YouTube!
It’s really awesome 😀I synced with r433.
msgid "Error loading YouTube file!"
msgid "Rotate"
msgid "Resolution exceeds maximum allowed (1280x720)!"
– deleted –
jp(r433).zipAugust 1, 2010 at 8:17 am #25406RudolfParticipantsome minor fix for r433.
August 9, 2010 at 1:57 pm #25407RudolfParticipantsynced with r449.
msgid "The current IOS has been altered (fake-signed). Functionality and/or stability may be adversely affected."
August 12, 2010 at 1:58 pm #25408RudolfParticipantsynced with r452.
msgid "Online media file is invalid."
msgid "Subtitle font file not found. Subtitles will not be visible."
-
AuthorPosts
- You must be logged in to reply to this topic.