diff --git a/TRANSLATIONS.md b/TRANSLATIONS.md index 92d616db9..348634ffb 100644 --- a/TRANSLATIONS.md +++ b/TRANSLATIONS.md @@ -16,6 +16,7 @@ - Portugese - Portugal - Portugese - Brasilian - Russian + - Slovenian - Spanish - Swedish - Turkish @@ -53,4 +54,9 @@ Windows NSIS installer is translated separately (No translation tool for it), See list of existing NSIS languages [here](https://github.com/jindrapetrik/jpexs-decompiler/tree/dev/nsis_locales) and create new `.nsh` file for new installer language. +## Translating "Open in FFDec" context menu EXE resources +For the ffdec.exe application there exists RC file [here](https://github.com/jindrapetrik/jpexs-decompiler/blob/dev/open_with.rc) +where you need to add translation of the text "Open in FFDec" context menu for +associated SWF files. + [issue tracker]: https://www.free-decompiler.com/flash/ diff --git a/open_with.rc b/open_with.rc index 7120783e0..241cc1c5a 100644 --- a/open_with.rc +++ b/open_with.rc @@ -103,6 +103,13 @@ BEGIN 1001 "Abrir con FFDec" END +// Slovenian (sl-SI) +LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT +STRINGTABLE +BEGIN + 1001 "Odpri v FFDec" +END + // Swedish (sv-SE) LANGUAGE LANG_SWEDISH, SUBLANG_DEFAULT STRINGTABLE @@ -122,4 +129,4 @@ LANGUAGE 0x22, 0x01 // LANG_UKRAINIAN STRINGTABLE BEGIN 1001 "Відкрити у FFDec" -END \ No newline at end of file +END diff --git a/resources/ffdec.exe b/resources/ffdec.exe index 8c4030fce..b81355984 100644 Binary files a/resources/ffdec.exe and b/resources/ffdec.exe differ