1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-08 11:31:43 +00:00

Fixed typo

This commit is contained in:
flb 2021-01-04 01:34:22 +01:00
parent 8a529b3942
commit f20f24cad1
4 changed files with 4 additions and 78 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
#.vscode/
.vscode/settings.json
build/
screenshots/
switch/

74
.vscode/settings.json vendored
View file

@ -1,74 +0,0 @@
{
"files.associations": {
"sstream": "cpp",
"format": "cpp",
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"compare": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"forward_list": "cpp",
"list": "cpp",
"map": "cpp",
"set": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"iterator": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"ratio": "cpp",
"regex": "cpp",
"string": "cpp",
"string_view": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"new": "cpp",
"ostream": "cpp",
"ranges": "cpp",
"shared_mutex": "cpp",
"stdexcept": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"thread": "cpp",
"cinttypes": "cpp",
"typeinfo": "cpp",
"valarray": "cpp",
"buffer": "cpp",
"internet": "cpp",
"socket": "cpp",
"variant": "cpp"
}
}

View file

@ -168,7 +168,7 @@
"tool_changelog": "Changelog",
"tool_cleanUp": "Clean up downloaded files",
"tool_net_settings": "Edit internet settings",
"tool_browser": "Web Brower",
"tool_browser": "Web Browser",
"utils.cpp":"",
"utils_because": "Because of the size of the FW archive, downloading firmwares in Applet Mode is not supported. Please launch the app with full RAM access.",

View file

@ -73,7 +73,7 @@ ToolsTab::ToolsTab(std::string tag) : brls::List()
WebCommonReply out;
rc = webPageCreate(&conf, url);
if (R_FAILED(rc))
error += "Error starting Browser\nLookup error code for more info " + rc;
error += "\uE016 Error starting Browser\nLookup error code for more info " + rc;
webConfigSetJsExtension(&conf, true);
webConfigSetPageCache(&conf, true);
webConfigSetBootLoadingIcon(&conf, true);
@ -82,7 +82,7 @@ ToolsTab::ToolsTab(std::string tag) : brls::List()
if (R_FAILED(rc))
error += "Error starting Browser\nLookup error code for more info " + rc;
} else { // Running under applet
error += "Running in applet mode\nPlease launch hbmenu by holding R on an APP (e.g. a game) NOT an applet (e.g. Gallery)";
error += "\uE016 Running in applet mode.\nPlease launch hbmenu by holding R on an APP (e.g. a game) NOT an applet (e.g. Gallery)";
}
if(!error.empty()){
brls::Dialog* dialog = new brls::Dialog(error);