diff --git a/po/aegisub.pot b/po/aegisub.pot index fad2b1c4d..7048368a5 100644 --- a/po/aegisub.pot +++ b/po/aegisub.pot @@ -3069,6 +3069,18 @@ msgstr "" msgid "Website" msgstr "" +#: ../src/command/help.cpp +msgid "&Joysound Exporter" +msgstr "" + +#: ../src/command/help.cpp +msgid "Joysound Exporter" +msgstr "" + +#: ../src/command/help.cpp +msgid "Export karaoke from Joysound" +msgstr "" + #: ../src/command/help.cpp:119 msgid "Visit Aegisub's official website" msgstr "" diff --git a/po/fr_FR.po b/po/fr_FR.po index 2634544f4..07aee2e6f 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Aegisub 3.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-24 16:41+0200\n" +"POT-Creation-Date: 2014-07-01 10:53-0700\n" "PO-Revision-Date: \n" "Last-Translator: Cirrus Wazza \n" "Language-Team: Céréales Killer \n" @@ -12,7 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-Bookmarks: -1,596,-1,-1,-1,-1,-1,-1,-1,-1\n" -"X-Generator: Poedit 1.8.4\n" +"X-Generator: Poedit 2.2.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ../src/dialog_shift_times.cpp:92 @@ -3189,6 +3189,18 @@ msgstr "Site &web" msgid "Website" msgstr "Site web" +#: ../src/command/help.cpp +msgid "&Joysound Exporter" +msgstr "&Joysound Exporter" + +#: ../src/command/help.cpp +msgid "Joysound Exporter" +msgstr "Joysound Exporter" + +#: ../src/command/help.cpp +msgid "Export karaoke from Joysound" +msgstr "Exporter un karaoke Joysound" + #: ../src/command/help.cpp:119 msgid "Visit Aegisub's official website" msgstr "Visitez le site officiel d'Aegisub" diff --git a/src/command/help.cpp b/src/command/help.cpp index ff47624cd..6b349e8b5 100644 --- a/src/command/help.cpp +++ b/src/command/help.cpp @@ -110,8 +110,22 @@ struct help_website final : public Command { wxLaunchDefaultBrowser("http://www.aegisub.org/", wxBROWSER_NEW_WINDOW); } }; + +struct help_joysound_export final : public Command { + CMD_NAME("help/joysound_exporter") + CMD_ICON(website_button) + STR_MENU("&Joysound Exporter") + STR_DISP("Joysound Exporter") + STR_HELP("Export karaoke from Joysound") + + void operator()(agi::Context *) override { + wxLaunchDefaultBrowser("https://joysound.rhiobet.ninja/", wxBROWSER_NEW_WINDOW); + } +}; + } + namespace cmd { void init_help() { reg(agi::make_unique()); @@ -119,5 +133,6 @@ namespace cmd { reg(agi::make_unique()); reg(agi::make_unique()); reg(agi::make_unique()); + reg(agi::make_unique()); } } diff --git a/src/libresrc/default_menu.json b/src/libresrc/default_menu.json index b1797836f..95a8057ad 100644 --- a/src/libresrc/default_menu.json +++ b/src/libresrc/default_menu.json @@ -203,6 +203,7 @@ { "command" : "help/contents" }, {}, { "command" : "help/website" }, + { "command" : "help/joysound_exporter" }, { "command" : "help/bugs" }, {}, { "command" : "help/irc" }, diff --git a/src/libresrc/osx/default_menu.json b/src/libresrc/osx/default_menu.json index 75a9e4a03..691aa7168 100644 --- a/src/libresrc/osx/default_menu.json +++ b/src/libresrc/osx/default_menu.json @@ -213,6 +213,7 @@ { "command" : "help/contents" }, {}, { "command" : "help/website" }, + { "command" : "help/joysound_exporter" }, { "command" : "help/bugs" }, {}, { "command" : "help/irc" },