Skip to content

Commit

Permalink
Merge pull request #858 from trashguy/rebranding/switch-godette-to-re…
Browse files Browse the repository at this point in the history
…dot-chan

[4.3] Rebrand Godette to Redot-chan
  • Loading branch information
Spartan322 authored Nov 14, 2024
2 parents 71193c7 + 3158d1b commit cc4c2e6
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions doc/classes/HTTPRequest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# Perform a POST request. The URL below returns JSON as of writing.
# Note: Don't make simultaneous requests using a single HTTPRequest node.
# The snippet below is provided for reference only.
var body = JSON.new().stringify({"name": "Godette"})
var body = JSON.new().stringify({"name": "Redot-chan"})
error = http_request.request("https://httpbin.org/post", [], HTTPClient.METHOD_POST, body)
if error != OK:
push_error("An error occurred in the HTTP request.")
Expand Down Expand Up @@ -59,7 +59,7 @@
// The snippet below is provided for reference only.
string body = new Json().Stringify(new Godot.Collections.Dictionary
{
{ "name", "Godette" }
{ "name", "Redot-chan" }
});
error = httpRequest.Request("https://httpbin.org/post", null, HttpClient.Method.Post, body);
if (error != Error.Ok)
Expand Down
8 changes: 4 additions & 4 deletions doc/translations/ga.po
Original file line number Diff line number Diff line change
Expand Up @@ -73878,7 +73878,7 @@ msgid ""
" # Note: Don't make simultaneous requests using a single HTTPRequest "
"node.\n"
" # The snippet below is provided for reference only.\n"
" var body = JSON.new().stringify({\"name\": \"Godette\"})\n"
" var body = JSON.new().stringify({\"name\": \"Redot-chan\"})\n"
" error = http_request.request(\"https://httpbin.org/post\", [], HTTPClient."
"METHOD_POST, body)\n"
" if error != OK:\n"
Expand Down Expand Up @@ -73915,7 +73915,7 @@ msgid ""
" // The snippet below is provided for reference only.\n"
" string body = new Json().Stringify(new Redot.Collections.Dictionary\n"
" {\n"
" { \"name\", \"Godette\" }\n"
" { \"name\", \"Redot-chan\" }\n"
" });\n"
" error = httpRequest.Request(\"https://httpbin.org/post\", null, "
"HttpClient.Method.Post, body);\n"
Expand Down Expand Up @@ -74051,7 +74051,7 @@ msgstr ""
" # Nóta: Ná déan iarratais chomhuaineacha trí úsáid a bhaint as nód amháin "
"Iarratas HTTP.\n"
" # Tá an mhír thíos curtha ar fáil mar thagairt amháin.\n"
" var body = JSON.new().stringify({\"ainm\": \"Godette\"})\n"
" var body = JSON.new().stringify({\"ainm\": \"Redot-chan\"})\n"
" error = http_request.request(\"https://httpbin.org/post\", [], HTTPClient."
"METHOD_POST, comhlacht)\n"
" má tá earráid!= OK:\n"
Expand Down Expand Up @@ -74091,7 +74091,7 @@ msgstr ""
" comhlacht teaghrán = Json nua().Stringify(new Redot.Collections."
"Dictionary\n"
" {\n"
" { \"ainm\", \"Godette\" }\n"
" { \"ainm\", \"Redot-chan\" }\n"
" });\n"
" error = httpRequest.Request(\"https://httpbin.org/post\", null, "
"HttpClient.Method.Post, comhlacht);\n"
Expand Down
8 changes: 4 additions & 4 deletions doc/translations/zh_CN.po
Original file line number Diff line number Diff line change
Expand Up @@ -65531,7 +65531,7 @@ msgid ""
" # Note: Don't make simultaneous requests using a single HTTPRequest "
"node.\n"
" # The snippet below is provided for reference only.\n"
" var body = JSON.new().stringify({\"name\": \"Godette\"})\n"
" var body = JSON.new().stringify({\"name\": \"Redot-chan\"})\n"
" error = http_request.request(\"https://httpbin.org/post\", [], HTTPClient."
"METHOD_POST, body)\n"
" if error != OK:\n"
Expand Down Expand Up @@ -65568,7 +65568,7 @@ msgid ""
" // The snippet below is provided for reference only.\n"
" string body = new Json().Stringify(new Redot.Collections.Dictionary\n"
" {\n"
" { \"name\", \"Godette\" }\n"
" { \"name\", \"Redot-chan\" }\n"
" });\n"
" error = httpRequest.Request(\"https://httpbin.org/post\", null, "
"HttpClient.Method.Post, body);\n"
Expand Down Expand Up @@ -65696,7 +65696,7 @@ msgstr ""
" # 执行一个 POST 请求。 以下 URL 会将写入作为 JSON 返回。\n"
" # 注意:不要使用单个 HTTPRequest 节点同时发出请求。\n"
" # 下面的代码片段仅供参考。\n"
" var body = JSON.new().stringify({\"name\": \"Godette\"})\n"
" var body = JSON.new().stringify({\"name\": \"Redot-chan\"})\n"
" error = http_request.request(\"https://httpbin.org/post\", [], HTTPClient."
"METHOD_POST, body)\n"
" if error != OK:\n"
Expand Down Expand Up @@ -65731,7 +65731,7 @@ msgstr ""
" // 下面的代码片段仅供参考。\n"
" string body = new Json().Stringify(new Redot.Collections.Dictionary\n"
" {\n"
" { \"name\", \"Godette\" }\n"
" { \"name\", \"Redot-chan\" }\n"
" });\n"
" error = httpRequest.Request(\"https://httpbin.org/post\", null, "
"HttpClient.Method.Post, body);\n"
Expand Down
2 changes: 1 addition & 1 deletion editor/plugins/plugin_config_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ PluginConfigDialog::PluginConfigDialog() {
grid->add_child(author_lb);

author_edit = memnew(LineEdit);
author_edit->set_placeholder("Godette");
author_edit->set_placeholder("Redot-chan");
author_edit->set_tooltip_text(TTR("Optional. The author's username, full name, or organization name."));
author_edit->set_h_size_flags(Control::SIZE_EXPAND_FILL);
grid->add_child(author_edit);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ void EditorSceneExporterGLTFSettings::set_copyright(const String &p_copyright) {
void EditorSceneExporterGLTFSettings::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_copyright"), &EditorSceneExporterGLTFSettings::get_copyright);
ClassDB::bind_method(D_METHOD("set_copyright", "copyright"), &EditorSceneExporterGLTFSettings::set_copyright);
ADD_PROPERTY(PropertyInfo(Variant::STRING, "copyright", PROPERTY_HINT_PLACEHOLDER_TEXT, "Example: 2014 Godette"), "set_copyright", "get_copyright");
ADD_PROPERTY(PropertyInfo(Variant::STRING, "copyright", PROPERTY_HINT_PLACEHOLDER_TEXT, "Example: 2014 Redot-chan"), "set_copyright", "get_copyright");

ClassDB::bind_method(D_METHOD("get_bake_fps"), &EditorSceneExporterGLTFSettings::get_bake_fps);
ClassDB::bind_method(D_METHOD("set_bake_fps", "bake_fps"), &EditorSceneExporterGLTFSettings::set_bake_fps);
Expand Down
2 changes: 1 addition & 1 deletion platform/web/api/web_tools_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void WebToolsEditorPlugin::_download_zip() {
// Name the downloaded ZIP file to contain the project name and download date for easier organization.
// Replace characters not allowed (or risky) in Windows file names with safe characters.
// In the project name, all invalid characters become an empty string so that a name
// like "Platformer 2: Godette's Revenge" becomes "platformer_2-_godette-s_revenge".
// like "Platformer 2: Redot-chan's Revenge" becomes "platformer_2-_godette-s_revenge".
const String project_name = GLOBAL_GET("application/config/name");
const String project_name_safe = project_name.to_lower().replace(" ", "_");
const String datetime_safe =
Expand Down

0 comments on commit cc4c2e6

Please sign in to comment.