diff --git a/Apps/AppTypeCollection.cs b/Apps/AppTypeCollection.cs index 112d3031e..3c87a9c6f 100644 --- a/Apps/AppTypeCollection.cs +++ b/Apps/AppTypeCollection.cs @@ -1,9 +1,6 @@ using com.clusterrr.hakchi_gui.Properties; using System; -using System.Collections.Generic; using System.Drawing; -using System.Linq; -using System.Text; using System.Text.RegularExpressions; namespace com.clusterrr.hakchi_gui diff --git a/Apps/FdsGame.cs b/Apps/FdsGame.cs index 5f862cd8b..ed19e7980 100644 --- a/Apps/FdsGame.cs +++ b/Apps/FdsGame.cs @@ -1,10 +1,7 @@ #pragma warning disable 0108 -using com.clusterrr.hakchi_gui.Properties; using System; using System.Drawing; -using System.IO; using System.Text; -using System.Text.RegularExpressions; namespace com.clusterrr.hakchi_gui { diff --git a/Apps/GameGearGame.cs b/Apps/GameGearGame.cs index c07dd60b2..42f7e6276 100644 --- a/Apps/GameGearGame.cs +++ b/Apps/GameGearGame.cs @@ -1,6 +1,4 @@ #pragma warning disable 0108 -using com.clusterrr.hakchi_gui.Properties; -using System.Drawing; namespace com.clusterrr.hakchi_gui { diff --git a/Apps/GbcGame.cs b/Apps/GbcGame.cs index 49ba42eb8..49f7ec658 100644 --- a/Apps/GbcGame.cs +++ b/Apps/GbcGame.cs @@ -1,6 +1,4 @@ #pragma warning disable 0108 -using com.clusterrr.hakchi_gui.Properties; -using System.Drawing; namespace com.clusterrr.hakchi_gui { diff --git a/Apps/ISupportsGameGenie.cs b/Apps/ISupportsGameGenie.cs index 98803c6db..cd8b59b8b 100644 --- a/Apps/ISupportsGameGenie.cs +++ b/Apps/ISupportsGameGenie.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace com.clusterrr.hakchi_gui +namespace com.clusterrr.hakchi_gui { interface ISupportsGameGenie { diff --git a/Apps/SnesGame.cs b/Apps/SnesGame.cs index e0dbad223..24dc82a1d 100644 --- a/Apps/SnesGame.cs +++ b/Apps/SnesGame.cs @@ -16,7 +16,7 @@ public class SnesGame : NesMiniApplication, ICloverAutofill /*, ISupportsGameGen { public enum SnesRomType { LoRom = 0x14, HiRom = 0x15 }; - const string DefaultArgs = "--volume 100 -rollback-snapshot-period 600"; + const string DefaultCanoeArgs = "--volume 100 -rollback-snapshot-period 600"; static List SfxTypes = new List() { 0x13, 0x14, 0x15, 0x1a }; static List Dsp1Types = new List() { 0x03, 0x05 }; static List SA1Types = new List() { 0x34, 0x35 }; @@ -58,7 +58,7 @@ public enum SnesRomType { LoRom = 0x14, HiRom = 0x15 }; { "YOSSY'S ISLAND", 0x1243 }, { "FINAL FIGHT", 0x100E }, { "DIDDY'S KONG QUEST", 0x105D }, - { "KIRBY'S DREAM LAND 3", 0x10A2 }, + //{ "KIRBY'S DREAM LAND 3", 0x10A2 }, // Reported as problematic, using ID from Mario RPG { "BREATH OF FIRE 2", 0x1068 }, { "FINAL FIGHT 2", 0x10E1 }, { "MEGAMAN X2", 0x1117 }, @@ -174,7 +174,7 @@ public static bool Patch(string inputFileName, ref byte[] rawRomData, ref char p if (ConfigIni.ConsoleType == MainForm.ConsoleType.SNES || ConfigIni.ConsoleType == MainForm.ConsoleType.SuperFamicom) { application = "/bin/clover-canoe-shvc-wr -rom"; - args = DefaultArgs; + args = DefaultCanoeArgs; if (ext.ToLower() != ".sfrom") // Need to patch for canoe { Debug.WriteLine($"Trying to convert {inputFileName}"); diff --git a/Clovershell/ClovershellException.cs b/Clovershell/ClovershellException.cs index e6213b88f..ffa13e073 100644 --- a/Clovershell/ClovershellException.cs +++ b/Clovershell/ClovershellException.cs @@ -1,7 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; namespace com.clusterrr.clovershell { diff --git a/Clovershell/ShellConnection.cs b/Clovershell/ShellConnection.cs index f3833412e..acbcb42e7 100644 --- a/Clovershell/ShellConnection.cs +++ b/Clovershell/ShellConnection.cs @@ -1,7 +1,5 @@ using System; -using System.Collections.Generic; using System.Diagnostics; -using System.Linq; using System.Net.Sockets; using System.Text; using System.Threading; diff --git a/FoldersManagerForm.ja-JP.resx b/FoldersManagerForm.ja-JP.resx new file mode 100644 index 000000000..9a511aba5 --- /dev/null +++ b/FoldersManagerForm.ja-JP.resx @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + フォルダマネージャ + + + キャンセル + + + 均等に分配 + + + プリインストールされたゲーム -> 均等に分配 + + + 最初の文字で区切る + + + プリインストールされたゲーム -> 頭文字で分配 + + + 新しいフォルダー + + + フォルダーなし + + + プリインストールされたゲーム -> その他のゲーム + + + 切り取り + + + 削除 + + + メニューアイコン + + + フォルダ構造を自動で作成 + + + フォルダーの優先順位 + + + 新しいフォルダを作成 + + + 貼り付け + + + フォルダ名の変更 + + + Folder statistics + + \ No newline at end of file diff --git a/GameGenie/GameGenieFormatException.cs b/GameGenie/GameGenieFormatException.cs index baec65b9f..2e515d492 100644 --- a/GameGenie/GameGenieFormatException.cs +++ b/GameGenie/GameGenieFormatException.cs @@ -1,7 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; namespace com.clusterrr.hakchi_gui { diff --git a/GameGenie/GameGenieNotFoundException.cs b/GameGenie/GameGenieNotFoundException.cs index 8a879c589..d451e6195 100644 --- a/GameGenie/GameGenieNotFoundException.cs +++ b/GameGenie/GameGenieNotFoundException.cs @@ -1,7 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; namespace com.clusterrr.hakchi_gui { diff --git a/GameGenieCodeAddModForm.ja-JP.resx b/GameGenieCodeAddModForm.ja-JP.resx new file mode 100644 index 000000000..77d91e449 --- /dev/null +++ b/GameGenieCodeAddModForm.ja-JP.resx @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Game Genie コードを追加 + + + キャンセル + + + コード: + + + 説明: + + \ No newline at end of file diff --git a/GameGenieCodeForm.ja-JP.resx b/GameGenieCodeForm.ja-JP.resx new file mode 100644 index 000000000..33a15e789 --- /dev/null +++ b/GameGenieCodeForm.ja-JP.resx @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Game Genie コードリスト + + + 追加 + + + 追加 + + + キャンセル + + + インポート + + + 編集 + + + 削除 + + \ No newline at end of file diff --git a/ImageGooglerForm.ja-JP.resx b/ImageGooglerForm.ja-JP.resx new file mode 100644 index 000000000..5778bf111 --- /dev/null +++ b/ImageGooglerForm.ja-JP.resx @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Google画像検索 + + \ No newline at end of file diff --git a/MainForm.ca-ES.resx b/MainForm.ca-ES.resx index 4acb7e8fc..d25b83343 100644 --- a/MainForm.ca-ES.resx +++ b/MainForm.ca-ES.resx @@ -85,27 +85,48 @@ Sincronitzar els jocs seleccionats amb la NES/SNES Mini + + Comprimir + Ajuda/dreceres per als comandaments Comprimir jocs que no siguin de NES (Per a emuladors addicionals) + + Comprimir els jocs a l'hora d'afegir-los + + + Comprimir els jocs seleccionats + Tipus de consola Personalitzat -mostra la gestió de les carpetes tot el temps + + Descomprimir els jocs seleccionats + Eliminar joc Eliminar llista + + Eliminar els jocs seleccionats + Desactivar pàgines/carpetes + + Fer una donació + + + Baixar una caràtula per als jocs seleccionats + Descarregar caràtules per a tots els jocs @@ -155,7 +176,7 @@ GitHub: Pàgina amb les versions actuals - Línia de comandament global (Només per a usuaris experts) + Línia de comandament global (Només per a usuaris avançats) Pots ocultar alguns jocs predeterminats @@ -196,12 +217,21 @@ Nom: + + Tamany: + Idioma Nombre de jocs per pàgina/carpeta + + Iniciar el kernel original des de la RAM + + + Iniciar el kernel modificat des de la RAM + &Mòduls @@ -271,6 +301,9 @@ Fer una captura de pantalla + + Flashetjar tota la NAND (Només per a usuaris avançats) + &Eines @@ -292,37 +325,4 @@ Utilitza X/Y en el comandament Wii Classic Controller com "Autofire" A/B - - Compress - - - Compress games when adding - - - Compress selected games - - - Decompress selected games - - - Delete selected games - - - Donate - - - Download box art for selected games - - - Size: - - - Boot original kernel from RAM - - - Boot patched kernel from RAM - - - Flash the whole NAND (experts only!) - \ No newline at end of file diff --git a/MainForm.es-ES.resx b/MainForm.es-ES.resx index 426e96a36..f8598cb0d 100644 --- a/MainForm.es-ES.resx +++ b/MainForm.es-ES.resx @@ -85,27 +85,48 @@ Sincronizar los juegos seleccionados con NES/SNES Mini + + Comprimir + Ayuda/atajos para los mandos Comprimir juegos que no sean de NES (para emuladores adicionales) + + Comprimir juegos al añadirlos + + + Comprimir los juegos seleccionados + Tipo de consola Personalizado - muestra la gestión de las carpetas todo el tiempo + + Descomprimir los juegos seleccionados + Eliminar juego Eliminar lista + + Eliminar los juegos sleecionados + Desactivar páginas/carpetas + + Donar + + + Descargar carátulas para los juegos seleccionados + Descargar carátulas para todos los juegos @@ -196,12 +217,21 @@ Nombre: + + Tamaño: + Idioma Número de juegos por página/carpeta + + Iniciar el kernel original desde la RAM + + + Iniciar el kernel parcheado desde la RAM + &Módulos @@ -271,6 +301,9 @@ Realizar captura de pantalla + + Flash todo el NAND (sólo usuarios avanzados) + &Herramientas @@ -292,37 +325,4 @@ Usa X/Y en el mando Wii Classic Controller como Autofire A/B - - Compress - - - Compress games when adding - - - Compress selected games - - - Decompress selected games - - - Delete selected games - - - Donate - - - Download box art for selected games - - - Size: - - - Boot original kernel from RAM - - - Boot patched kernel from RAM - - - Flash the whole NAND (experts only!) - \ No newline at end of file diff --git a/MainForm.id-ID.resx b/MainForm.id-ID.resx index 01ce85874..ea3a915db 100644 --- a/MainForm.id-ID.resx +++ b/MainForm.id-ID.resx @@ -85,27 +85,48 @@ Sinkronkan game-game terpilih dengan NES/SNES Mini + + Kompres + Retasan kontroler Kompres game non-NES (untuk mod emulator tambahan) + + Kompres game saat menambahkan + + + Kompres game-game yang terpilih + Tipe konsol Custom - selalu perlihatkan Folders Manager + + Dekompres game-game yang terpilih + Hapus game Hapus pra-atur + + Hapus game-game yang terpilih + Nonaktifkan halaman/folder + + Donasi + + + Unduh box art untuk game terpilih + Unduh box art untuk semua game @@ -196,12 +217,21 @@ Nama: + + Ukuran: + Bahasa Game maksimum per halaman/folder + + Boot kernel orisinal dari RAM + + + Boot kernel yang di-patch dari RAM + &Modul @@ -271,6 +301,9 @@ Ambil screenshot + + Flash seluruh NAND (khusus ahli!) + &Tools @@ -292,37 +325,4 @@ Gunakan X/Y pada Classic Controller sebagai autofire A/B - - Compress - - - Compress games when adding - - - Compress selected games - - - Decompress selected games - - - Delete selected games - - - Donate - - - Download box art for selected games - - - Size: - - - Boot original kernel from RAM - - - Boot patched kernel from RAM - - - Flash the whole NAND (experts only!) - \ No newline at end of file diff --git a/MainForm.ja-JP.resx b/MainForm.ja-JP.resx new file mode 100644 index 000000000..7714453b0 --- /dev/null +++ b/MainForm.ja-JP.resx @@ -0,0 +1,328 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FTPサーバーアドレス ftp://root:clover@127.0.0.1:1021 + + + About... + + + 他のゲームを追加 (&G) + + + プリセットを作成 + + + プリインストールされたゲームをルートに配置 -> 自動でサブフォルダーに配置 + + + 自動 + + + ゲームの新規追加 + + + 参照 + + + 選択されたファイルを NES/SNES ミニ へ同期 + + + 圧縮 + + + コントローラーハック + + + 新しいゲームを追加した時に圧縮を指定する + + + 選択したゲームを圧縮 + + + コンソールタイプ + + + カスタム -フォルダーマネージャーを毎回表示 + + + 選択したゲームを解凍 + + + ゲームを削除 + + + プリセットを削除 + + + 選択したゲームを削除 + + + ページ/フォルダー を無効化 + + + 寄付 + + + 選択したゲームのパッケージ画像をダウンロード + + + 全てのゲームのカバー写真をダウンロード + + + カーネルをダンプ + + + 復号化されたNAND-Bパーティションをダンプ + + + NAND型フラッシュメモリ全体をダンプする + + + "Select+A/B"で連射モード(A,Bボタン) + + + てんかん予防を無効化(原色表示) + + + 終了(&E) + + + FAQ + + + ファイル(&F) + + + カスタムカーネルを書き込み + + + オリジナルカーネルを書き込み + + + プリインストールされたゲームをルートに配置 -> フォルダーとゲームを均等に分配 + + + プリインストールされたゲームをルートに配置 -> 頭文字ごとにフォルダーを生成 + + + フォルダー, 頭文字で分配 + + + フォルダー, 均等にゲームを分配 + + + Githubで最新のリリースを確認 + + + グローバルコマンドライン引数 (上級者向け) + + + プリインストールされたゲームを非表示にできます + + + ゲームオプション + + + ヘルプ(&H) + + + 拡張モジュールをインストール + + + カーネル(&K) + + + 発売日 (YYYY-MM-DD): + + + パブリッシャー: + + + コマンドライン(上級者向け): + + + パッケージ画像: + + + ゲームを選択: + + + プレイ人数: + + + Game Genie コード(カンマ区切り): + + + ゲーム名: + + + 容量: + + + 言語 + + + 1ページに表示する最大ゲーム数 + + + オリジナルカーネルをRAMから起動 + + + パッチされたカーネルをRAMから起動する + + + モジュール(&M) + + + FTPクライアントを開く + + + ゲームのパッケージ画像を選択 + + + ゲームを選択 + + + Telnetクライアントを開く + + + プリインストールされたゲームをルートに配置 -> ページとゲームを均等に分配 + + + ページとゲームを分配 + + + ページ/フォルダー 構造 + + + プリセットを選択 + + + 1人プレイ + + + 2人交互プレイ + + + 2人同時プレイ + + + コマンド入力でリセットする + + + ダンプ先のファイル名を指定 + + + 設定をファミコン/スーファミ ミニへセーブ + + + セーブステート マネージャー + + + 検索 + + + 全て選択 + + + リセットボタンにするコマンドを選択 + + + 設定(&S) + + + Telnetサーバーアドレス telnet://127.0.0.1:1023 (login:root) + + + 同期 + + + スクリーンショットを撮る + + + NAND全体をダンプ(上級者向け) + + + ツール(&T) + + + 拡張モジュールをアンインストールする + + + アンインストール + + + 全て選択解除 + + + 2コンでStartボタン"十字キー上+A+B"(海外ソフト用) + + + 拡張フォントを使用する + + + クラシックコントローラーの X/Yボタン で A/Bボタンの連射入力 + + + Compress non-NES games (for additional emulator mod) + + \ No newline at end of file diff --git a/MainForm.nl.resx b/MainForm.nl.resx index 1459c785a..cce75c9d9 100644 --- a/MainForm.nl.resx +++ b/MainForm.nl.resx @@ -95,7 +95,7 @@ Comprimeer de niet-NES spellen (als je een extra emulator hebt geïnstalleerd) - Comprimeer spellen bij toevoegen + Comprimeer de spellen tijdens het toevoegen Comprimeer geselecteerde spellen @@ -134,7 +134,7 @@ Kernel opslaan - Dump gedecodeerde NAND-B partitie + Dump de gedecodeerde NAND-B partitie Dump de gehele NAND flash @@ -227,10 +227,10 @@ Maximaal aantal spellen per pagina/map - Start originele kernel vanaf RAM + Start de originele kernel vanaf RAM - Start gepatchde kernel vanaf RAM + Start de gepatchde kernel vanaf RAM &Modules @@ -239,7 +239,7 @@ Open FTP client - Selecteer verpakkingsafbeelding voor het spel + Selecteer een verpakkingsafbeelding voor het spel Geselecteerde spellen: @@ -272,7 +272,7 @@ Gebruik een knop combinatie om te resetten - Selecteer bestandsnaam voor dump + Selecteer de bestandsnaam voor dump Bewaar nu de instelling op de NES/SNES Mini diff --git a/MainForm.zh-CHS.resx b/MainForm.zh-CHS.resx index ebf2681f8..8c919ae47 100644 --- a/MainForm.zh-CHS.resx +++ b/MainForm.zh-CHS.resx @@ -85,27 +85,48 @@ 将选中的游戏同步到迷你红白机 + + 压缩 + 手柄强化功能 压缩非红白机游戏 ( 如其他仿真器的扩充模块 ) + + 添加游戏时进行压缩 + + + 压缩选中的游戏 + 主机型号 自定义 - 每次均显示文件夹管理器 + + 解压缩选中的游戏 + 删除游戏 删除预设组 + + 删除选中的游戏 + 禁用分页/文件夹 + + 捐款 + + + 为选中的游戏下载包装图片 + 下载所有游戏的包装图片 @@ -196,12 +217,21 @@ 名称: + + 大小: + 语言 单个页面/文件夹显示的游戏最大数量 + + 从内存运行原版内核 + + + 从内存运行修改版内核 + 扩展模块(&M) @@ -271,6 +301,9 @@ 截取屏幕截图 + + 刷写整个闪存(仅限专业用户使用!) + 工具(&T) @@ -292,37 +325,4 @@ 将经典控制器的X/Y按钮用作连发A/B键 - - Compress - - - Compress games when adding - - - Compress selected games - - - Decompress selected games - - - Delete selected games - - - Donate - - - Download box art for selected games - - - Size: - - - Boot original kernel from RAM - - - Boot patched kernel from RAM - - - Flash the whole NAND (experts only!) - \ No newline at end of file diff --git a/NesDefaultGame.cs b/NesDefaultGame.cs index b3ee8c048..8260171ec 100644 --- a/NesDefaultGame.cs +++ b/NesDefaultGame.cs @@ -1,5 +1,4 @@ - -namespace com.clusterrr.hakchi_gui +namespace com.clusterrr.hakchi_gui { public class NesDefaultGame : INesMenuElement { diff --git a/NesMenuFolder.cs b/NesMenuFolder.cs index 494ef5013..3dd25b890 100644 --- a/NesMenuFolder.cs +++ b/NesMenuFolder.cs @@ -4,7 +4,6 @@ using System.Drawing.Imaging; using System.IO; using System.Resources; -using System.Windows.Forms; namespace com.clusterrr.hakchi_gui { diff --git a/Properties/Resources.bg-BG.resx b/Properties/Resources.bg-BG.resx index daedafd10..710e023b0 100644 --- a/Properties/Resources.bg-BG.resx +++ b/Properties/Resources.bg-BG.resx @@ -403,6 +403,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + First, dump the kernel image of your NES/SNES Mini. You only need to do this once. Do you want to continue? diff --git a/Properties/Resources.ca-ES.resx b/Properties/Resources.ca-ES.resx index bfdc904ce..bc69df1b1 100644 --- a/Properties/Resources.ca-ES.resx +++ b/Properties/Resources.ca-ES.resx @@ -79,9 +79,18 @@ Creant l'estructura de les carpetes... + + Comprimint {0}... + + + Comprimint jocs... + Enhorabona! + + Caràtula + Custom kernel @@ -91,6 +100,12 @@ Ara teniu que flashetjar el custom kernel. + + Descomprimint {0}... + + + Descomprimint jocs... + Jocs originals @@ -109,6 +124,9 @@ Voleu eliminar els punts de suspensió seleccionats? + + Eliminar els jocs seleccionat(s)? + Voleu cancel·lar la operació actual? @@ -127,6 +145,9 @@ Descarregant caràtules para tots els jocs + + Voleu probar a baixar la cartaula per al joc + Voleu bolcar el kernel? @@ -226,6 +247,9 @@ Instal·lant mòduls... + + Consola detectada invàlida! Consola detectada: + L'encapçalament del kernel no és vàlid @@ -248,7 +272,10 @@ Menú d'inici - Aquest joc, "{0}" fa servir el mapper #{1} i no es compatible amb la NES/SNES Mini, és probable que no iniciï amb el emulador predeterminat, però deuria funcionar si teniu un mòdul extra instal·lat d'un altre emulador. Voleu afegir aquest joc? + Aquest joc, "{0}" fa servir el mapper #{1} i no es compatible amb la NES Mini, és probable que no iniciï amb el emulador predeterminat, però deuria funcionar si teniu un mòdul extra instal·lat d'un altre emulador. Voleu afegir aquest joc? + + + Iniciant el kernel des de la RAM... Hi ha {0} MB en jocs, és molt i podria donar error en sincronitzar, és recomanable alliberar memòria @@ -304,6 +331,12 @@ Premeu Ok per continuar + + Eliminant {0}... + + + Eliminant jocs + Ja has realitzat el bolcat del kernel. Si realment voleu reemplaçar la copia de seguretat del teu kernel i entens el que esteu fent, borra la carpeta "hakchi2/dump" @@ -322,6 +355,9 @@ Selecciona els mòduls que vols eliminar de la NES/SNES Mini + + Tamany: + Grandària total dels punts de suspensió seleccionats: @@ -379,40 +415,7 @@ Sí per tots - - Compressing {0}... - - - Compressing games... - - - Box art - - - Decompressing {0}... - - - Decompressing games... - - - Delete selected game(s)? - - - Do you want to try to download box art for "{0}"? - - - Invalid console selected! Detected console: - - - Booting the kernel from RAM... - - - Removing {0}... - - - Removing games... - - - Size: + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? \ No newline at end of file diff --git a/Properties/Resources.da-DK.resx b/Properties/Resources.da-DK.resx index defc877fa..3118f3ec2 100644 --- a/Properties/Resources.da-DK.resx +++ b/Properties/Resources.da-DK.resx @@ -137,7 +137,7 @@ Kernen er allerede patched eller den er ukendt - Beklager, "{0}" bruger mapper #{1}, men denne mapper understøttes ikke af NES/SNES Mini, og spillet vil sandsynligvis ikke starte med standard emulatoren. Men det skulle fungere, hvis en anden emulator modul installeres. Vil du tilføje dette spil? + Beklager, "{0}" bruger mapper #{1}, men denne mapper understøttes ikke af NES Mini, og spillet vil sandsynligvis ikke starte med standard emulatoren. Men det skulle fungere, hvis en anden emulator modul installeres. Vil du tilføje dette spil? Ingen kerne dump fundet @@ -334,6 +334,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + New games are moved to the "Unsorted" folder. diff --git a/Properties/Resources.de-DE.resx b/Properties/Resources.de-DE.resx index bb849f730..0dae75925 100644 --- a/Properties/Resources.de-DE.resx +++ b/Properties/Resources.de-DE.resx @@ -266,7 +266,7 @@ HOME Menü - Entschuldige, "{0}" benutzt Mapper #{1}, aber dieser wird vom NES/SNES Mini nicht unterstützt und das Spiel wird wahrscheinlich mit dem Standard Emulator nicht starten. Es könnte funktionieren, wenn ein anderer Emulator installiert ist. Möchtest du das Spiel trotzdem hinzufügen? + Entschuldige, "{0}" benutzt Mapper #{1}, aber dieser wird vom NES Mini nicht unterstützt und das Spiel wird wahrscheinlich mit dem Standard Emulator nicht starten. Es könnte funktionieren, wenn ein anderer Emulator installiert ist. Möchtest du das Spiel trotzdem hinzufügen? Lade Kernel von RAM... @@ -415,4 +415,7 @@ Do you want to try to download box art for "{0}"? + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + \ No newline at end of file diff --git a/Properties/Resources.el-GR.resx b/Properties/Resources.el-GR.resx index 38b54f9e6..f6dd3ef18 100644 --- a/Properties/Resources.el-GR.resx +++ b/Properties/Resources.el-GR.resx @@ -245,7 +245,7 @@ ΑΡΧΙΚΟ Μενού - Λυπάμαι, το "{0}" χρησιμοποιεί τον mapper #{1} ο οποίος δεν υποστηρίζεται από το NES/SNES Mini και το παιχνίδι πιθανόν δεν θα ξεκινήσει με τον προκαθορισμένο εξομοιωτή. Πρέπει όμως να δουλέψει αν έχει εγκατασταθεί το module άλλων εξομοιωτών. Θέλετε να προσθέσετε αυτό το παιχνίδι; + Λυπάμαι, το "{0}" χρησιμοποιεί τον mapper #{1} ο οποίος δεν υποστηρίζεται από το NES Mini και το παιχνίδι πιθανόν δεν θα ξεκινήσει με τον προκαθορισμένο εξομοιωτή. Πρέπει όμως να δουλέψει αν έχει εγκατασταθεί το module άλλων εξομοιωτών. Θέλετε να προσθέσετε αυτό το παιχνίδι; Λυπάμαι, υπάρχουν "{0}"Mbytes με παιχνίδια, είναι πάρα πολλά. @@ -406,6 +406,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + Removing {0}... diff --git a/Properties/Resources.en-GB.resx b/Properties/Resources.en-GB.resx index 9d1679be8..b9282b792 100644 --- a/Properties/Resources.en-GB.resx +++ b/Properties/Resources.en-GB.resx @@ -267,7 +267,7 @@ click "Synchronise" and follow the instructions. Good luck! Root - Sorry, "{0}" uses mapper #{1}, which is not supported by the NES/SNES Mini's built in emulator. However, it will probably work with external emulator mods. Continue? + Sorry, "{0}" uses mapper #{1}, which is not supported by the NES Mini's built in emulator. However, it will probably work with external emulator mods. Continue? Booting the kernel from RAM... @@ -416,4 +416,7 @@ click "Synchronise" and follow the instructions. Good luck! Do you want to try to download box art for "{0}"? + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + \ No newline at end of file diff --git a/Properties/Resources.es-AR.resx b/Properties/Resources.es-AR.resx index 182eaa995..470d112ac 100644 --- a/Properties/Resources.es-AR.resx +++ b/Properties/Resources.es-AR.resx @@ -415,4 +415,7 @@ Do you want to try to download box art for "{0}"? + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + \ No newline at end of file diff --git a/Properties/Resources.es-ES.resx b/Properties/Resources.es-ES.resx index 0ff829763..9ba962b31 100644 --- a/Properties/Resources.es-ES.resx +++ b/Properties/Resources.es-ES.resx @@ -79,9 +79,18 @@ Creando la estructura de las carpetas... + + Comprimiendo {0}... + + + Comprimiendo juegos... + ¡Enhorabuena! + + Carátula + Custom kernel @@ -89,10 +98,16 @@ ¿Quieres flashear el custom kernel? - Ahora tienes que flashear el custom kernel. Esta acción sólo es necesaria realizarla una vez. ¿Quieres continuar? + Necesitas flashear el custom kernel de tu NES/SNES Mini. Esta acción sólo es necesaria realizarla una vez. ¿Quieres continuar? + + + Descomprimir {0}... + + + Descomprimiendo juegos - xx juegos originales + Juegos originales ¿Quieres eliminar "{0}"? @@ -109,6 +124,9 @@ ¿Quieres eliminar los puntos de suspensión seleccionados? + + ¿Eliminar juego(s) seleccionado(s)? + ¿Quieres cancelar la operación actual? @@ -127,6 +145,9 @@ Descargando carátulas para todos los juegos + + ¿Quieres intentar descargar la carátula para "{0}"? + ¿Quieres volcar el kernel? @@ -170,7 +191,7 @@ Nueva carpeta - xx juegos originales + Juegos originales Papelera de reciclaje @@ -226,6 +247,9 @@ Instalando módulos... + + La consola seleccionada no es válida. Consola detectada: + El encabezado del kernel no es válido @@ -248,7 +272,10 @@ Menú de inicio - Este juego, "{0}" usa mapeador #{1} y no es compatible con la NES/SNES Mini, es probable que no inicie con el emulador predeterminado, pero debería funcionar si tienes un módulo extra instalado de otro emulador. ¿Quieres añadir este juego? + Este juego, "{0}" usa mapeador #{1} y no es compatible con la NES Mini, es probable que no inicie con el emulador predeterminado, pero debería funcionar si tienes un módulo extra instalado de otro emulador. ¿Quieres añadir este juego? + + + Iniciando el kernel desde la RAM... Hay {0} MB en juegos, es mucho y podría dar error al sincronizar, es recomendable liberar memoria @@ -304,6 +331,12 @@ Presiona Ok para continuar + + Eliminar {0}... + + + Eliminando juegos... + Ya has realizado el volcado del kernel. Si realmente quieres reemplazar la copia de seguridad de tu kernel y entiendes lo que estás haciendo, borra la carpeta "hakchi2/dump" manualmente @@ -322,6 +355,9 @@ Selecciona los módulos que quieres eliminar de la NES/SNES Mini + + Tamaño: + Tamaño total de los puntos de suspensión seleccionados: @@ -379,40 +415,7 @@ Sí para todos - - Compressing {0}... - - - Compressing games... - - - Box art - - - Decompressing {0}... - - - Decompressing games... - - - Delete selected game(s)? - - - Do you want to try to download box art for "{0}"? - - - Invalid console selected! Detected console: - - - Booting the kernel from RAM... - - - Removing {0}... - - - Removing games... - - - Size: + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? \ No newline at end of file diff --git a/Properties/Resources.fi-FI.resx b/Properties/Resources.fi-FI.resx index bfb0712a1..27f241d4a 100644 --- a/Properties/Resources.fi-FI.resx +++ b/Properties/Resources.fi-FI.resx @@ -248,7 +248,7 @@ Päävalikko - Valitettavasti "{0}" käyttää mapperia #{1}, jota NES/SNES Mini ei tue ja peli ei luultavasti käynnisty oletusemulaattorilla. Sen pitäisi kuitenkin toimi lisäemulaattorimoduuli asennettuna. Haluatko lisätä pelin? + Valitettavasti "{0}" käyttää mapperia #{1}, jota NES Mini ei tue ja peli ei luultavasti käynnisty oletusemulaattorilla. Sen pitäisi kuitenkin toimi lisäemulaattorimoduuli asennettuna. Haluatko lisätä pelin? Valitettavasti {0} megatavua pelejä on liikaa. @@ -406,6 +406,9 @@ Booting the kernel from RAM... + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + Removing {0}... diff --git a/Properties/Resources.fr-FR.resx b/Properties/Resources.fr-FR.resx index 7e572578b..c5ac59014 100644 --- a/Properties/Resources.fr-FR.resx +++ b/Properties/Resources.fr-FR.resx @@ -266,7 +266,7 @@ Menu principal - Désolé, "{0}" utilise le mapper #{1} mais ce mapper n'est pas supporté par la NES/SNES Mini et le jeu ne va probablement pas démarrer avec l'émulateur par defaut. Mais cela peut fonctionner si d'autres modules émulateurs sont installés. Voulez-vous ajouter ce jeu? + Désolé, "{0}" utilise le mapper #{1} mais ce mapper n'est pas supporté par la NES Mini et le jeu ne va probablement pas démarrer avec l'émulateur par defaut. Mais cela peut fonctionner si d'autres modules émulateurs sont installés. Voulez-vous ajouter ce jeu? Démarrer le kernel à partir du RAM @@ -415,4 +415,7 @@ Do you want to try to download box art for "{0}"? + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + \ No newline at end of file diff --git a/Properties/Resources.id-ID.resx b/Properties/Resources.id-ID.resx index 889c69ac7..9cdd74db9 100644 --- a/Properties/Resources.id-ID.resx +++ b/Properties/Resources.id-ID.resx @@ -79,9 +79,18 @@ Membangun Folders Structure... + + Mengkompres {0}... + + + Mengkompres game... + Selamat! + + Box art + Kernel custom @@ -91,6 +100,12 @@ Sekarang Anda harus mem-flash kernel custom ke NES/SNES Mini. Ini hanya perlu dilakukan sekali saja. Apakah Anda ingin melanjutkan? + + Mendekompres {0}... + + + Mendekompres game... + xx game orisinal @@ -109,6 +124,9 @@ Apakah Anda ingin menghapus Save State tersebut? + + Hapus game terpilih? + Apakah Anda ingin membatalkan operasi ini? @@ -127,6 +145,9 @@ Unduh box art untuk semua game (Saya lagi beruntung!) + + Apakah Anda ingin mengunduh box art untuk "{0}"? + Apakah Anda ingin men-dump kernel? @@ -226,6 +247,9 @@ Menginstal mod... + + Konsol yang dipilih invalid! Konsol yang terdeteksi: + Header kernel tidak valid. @@ -248,7 +272,10 @@ Menu Home - Maaf, "{0}" menggunakan mapper #{1} tetapi mapper ini tidak didukung oleh NES/SNES Mini dan game ini mungkin tidak akan dapat dimainkan dengan emulator bawaan, kecuali jika modul emulator lain diinstal. Apakah Anda tetap ingin menambahkan game ini? + Maaf, "{0}" menggunakan mapper #{1} tetapi mapper ini tidak didukung oleh NES Mini dan game ini mungkin tidak akan dapat dimainkan dengan emulator bawaan, kecuali jika modul emulator lain diinstal. Apakah Anda tetap ingin menambahkan game ini? + + + Mem-boot kernel dari RAM... Maaf, jumlah game Anda saat ini adalah {0}MB, terlalu banyak untuk disimpan. @@ -304,6 +331,12 @@ Tekan OK untuk melanjutkan. + + Menghapus {0}... + + + Menghapus game... + Anda sudah mempunyai dump kernel. Jika Anda BENAR-BENAR ingin mengganti dump cadangan Anda dan tahu BENAR apa yang Anda lakukan, hapus folder "hakchi2/dump" secara manual. @@ -322,6 +355,9 @@ Pilih modul yang akan dicopot dari NES/SNES Mini + + Ukuran: + Ukuran Save State yang dipilih @@ -371,7 +407,7 @@ Peringatan! - Wow + Wow! Ya @@ -379,40 +415,7 @@ Ya untuk semua - - Compressing {0}... - - - Compressing games... - - - Box art - - - Decompressing {0}... - - - Decompressing games... - - - Delete selected game(s)? - - - Do you want to try to download box art for "{0}"? - - - Invalid console selected! Detected console: - - - Booting the kernel from RAM... - - - Removing {0}... - - - Removing games... - - - Size: + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? \ No newline at end of file diff --git a/Properties/Resources.it-IT.resx b/Properties/Resources.it-IT.resx index 4aab473ad..f5447860f 100644 --- a/Properties/Resources.it-IT.resx +++ b/Properties/Resources.it-IT.resx @@ -88,6 +88,9 @@ Congratulazioni! + + Copertina + Kernel modificato @@ -142,6 +145,9 @@ Scarica le copertine per tutti i giochi (mi sento fortunato!) + + Vuoi provare a scaricare la copertina per "{0}"? + Vuoi dumpare il kernel? @@ -266,7 +272,7 @@ Menu HOME - Mi dispiace, ma "{0}" utilizza il mapper #{1} e questo mapper non è supportato dal NES/SNES Mini ed il gioco probabilmente non partirà con l'emulatore originale di default. Dovrebbe invece funzionare se si è installato il modulo di un altro emulatore. Vuoi aggiungere il gioco comunque? + Mi dispiace, ma "{0}" utilizza il mapper #{1} e questo mapper non è supportato dal NES Mini ed il gioco probabilmente non partirà con l'emulatore originale di default. Dovrebbe invece funzionare se si è installato il modulo di un altro emulatore. Vuoi aggiungere il gioco comunque? Avvio del kernel dalla RAM... @@ -280,6 +286,9 @@ Memoria NAND dumpata con successo. + + Oops, "{0}" potrebbe non funzionare correttamente con l'emulatore originale. Vuoi utilizzare un emulatore non originale per questo gioco (deve essere installato)? + I nuovi giochi sono stati spostati nella cartella "Unsorted". @@ -409,10 +418,4 @@ Si per tutti - - Box art - - - Do you want to try to download box art for "{0}"? - \ No newline at end of file diff --git a/Properties/Resources.ja-JP.resx b/Properties/Resources.ja-JP.resx new file mode 100644 index 000000000..b1fcf5746 --- /dev/null +++ b/Properties/Resources.ja-JP.resx @@ -0,0 +1,421 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ゲームを処理しています, しばらくお待ちください... + + + 全てのファイル + + + よろしいですか? + + + {0}個のゲームデータが自動的に入力されました + + + Select+A/B 長押しで A/B ボタンの連射を有効化/無効化 + + + カスタムカーネルを生成しています... + + + フォルダー構造を構築しています... + + + {0}を圧縮しています... + + + ゲームを圧縮しています... + + + おめでとう! + + + パッケージ画像 + + + カスタムカーネル + + + カスタムカーネルを書き込みしてもよろしいですか? + + + 最初に1度、カスタムカーネルをファミコン/スーファミ ミニに書き込む必要があります。続けますか? + + + {0}を解凍しています... + + + ゲームを解凍しています... + + + プリインストールされたゲーム + + + 本当に "{0}" を削除しますか? + + + 本当に{0}個の要素を削除しますか? + + + 本当に "{0}" を削除しますか? + + + 本当にプリセット "{0}" を削除しますか? + + + 本当にこれらのセーブステートを削除しますか? + + + 選択したゲームを削除しますか? + + + この操作をキャンセルしてもよろしいですか? + + + 続行してもよろしいですか? + + + あなたさえ良ければ、私に寄付をすることができます。私のPayPalへのリンクは"About"内にあります。 + + + 完了! + + + 完了! ファミコン/スーファミ ミニ にゲームをアップロードすることができます. + + + パッケージ写真をダウンロード(Google I'm Feeling Luckyを使用) + + + "{0}"のパッケージ写真のダウンロードを試みますか? + + + カーネルをダンプしてもよろしいですか? + + + カーネルをダンプしています... + + + NANDをダンプしています... + + + エラー + + + コマンド実行: + + + プリインストールされたゲームを含む、全てのゲームにグローバルコマンド引数を追加することができます。これは上級者向けの設定です。 + + + 拡張コマンドライン引数 + + + こんにちは! hakchi2をご使用いただきありがとうございます。 使い方はとても簡単です。 「ゲームの新規追加」をクリックし、追加したいROMを選択し、「同期」を押して指示に従ってください。 + + + カスタムカーネルを書き込み中... + + + オリジナルカーネルを書き込み中... + + + 削除されたコンテンツはゴミ箱に移動されます。ゴミ箱から完全に削除するか、他のフォルダに移すことが可能です。 + + + 戻る + + + その他のゲーム... + + + 新しいフォルダー + + + プリインストールされたゲーム + + + ゴミ箱 + + + 未分類 + + + "{0}" フォルダーには {1}個の要素が含まれています。 + + + このフォルダー構造を保存しますか? + + + 残念ですが {0} は4スクリーンモードを使用しています。(即ちカートリッジにVRAMメモリが追加されています。)この機能はファミコン/スーファミ ミニではサポートされておらず、デフォルトのエミュレーターでは起動しない可能性があります。他のエミュレーターのモジュールが追加されていれば動作する可能性があります。本当にこのゲームを追加しますか? + + + 本当にコード "{0}" を削除しますか? + + + コードを入力する必要があります! + + + このコードは既に存在します。編集しますか? + + + 説明を入力する必要があります! + + + "{1}" 用のGame Genieコード "{0}" が無効です。 + + + Game Genieコード "{0}" を "{1}" に適用できません。他のゲーム用のコードの可能性はありませんか? + + + ゲームとアプリ + + + 個のゲームが選択されています + + + Googleで検索 + + + こんにちは + + + 画像 + + + 現在選択されているゲームのプリセット名を入力してください。 + + + MODをインストールしています... + + + 間違ったコンソールが選択されています! 検出されたコンソール: + + + 無効なカーネルヘッダ. + + + 無効なカーネルサイズ: + + + オリジナルのカーネルを "hakchi2\dump" フォルダにダンプしました。大切に保管しておいてください。 + + + ゲームをロードしています... + + + カーネルのダンプに成功しました。未知のMD5チェックサムです: + + + このカーネルはすでにパッチが適用されているか、未知のリビジョンです。このメッセージが表示された場合はCtrl+Cで私に送ってください。この工程は自己責任で行ってください。 + + + HOME メニュー + + + "{0}" はマッパー #{1} を使用しています。このマッパーはファミコンミニでサポートされておらず、デフォルトのエミュレーターでは起動しない可能性があります。他のエミュレーターのモジュールが追加されていれば動作する可能性があります。本当にこのゲームを追加しますか? + + + カーネルをRAMから起動中... + + + 申し訳ありません。既に{0}メガバイトものゲームが追加されており、これ以上追加できません。 + + + 書き込み可能メモリ: {0:F1}MBytes|ゲームに使用可能なメモリ: {1:F1}MBytes|セーブデータで使用中: {2:F1}MBytes|その他で使用中: {3:F1}MBytes + + + NANDは正常にダンプされました。 + + + "{0}"はデフォルトのエミュレーターでは正しく動作しないようです。他のエミュレーターを使用しますか? (別途インストールする必要があります。) + + + 新たに追加されたゲームは "未分類" フォルダーに移動されます。 + + + 新しく選択されたプリセット + + + いいえ + + + すべて "いいえ" + + + カーネルのダンプファイルが見つかりません + + + まず最初にファミコン/スーファミ ミニのカーネルイメージを本体から抽出する必要があります。この作業は1度は必ず行う必要があります。続けますか? + + + カーネルのダンプファイルが見つかりませんでした。最初にカーネルを本体から抽出する必要があります。 + + + Telnetクライアントを起動できません。無効になっているようです。 最初に有効にする必要があります。"コントロールパネル" -> "プログラム" -> "Windows の機能の有効化または無効化"からTalnetクライアントを有効化してください。 + + + 存在しない: + + + オリジナルカーネルを書き込んでもよろしいですか? + + + パッチが利用可能です + + + "{0}"のパッチがあります。このゲームにパッチを適用しますか? + + + この問題が解決しない場合は別のUSBケーブルを使用してみてください。 + + + しばらくお待ちください... + + + OKを押して続行します. + + + {0}を削除しています... + + + ゲームを削除しています... + + + 既にカーネルのダンプファイルが存在します。あなたが何をしようとしているのか理解をしていて、本当にバックアップを置き換えたいのであれば "hakchi2\dump" フォルダーを手動で削除してください。 + + + ファミコン/スーファミ ミニ セーブステート バックアップ + + + 少なくとも1つのゲームを選択してください + + + 少なくとも2つのボタンを選択してください。 + + + ファミコン/スーファミ ミニに追加するモジュールを選択してください。 + + + ファミコン/スーファミ ミニから削除するモジュールを選択してください。 + + + 容量: + + + 選択したセーブステートのサイズ: + + + すべての中断ポイントを削除する場合は工場出荷時の状態に初期化することを忘れないでください。 + + + 本当にhakchi2を削除してファミコン/スーファミ ミニを初期状態に戻しますか? + + + 完了しました。LEDランプが消灯するまで待機してください。また、オリジナルカーネルを書き込みする必要があります。今すぐ書き込みしますか? + + + アンインストール中... + + + MODをアンインストールしています... + + + 不明なゲーム + + + 新しい設定をアップロード中... + + + FES-1を実行/アップロードしています... + + + ゲームをアップロードしています... + + + カーネルをアップロードしています... + + + プリインストールされたゲームを処理しています... + + + 照合失敗 :O これは良くない. + + + 照合中... + + + デバイスを待機しています... + + + 警告! + + + Wow + + + はい + + + すべて "はい" + + \ No newline at end of file diff --git a/Properties/Resources.nl.resx b/Properties/Resources.nl.resx index 67ee43edb..b865d8334 100644 --- a/Properties/Resources.nl.resx +++ b/Properties/Resources.nl.resx @@ -89,7 +89,7 @@ Gefeliciteerd! - Verpakking + Verpakkingsafbeelding Aangepaste kernel @@ -170,7 +170,7 @@ Extra opdracht regel commando's - Hallo! Ik vind het fijn dat je Hakchi2 gebruikt. Het werkt simpel: Klik gewoon op “Meer spellen toevoegen”, selecteer wat ROMs, druk op ”Synchroniseren” en volg de instructies. Veel plezier! + Hallo! Ik vind het fijn dat je Hakchi2 gebruikt. Het werkt heel simpel: Klik gewoon op “Meer spellen toevoegen”, selecteer wat ROMs, druk op ”Synchroniseren” en volg de instructies. Veel plezier! De aangepaste kernel aan het flashen... @@ -272,7 +272,7 @@ HOME Menu - Sorry, “{0}” gebruikt mapper #{1} maar die wordt niet ondersteund door NES/SNES Mini en dit spel zal waarschijnlijk niet werken met de standaard emulator. Maar wellicht wel als andere emulator modules zijn geinstalleerd. Wil je het toch proberen? + Sorry, “{0}” gebruikt mapper #{1} maar die wordt niet ondersteund door NES Mini en dit spel zal waarschijnlijk niet werken met de standaard emulator. Maar wellicht wel als andere emulator modules zijn geinstalleerd. Wil je het toch proberen? Kernel aan het starten vanaf RAM... @@ -392,7 +392,7 @@ Kernel aan het uploaden... - Verwerken van originele spellen... + Verwerken van de originele spellen... Controle niet gelukt :O Dit is echt niet goed. @@ -415,4 +415,7 @@ Op alles ja + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + \ No newline at end of file diff --git a/Properties/Resources.pl-PL.resx b/Properties/Resources.pl-PL.resx index 516adab78..60bc58a8f 100644 --- a/Properties/Resources.pl-PL.resx +++ b/Properties/Resources.pl-PL.resx @@ -266,7 +266,7 @@ Główne Menu - Przykro mi, {0} używa mappera #{1} który jest nieobsługiwany przez NES/SNES Mini i gra prawdopodnie nie zadziała. Czy chcesz mimo to ją dodać? + Przykro mi, {0} używa mappera #{1} który jest nieobsługiwany przez NES Mini i gra prawdopodnie nie zadziała. Czy chcesz mimo to ją dodać? Bootowanie kernela z RAMu... @@ -415,4 +415,7 @@ Do you want to try to download box art for "{0}"? + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + \ No newline at end of file diff --git a/Properties/Resources.pt-PT.resx b/Properties/Resources.pt-PT.resx index 86115374f..d283c923e 100644 --- a/Properties/Resources.pt-PT.resx +++ b/Properties/Resources.pt-PT.resx @@ -245,7 +245,7 @@ Menu HOME - Desculpe, "{0}" usa o mapper # {1}, mas esse mapper não é compatível com o NES/SNES Mini eo jogo provavelmente não começará com o emulador do nes. Mas deve funcionar se o módulo de outro emulador instalado. Você quer adicionar este jogo? + Desculpe, "{0}" usa o mapper # {1}, mas esse mapper não é compatível com o NES Mini eo jogo provavelmente não começará com o emulador do nes. Mas deve funcionar se o módulo de outro emulador instalado. Você quer adicionar este jogo? Desculpe, existem {0} MBytes de jogos, é demais. @@ -406,6 +406,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + Removing {0}... diff --git a/Properties/Resources.resx b/Properties/Resources.resx index 761fc05cd..abeee5f14 100644 --- a/Properties/Resources.resx +++ b/Properties/Resources.resx @@ -694,4 +694,7 @@ Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + + ..\images\flags\jp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/Properties/Resources.ru-RU.resx b/Properties/Resources.ru-RU.resx index 813c08202..5f047447d 100644 --- a/Properties/Resources.ru-RU.resx +++ b/Properties/Resources.ru-RU.resx @@ -146,7 +146,7 @@ Качаем обложки для игр (Мне повезёт!) - Хотите скачать обложку для игры "{0}"? + Хотите попытаться скачать обложку для игры "{0}"? Сдампить образ ядра NES/SNES Mini? @@ -272,7 +272,7 @@ Главное меню - Увы, "{0}" использует маппер #{1}, а NES/SNES Mini его вроде как не поддерживает, и игра скорее всего не запустится на стандартном эмуляторе. Но она должна заработать, если установлен модуль с другим эмулятором. Добавить эту игру? + Увы, "{0}" использует маппер #{1}, а NES Mini его вроде как не поддерживает, и игра скорее всего не запустится на стандартном эмуляторе. Но она должна заработать, если установлен модуль с другим эмулятором. Добавить эту игру? Запускаем ядро из RAM... @@ -286,6 +286,9 @@ NAND память успешно прочитана. + + Увы, игра "{0} скорее всего будет некорректно работать на оригинальном эмуляторе. Хотите использовать сторонний эмулятор для этой игры (он должен быть установлен отдельно)? + Новые игры помещены в папку "Неотсортированные". diff --git a/Properties/Resources.sk-SK.resx b/Properties/Resources.sk-SK.resx index 5d0190c4a..c0faaa27b 100644 --- a/Properties/Resources.sk-SK.resx +++ b/Properties/Resources.sk-SK.resx @@ -242,7 +242,7 @@ Hlavné menu - Prepáčte, "{0}" používa mapper #{1} ale tento mapper nie je podporovaný NES/SNES Mini a hru pravdepodobne nebude možné spustiť pomocou predvoleného emulátora. Ale mala by fungovať s použitím iného modulu emulátora. Chcete pridať túto hru? + Prepáčte, "{0}" používa mapper #{1} ale tento mapper nie je podporovaný NES Mini a hru pravdepodobne nebude možné spustiť pomocou predvoleného emulátora. Ale mala by fungovať s použitím iného modulu emulátora. Chcete pridať túto hru? Prepáčte, je tu {0}MBytov hier, je to príliš veľa. @@ -406,6 +406,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + Removing {0}... diff --git a/Properties/Resources.sv-SE.resx b/Properties/Resources.sv-SE.resx index 4d0a7ef99..9a7093ab1 100644 --- a/Properties/Resources.sv-SE.resx +++ b/Properties/Resources.sv-SE.resx @@ -245,7 +245,7 @@ HEMMA Meny - Tyvärr, "{0}" använder mappning # {1} men den här mappningen stöds inte av NES/SNES Mini och spelet kommer förmodligen inte att starta med standardemulatorn. Men det ska fungera om en annan emulatormodul installeras. Vill du lägga till det här spelet? + Tyvärr, "{0}" använder mappning # {1} men den här mappningen stöds inte av NES Mini och spelet kommer förmodligen inte att starta med standardemulatorn. Men det ska fungera om en annan emulatormodul installeras. Vill du lägga till det här spelet? Tyvärr, det finns {0} MBytes av spel, det är för mycket. @@ -406,6 +406,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + Removing {0}... diff --git a/Properties/Resources.uk-UA.resx b/Properties/Resources.uk-UA.resx index c4fa371c1..0e7b49f17 100644 --- a/Properties/Resources.uk-UA.resx +++ b/Properties/Resources.uk-UA.resx @@ -242,7 +242,7 @@ Головне меню - Нажаль, "{0}" використовує маппер #{1}, а NES/SNES Mini його, мабуть, не підтримує, і гра, швидше за все, не запуститься на стандартному емумуляторі. Але вона повинна заробити, якщо встановлений модуль з іншим емулятором. Додати цю игру? + Нажаль, "{0}" використовує маппер #{1}, а NES Mini його, мабуть, не підтримує, і гра, швидше за все, не запуститься на стандартному емумуляторі. Але вона повинна заробити, якщо встановлений модуль з іншим емулятором. Додати цю игру? Вибачте, дуже вже багато ігор, на {0} МБайт, NES/SNES Mini таке не подужає. @@ -406,6 +406,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + Removing {0}... diff --git a/Properties/Resources.zh-CHS.resx b/Properties/Resources.zh-CHS.resx index 744e38725..5bb799f98 100644 --- a/Properties/Resources.zh-CHS.resx +++ b/Properties/Resources.zh-CHS.resx @@ -79,9 +79,18 @@ 正在建立文件夹结构... + + 正在压缩 {0}... + + + 正在压缩游戏... + 恭喜! + + 包装图片 + 自定义内核 @@ -91,6 +100,12 @@ 现在您需要覆写自定义核心到你的迷你红白机,这只会执行一次。您要继续吗? + + 正在解压缩 {0}... + + + 正在解压缩游戏... + 原版内置的xx个游戏 @@ -109,6 +124,9 @@ 确定要删除这些即时存档吗 ? + + 删除选中的游戏? + 要取消当前的操作吗? @@ -127,6 +145,9 @@ 正在自动下载所有游戏的包装图(全看人品了!) + + 确定要尝试为“{0}”下载包装图片吗? + 您是否要导出内核镜像? @@ -226,6 +247,9 @@ 正在安装扩展模块... + + 选择的主机类型无效!监测到的主机类型: + 无效的内核镜像文件头。 @@ -250,6 +274,9 @@ 对不起,"{0}"使用了#{1}号Mapper,但是迷你红白机并不支持,用默认的模拟器可能无法启动该游戏。不过,如果安装了其他模拟器模块的话应该可以启动。确定要添加该游戏吗? + + 正在从内存启动内核... + 对不起,游戏的大小居然有{0}MB,实在是太大了。 @@ -259,6 +286,9 @@ NAND存储器导出成功。 + + 不好,看来原版模拟器无法正确运行“{0}”。你希望使用第三方模拟器运行这个游戏吗(需要额外安装)? + 新添加的游戏会被移动到“Unsorted”文件夹。 @@ -304,6 +334,12 @@ 点击确定以继续 + + 正在删除 {0}... + + + 正在删除游戏... + 您已经导出过内核镜像。如果您真的确定要替换您已经备份过的内核镜像,而且真正了解自己在进行什么操作,请先手动删除"hakchi2/dump"文件夹。 @@ -322,6 +358,9 @@ 选择要从迷你红白机中删除的扩展模块 + + 大小: + 选中的即时存档大小: @@ -379,40 +418,4 @@ 全部选是 - - Compressing {0}... - - - Compressing games... - - - Box art - - - Decompressing {0}... - - - Decompressing games... - - - Delete selected game(s)? - - - Do you want to try to download box art for "{0}"? - - - Invalid console selected! Detected console: - - - Booting the kernel from RAM... - - - Removing {0}... - - - Removing games... - - - Size: - \ No newline at end of file diff --git a/Properties/Resources.zh-CHT.resx b/Properties/Resources.zh-CHT.resx index 7884f6ea9..63492d9d4 100644 --- a/Properties/Resources.zh-CHT.resx +++ b/Properties/Resources.zh-CHT.resx @@ -406,6 +406,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + Removing {0}... diff --git a/Properties/Resources.zh-TW.resx b/Properties/Resources.zh-TW.resx index a0d76614e..df76c4d24 100644 --- a/Properties/Resources.zh-TW.resx +++ b/Properties/Resources.zh-TW.resx @@ -406,6 +406,9 @@ NAND memory is dumped successfully. + + Oops, it seems like "{0}" is not going not work correctly with the original emulator. Do you want to use a 3rd party emulator for this game (it needs to be installed)? + Removing {0}... diff --git a/SaveStateManager.ja-JP.resx b/SaveStateManager.ja-JP.resx new file mode 100644 index 000000000..a12fa32a3 --- /dev/null +++ b/SaveStateManager.ja-JP.resx @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + セーブステート マネージャー + + + 選択した項目を削除 + + + 選択した項目をエクスポート + + + インポート + + + コード + + + セーブスロット + + + 名前 + + + サイズ + + + 選択した項目を削除 + + + 選択した項目をエクスポート + + + インポート + + \ No newline at end of file diff --git a/SearchForm.ja-JP.resx b/SearchForm.ja-JP.resx new file mode 100644 index 000000000..c1e03ef79 --- /dev/null +++ b/SearchForm.ja-JP.resx @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ゲームの頭文字を入力してください + + \ No newline at end of file diff --git a/SelectConsoleDialog.es-ES.resx b/SelectConsoleDialog.es-ES.resx index 5d5366d8e..7c5cd10a5 100644 --- a/SelectConsoleDialog.es-ES.resx +++ b/SelectConsoleDialog.es-ES.resx @@ -59,6 +59,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Before we start please select your console. You can change it later using Settings menu if you want to use other console. + Antes de empezar, debes seleccionar la consola que vas a utilizar, más tarde, puedes cambiar de consola desde el menú de opciones \ No newline at end of file diff --git a/SelectConsoleDialog.id-ID.resx b/SelectConsoleDialog.id-ID.resx index 5d5366d8e..ed34b6b1e 100644 --- a/SelectConsoleDialog.id-ID.resx +++ b/SelectConsoleDialog.id-ID.resx @@ -59,6 +59,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Before we start please select your console. You can change it later using Settings menu if you want to use other console. + Sebelum mulai, pilih dulu jenis konsol Anda. Anda dapat mengubah ini di menu Penataan nanti jika ingin menggunakan konsol lain. \ No newline at end of file diff --git a/SelectConsoleDialog.ja-JP.resx b/SelectConsoleDialog.ja-JP.resx new file mode 100644 index 000000000..e492d900f --- /dev/null +++ b/SelectConsoleDialog.ja-JP.resx @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 使用するコンソール(機種)を選択してください。あとから「設定」>「コンソールタイプ」から変更できます。 + + \ No newline at end of file diff --git a/SelectConsoleDialog.nl.resx b/SelectConsoleDialog.nl.resx index 824108944..dff19383f 100644 --- a/SelectConsoleDialog.nl.resx +++ b/SelectConsoleDialog.nl.resx @@ -59,6 +59,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Voordat we starten, selecteer je console. Je kan dit later nog veranderen in de Instellingen menu voor een andere console. + Voordat we starten, selecteer eerst je console. Je kan dit later nog veranderen in het Instellingen menu voor een andere console. \ No newline at end of file diff --git a/SelectConsoleDialog.zh-CHS.resx b/SelectConsoleDialog.zh-CHS.resx index 5d5366d8e..29873beb1 100644 --- a/SelectConsoleDialog.zh-CHS.resx +++ b/SelectConsoleDialog.zh-CHS.resx @@ -59,6 +59,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Before we start please select your console. You can change it later using Settings menu if you want to use other console. + 开始之前请先选择你的主机类型。如果之后你希望使用其他类型的主机,可以在“设置”菜单中进行更改。 \ No newline at end of file diff --git a/SelectFileForm.ja-JP.resx b/SelectFileForm.ja-JP.resx new file mode 100644 index 000000000..0d3cbad64 --- /dev/null +++ b/SelectFileForm.ja-JP.resx @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ファイルを選択 + + + アーカイブからインポート + + \ No newline at end of file diff --git a/SelectIconForm.ja-JP.resx b/SelectIconForm.ja-JP.resx new file mode 100644 index 000000000..d37c76d2f --- /dev/null +++ b/SelectIconForm.ja-JP.resx @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + フォルダーアイコンを選択 + + \ No newline at end of file diff --git a/SelectNesButtonsForm.ja-JP.resx b/SelectNesButtonsForm.ja-JP.resx new file mode 100644 index 000000000..e35b09ac3 --- /dev/null +++ b/SelectNesButtonsForm.ja-JP.resx @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + リセットボタンにするコマンドを選択 + + \ No newline at end of file diff --git a/SelectSnesButtonsForm.ja-JP.resx b/SelectSnesButtonsForm.ja-JP.resx new file mode 100644 index 000000000..e35b09ac3 --- /dev/null +++ b/SelectSnesButtonsForm.ja-JP.resx @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + リセットボタンにするコマンドを選択 + + \ No newline at end of file diff --git a/WaitingClovershellForm.ja-JP.resx b/WaitingClovershellForm.ja-JP.resx new file mode 100644 index 000000000..bd4264fc5 --- /dev/null +++ b/WaitingClovershellForm.ja-JP.resx @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ファミコン/スーファミ ミニを待機しています... + + + ドライバーをインストール + + + 以下の順に進めてください: + + + 1. ファミコン/スーファミ ミニとPCをUSBケーブルで接続 + + + 2. 電源オン + + + 3. ドライバーをインストール(インストールされていない場合): + + \ No newline at end of file diff --git a/WaitingFelForm.ja-JP.resx b/WaitingFelForm.ja-JP.resx new file mode 100644 index 000000000..636a498ba --- /dev/null +++ b/WaitingFelForm.ja-JP.resx @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ファミコン/スーファミ ミニを待機しています... + + + ドライバーをインストール + + + 以下の順に進めてください: + + + 1.ファミコン/スーファミ ミニの電源が切れていることを確認 + + + 2.ファミコン/スーファミ ミニとPCをUSBケーブルで再接続 + + + 3. RESETを押しながら電源を入れる + + + 4.数秒待ちRESETから指を離す(この時LEDは無灯火) + + + 5. ドライバーをインストール(インストールされていない場合): + + \ No newline at end of file diff --git a/hakchi_gui.csproj b/hakchi_gui.csproj index 7fe54ba94..68138b248 100644 --- a/hakchi_gui.csproj +++ b/hakchi_gui.csproj @@ -143,6 +143,11 @@ + + True + True + Resources.ja-JP.resx + Form @@ -599,6 +604,7 @@ WorkerForm.cs + Always @@ -608,6 +614,31 @@ AboutBox.cs + + FoldersManagerForm.cs + + + GameGenieCodeAddModForm.cs + + + GameGenieCodeForm.cs + + + ImageGooglerForm.cs + + + MainForm.cs + + + ResXFileCodeGenerator + Resources.ja-JP.Designer.cs + + + SaveStateManager.cs + + + SearchForm.cs + SelectConsoleDialog.cs @@ -644,6 +675,9 @@ SelectConsoleDialog.cs + + SelectConsoleDialog.cs + SelectConsoleDialog.cs @@ -1243,6 +1277,15 @@ SearchForm.cs + + SelectFileForm.cs + + + SelectIconForm.cs + + + SelectNesButtonsForm.cs + SelectSnesButtonsForm.cs @@ -1279,6 +1322,9 @@ SelectSnesButtonsForm.cs + + SelectSnesButtonsForm.cs + SelectSnesButtonsForm.cs @@ -1582,6 +1628,9 @@ WaitingClovershellForm.cs + + WaitingClovershellForm.cs + WaitingClovershellForm.cs @@ -1651,6 +1700,9 @@ WaitingFelForm.cs + + WaitingFelForm.cs + WaitingFelForm.cs diff --git a/images/flags/jp.png b/images/flags/jp.png new file mode 100644 index 000000000..325fbad3f Binary files /dev/null and b/images/flags/jp.png differ