From 2dcef22b45642748002bf244dab0450b72b489d4 Mon Sep 17 00:00:00 2001 From: Dmitrii Liubin Date: Wed, 5 Mar 2025 15:33:46 +0000 Subject: [PATCH] OPENIDE: 243 feature/100,101,102 misc localization improvements (cherry picked from commit c70b63fb2f381135fb526c281f8244413b3b3da1) (cherry picked from commit e1e7abd68ae9b142758aee8e2ee556c8d9ab7a20) (cherry picked from commit b86a5db1f78a9af64f56b6d0d3a15c88cbfe4947) --- .../intellij/diagnostic/WindowsDefenderChecker.java | 2 +- .../res/messages/LearnBundle.properties | 10 +++++----- .../src/training/dsl/LessonUtil.kt | 2 +- .../ide-features-trainer/src/training/util/Utils.kt | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/platform/platform-impl/src/com/intellij/diagnostic/WindowsDefenderChecker.java b/platform/platform-impl/src/com/intellij/diagnostic/WindowsDefenderChecker.java index b1ad03b8679f..18c3c941ff22 100644 --- a/platform/platform-impl/src/com/intellij/diagnostic/WindowsDefenderChecker.java +++ b/platform/platform-impl/src/com/intellij/diagnostic/WindowsDefenderChecker.java @@ -397,6 +397,6 @@ public class WindowsDefenderChecker { } public @NotNull String getConfigurationInstructionsUrl() { - return "https://intellij.com/antivirus-impact-on-build-speed"; + return "https://openide.ru/antivirus-impact-on-build-speed"; } } diff --git a/plugins/ide-features-trainer/res/messages/LearnBundle.properties b/plugins/ide-features-trainer/res/messages/LearnBundle.properties index 815e0b31ac18..57bc8aef38b3 100755 --- a/plugins/ide-features-trainer/res/messages/LearnBundle.properties +++ b/plugins/ide-features-trainer/res/messages/LearnBundle.properties @@ -122,16 +122,16 @@ onboarding.feedback.question.any.problems=Did you encounter any problems? onboarding.feedback.option.technical.issues=Technical issues onboarding.feedback.empty.text.other.issues=Please, describe issues here onboarding.feedback.option.tour.is.useless=Tour wasn't useful for me -onboarding.feedback.option.experienced.user=I'm familiar with JetBrains IDEs (PyCharm, IDEA, WebStorm, etc.) +onboarding.feedback.option.experienced.user=I'm familiar with OpenIDE onboarding.feedback.option.too.many.steps=Too many steps onboarding.feedback.label.overall.experience=Share your overall experience or suggestions onboarding.feedback.empty.text.overall.experience=Optional onboarding.feedback.user.agreement.info=By submitting this form, I agree to share my system information. onboarding.feedback.form.email=Email: -onboarding.feedback.email.consent=Allow JetBrains to follow up via email -onboarding.feedback.user.agreement.prefix=By ticking checkbox, I agree that my email address may be used by JetBrains to follow up on my feedback. -onboarding.feedback.user.agreement.suffix=I consent for JetBrains to process this data using third-party services for this purpose in\ - accordance with the JetBrains Privacy Policy. I understand that I can revoke this consent at any time in my profile. +onboarding.feedback.email.consent=Allow OpenIDE to follow up via email +onboarding.feedback.user.agreement.prefix=By ticking checkbox, I agree that my email address may be used by OpenIDE to follow up on my feedback. +onboarding.feedback.user.agreement.suffix=I consent for OpenIDE to process this data using third-party services for this purpose in\ + accordance with the OpenIDE Privacy Policy. I understand that I can revoke this consent at any time in my profile. onboarding.feedback.user.agreement.more=More onboarding.feedback.user.agreement.less=Less onboarding.feedback.confirm.button=Send Feedback diff --git a/plugins/ide-features-trainer/src/training/dsl/LessonUtil.kt b/plugins/ide-features-trainer/src/training/dsl/LessonUtil.kt index 5ec438f01165..55e28e35dd99 100644 --- a/plugins/ide-features-trainer/src/training/dsl/LessonUtil.kt +++ b/plugins/ide-features-trainer/src/training/dsl/LessonUtil.kt @@ -107,7 +107,7 @@ object LessonUtil { "AppCode" -> "objc" else -> name.lowercase(Locale.ENGLISH) } - return "https://www.jetbrains.com/help/$helpIdeName/$topic" + return "https://openide.ru/help/$helpIdeName/$topic" } fun hideStandardToolwindows(project: Project) { diff --git a/plugins/ide-features-trainer/src/training/util/Utils.kt b/plugins/ide-features-trainer/src/training/util/Utils.kt index 3233ddb54c7a..793022a390e3 100644 --- a/plugins/ide-features-trainer/src/training/util/Utils.kt +++ b/plugins/ide-features-trainer/src/training/util/Utils.kt @@ -139,7 +139,7 @@ fun getFeedbackLink(langSupport: LangSupport, ownRegistry: Boolean): String? { fun getFeedbackLink(langName: String, ownRegistry: Boolean): String? { val needToShow = Registry.`is`("ift.show.feedback.link" + if (ownRegistry) ".$langName" else "", false) - return if (needToShow) "https://surveys.jetbrains.com/s3/features-trainer-feedback-$langName" else null + return if (needToShow) "https://openide.ru/surveys/features-trainer-feedback-$langName" else null } val useShortOnboardingLesson: Boolean get() = Registry.`is`("ift.short.onboarding.lesson", false)