diff --git a/doc/classes/HTTPRequest.xml b/doc/classes/HTTPRequest.xml index a4adf4d1b18..98326797811 100644 --- a/doc/classes/HTTPRequest.xml +++ b/doc/classes/HTTPRequest.xml @@ -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.") @@ -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) diff --git a/doc/translations/ga.po b/doc/translations/ga.po index f638d7c239c..84c96bee840 100644 --- a/doc/translations/ga.po +++ b/doc/translations/ga.po @@ -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" @@ -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" @@ -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" @@ -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" diff --git a/doc/translations/zh_CN.po b/doc/translations/zh_CN.po index 21f04ea9602..a4667e142f0 100644 --- a/doc/translations/zh_CN.po +++ b/doc/translations/zh_CN.po @@ -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" @@ -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" @@ -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" @@ -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" diff --git a/editor/plugins/plugin_config_dialog.cpp b/editor/plugins/plugin_config_dialog.cpp index 78986cf6caf..d78176631ac 100644 --- a/editor/plugins/plugin_config_dialog.cpp +++ b/editor/plugins/plugin_config_dialog.cpp @@ -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); diff --git a/modules/gltf/editor/editor_scene_exporter_gltf_settings.cpp b/modules/gltf/editor/editor_scene_exporter_gltf_settings.cpp index 00c59602b76..66dae819414 100644 --- a/modules/gltf/editor/editor_scene_exporter_gltf_settings.cpp +++ b/modules/gltf/editor/editor_scene_exporter_gltf_settings.cpp @@ -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); diff --git a/platform/web/api/web_tools_editor_plugin.cpp b/platform/web/api/web_tools_editor_plugin.cpp index 52da0c3347a..4bf0de77681 100644 --- a/platform/web/api/web_tools_editor_plugin.cpp +++ b/platform/web/api/web_tools_editor_plugin.cpp @@ -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 =