mirror of https://github.com/odrling/Aegisub
[help] add joysound exporter item
This commit is contained in:
parent
b185a5e3c4
commit
c36f16fb08
|
@ -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 ""
|
||||
|
|
16
po/fr_FR.po
16
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 <cirrus_wazza@gmx.fr>\n"
|
||||
"Language-Team: Céréales Killer <cerkil@free.fr>\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"
|
||||
|
|
|
@ -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<help_bugs>());
|
||||
|
@ -119,5 +133,6 @@ namespace cmd {
|
|||
reg(agi::make_unique<help_irc>());
|
||||
reg(agi::make_unique<help_video>());
|
||||
reg(agi::make_unique<help_website>());
|
||||
reg(agi::make_unique<help_joysound_export>());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -203,6 +203,7 @@
|
|||
{ "command" : "help/contents" },
|
||||
{},
|
||||
{ "command" : "help/website" },
|
||||
{ "command" : "help/joysound_exporter" },
|
||||
{ "command" : "help/bugs" },
|
||||
{},
|
||||
{ "command" : "help/irc" },
|
||||
|
|
|
@ -213,6 +213,7 @@
|
|||
{ "command" : "help/contents" },
|
||||
{},
|
||||
{ "command" : "help/website" },
|
||||
{ "command" : "help/joysound_exporter" },
|
||||
{ "command" : "help/bugs" },
|
||||
{},
|
||||
{ "command" : "help/irc" },
|
||||
|
|
Loading…
Reference in New Issue