aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorStas Vilchik <stas.vilchik@sonarsource.com>2017-06-12 03:50:27 -0700
committerStas Vilchik <stas.vilchik@sonarsource.com>2017-06-20 04:10:53 -0700
commitfbc932a882b6dec72900f5242d0cead7ff03e4b2 (patch)
tree504bae0d532ab34faa13fc4d7cf27668c3c31634 /sonar-core
parenta5e983797e23c5ff158483653415da05394d2bef (diff)
downloadsonarqube-fbc932a882b6dec72900f5242d0cead7ff03e4b2.tar.gz
sonarqube-fbc932a882b6dec72900f5242d0cead7ff03e4b2.zip
UI: SONAR-9355 Create onboarding tutorial (#2137)
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/resources/org/sonar/l10n/core.properties84
1 files changed, 82 insertions, 2 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties
index 8ebbb162e05..b64d2721158 100644
--- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties
+++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties
@@ -47,6 +47,7 @@ component=Component
configurable=Configurable
configure=Configure
confirm=Confirm
+continue=Continue
copy=Copy
create=Create
created=Created
@@ -301,6 +302,7 @@ since_previous_version.short=\u0394 version
since_previous_version_detailed=since previous version ({0} - {1})
since_previous_version_with_only_date=since previous version ({0})
since_previous_version_detailed.short=\u0394 version ({0})
+this_name_is_already_taken=This name is already taken.
time_changes=Time changes
work_duration.x_days={0}d
work_duration.x_hours={0}h
@@ -1054,10 +1056,12 @@ search.placeholder=Search for projects, sub-projects and files...
#------------------------------------------------------------------------------
#
-# SHORTCUTS
+# GLOBAL HELP
#
#------------------------------------------------------------------------------
-shortcuts.modal_title=Shortcuts
+help.section.links=Links
+help.section.shortcuts=Shortcuts
+help.section.tutorials=Tutorials
shortcuts.section.global=Global
shortcuts.section.global.search=quickly open search bar
@@ -2937,3 +2941,79 @@ footer.terms=Terms
footer.twitter=Twitter
footer.version_x=Version {0}
footer.web_api=Web API
+
+
+#------------------------------------------------------------------------------
+#
+# ONBOARDING
+#
+#------------------------------------------------------------------------------
+onboarding.header=Welcome to SonarQube!
+onboarding.header.sonarcloud=Welcome to SonarCloud!
+onboarding.header.description=Let's learn how to analyze your first public project.
+
+onboarding.token.header=Generate a token
+onboarding.token.text=We'll use it as a replacement of the user login. This will increase the security of your installation by not letting your analysis user's password going through your network.
+onboarding.token.generate=Generate
+onboarding.token.placeholder=Enter a name for your token
+
+onboarding.organization.header=Choose an organization for your project
+onboarding.organization.text=Organizations are where your projects belong. You can add your team members to your organization later to allow them to contribute to your projects.
+onboarding.organization.placeholder=Enter a name for your organization
+onboarding.organization.my_personal_organization=My personal organization
+onboarding.organization.exising_organization=Existing organization
+onboarding.organization.create_another_organization=Create another organization
+onboarding.organization.key_requirement=2 to 32 characters. All chars must be lower-case letters (a to z), digits or dash (but dash can neither be trailing nor heading)
+
+onboarding.project_key_requirement=Allowed characters are alphanumeric, '-', '_', '.' and ':', with at least one non-digit. 400 characters max.
+
+onboarding.analysis.header=Run analysis on your project
+
+onboarding.language=What is your project's main language?
+onboarding.language.java=Java
+onboarding.language.java.build_technology=You are developing primarily in Java: what is your build technology?
+onboarding.language.java.build_technology.maven=Maven
+onboarding.language.java.build_technology.gradle=Gradle
+onboarding.language.dotnet=C# or VB.NET
+onboarding.language.c-family=C, C++, Objective-C
+onboarding.language.c-family.compiler=Which compiler are you using?
+onboarding.language.c-family.compiler.msvc=Microsoft Visual C++
+onboarding.language.c-family.compiler.clang-gcc=CLang or GGC
+onboarding.language.other=Other (JS, Python, PHP, ...)
+onboarding.language.os=What is your OS?
+onboarding.language.os.linux=Linux
+onboarding.language.os.win=Windows
+onboarding.language.os.mac=macOS
+onboarding.language.project_key=Define a unique project key
+
+onboarding.analysis.java.maven.header=Execute the SonarQube Scanner for Maven from your computer
+onboarding.analysis.java.maven.text=Running a SonarQube analysis with Maven is straighforward. You just need to run the following command in your project's folder.
+onboarding.analysis.java.maven.docs=Please visit the <a href="http://redirect.sonarsource.com/doc/install-configure-scanner-maven.html" target="_blank">official documentation of the SonarQube Scanner for Maven</a> for more details.
+
+onboarding.analysis.java.gradle.header=Execute the SonarQube Scanner for Gradle from your computer
+onboarding.analysis.java.gradle.text.1=Running a SonarQube analysis with Gradle is straighforward. You just need to declare the <code>org.sonarqube</code> plugin in your <code>build.gradle</code> file:
+onboarding.analysis.java.gradle.text.2=and run the following command:
+onboarding.analysis.java.gradle.docs=Please visit the <a href="http://redirect.sonarsource.com/doc/gradle.html" target="_blank">official documentation of the SonarQube Scanner for Gradle</a> for more details.
+
+onboarding.analysis.msbuild.header=Download and unzip the SonarQube Scanner for MSBuild
+onboarding.analysis.msbuild.text=And add the executable's directory to the <code>%PATH%</code> environment variable
+onboarding.analysis.msbuild.execute=Execute the SonarQube Scanner for MSBuild from your computer
+onboarding.analysis.msbuild.execute.text=Running a SonarQube analysis is straighforward. You just need to execute the following commands at the root of your solution.
+onboarding.analysis.msbuild.docs=Please visit the <a href="http://redirect.sonarsource.com/doc/install-configure-scanner-msbuild.html" target="_blank">official documentation of the SonarQube Scanner for MSBuild</a> for more details.
+
+onboarding.analysis.build_wrapper.header.linux=Download and unzip the Build Wrapper for Linux
+onboarding.analysis.build_wrapper.header.win=Download and unzip the Build Wrapper for Windows
+onboarding.analysis.build_wrapper.header.mac=Download and unzip the Build Wrapper for macOS
+onboarding.analysis.build_wrapper.text.linux=And add the executable's directory to the <code>PATH</code> environment variable
+onboarding.analysis.build_wrapper.text.win=And add the executable's directory to the <code>%PATH%</code> environment variable
+onboarding.analysis.build_wrapper.text.mac=And add the executable's directory to the <code>PATH</code> environment variable
+
+onboarding.analysis.sq_scanner.header.linux=Download and unzip the SonarQube Scanner for Linux
+onboarding.analysis.sq_scanner.header.win=Download and unzip the SonarQube Scanner for Windows
+onboarding.analysis.sq_scanner.header.mac=Download and unzip the SonarQube Scanner for macOS
+onboarding.analysis.sq_scanner.text.linux=And add the <code>bin</code> directory to the <code>PATH</code> environment variable
+onboarding.analysis.sq_scanner.text.win=And add the <code>bin</code> directory to the <code>%PATH%</code> environment variable
+onboarding.analysis.sq_scanner.text.mac=And add the <code>bin</code> directory to the <code>PATH</code> environment variable
+onboarding.analysis.sq_scanner.execute=Execute the SonarQube Scanner from your computer
+onboarding.analysis.sq_scanner.execute.text=Running a SonarQube analysis is straighforward. You just need to execute the following commands in your project's folder.
+onboarding.analysis.sq_scanner.docs=Please visit the <a href="http://redirect.sonarsource.com/doc/install-configure-scanner.html" target="_blank">official documentation of the SonarQube Scanner</a> for more details.