OPENIDE: 243 feature/100,101,102 misc localization improvements

(cherry picked from commit c70b63fb2f381135fb526c281f8244413b3b3da1)
(cherry picked from commit e1e7abd68a)
(cherry picked from commit b86a5db1f7)
(cherry picked from commit 2dcef22b45)
This commit is contained in:
Dmitrii Liubin
2025-03-05 15:33:46 +00:00
committed by Nikita Iarychenko
parent f8c2eb0487
commit d8919954e4
4 changed files with 8 additions and 8 deletions

View File

@@ -412,6 +412,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";
}
}

View File

@@ -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 <a href="">system information</a>.
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=<a href="">More</a>
onboarding.feedback.user.agreement.less=<a href="">Less</a>
onboarding.feedback.confirm.button=Send Feedback

View File

@@ -113,7 +113,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) {

View File

@@ -143,7 +143,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)