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

This commit is contained in:
Dmitrii Liubin
2025-03-05 15:33:46 +00:00
committed by Nikita Iarychenko
parent 1d6464dab8
commit 13304eec54
4 changed files with 8 additions and 8 deletions

View File

@@ -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";
}
}

View File

@@ -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 <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

@@ -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) {

View File

@@ -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)