From 13304eec542b7d4c9d51dc384fb214dbcf3781c0 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 --- .../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 66adfea66437..3b65e76de2e3 100644 --- a/platform/platform-impl/src/com/intellij/diagnostic/WindowsDefenderChecker.java +++ b/platform/platform-impl/src/com/intellij/diagnostic/WindowsDefenderChecker.java @@ -304,6 +304,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 8a45e956fc1a..c7650f80f15a 100755 --- a/plugins/ide-features-trainer/res/messages/LearnBundle.properties +++ b/plugins/ide-features-trainer/res/messages/LearnBundle.properties @@ -120,16 +120,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 6f6b21db2eeb..481bd5a0ddf7 100644 --- a/plugins/ide-features-trainer/src/training/dsl/LessonUtil.kt +++ b/plugins/ide-features-trainer/src/training/dsl/LessonUtil.kt @@ -104,7 +104,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 d4da2c9647f7..845b0016f7e9 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)