Difference between revisions of "Baseline"

From Lingoport Wiki
Jump to: navigation, search
(Baseline Overview)
(Using a Baseline to track previous text updates)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== Baseline Overview ==
 
== Baseline Overview ==
   
When an LRM project is created, the project resources may be fully translated, partially translated or not tranlated at all. Before the first prep kit, a baseline is created that will populate the database with the current state of the project. If any files, are changed before the prep kit, then those changes can be tracked.
+
After an LRM project is created, but before the first prep kit, a baseline is created that will populate the database with the current state of the project. If any files are changed before the prep kit, then those changes can be tracked.
   
For Exaple:
+
For Example:
   
 
<code>greeting="Hello!"</code>
 
<code>greeting="Hello!"</code>
Line 14: Line 14:
   
 
== When do Baseline's occur? ==
 
== When do Baseline's occur? ==
  +
When an LRM project is created, it is not baselined. This allows users to make changes and fixes to the project. Once a baseline is created, some changes cannot be made.
   
Baselines are automatically created whenever a Prep Kit is sent out, and when translations are imported. They can also be created manually (see [[LRM_Commands_Reference#Create_a_project_baseline]]).
+
Baselines are automatically created whenever a Prep Kit is sent out. They can also be created manually (see [[LRM_Commands_Reference#Create_a_project_baseline]]).
   
 
Please note that when the first baseline is created, LRM will make certain assumptions about the resource files from it. It is important to ensure that the LRM configuration is correct before creating your first baseline. For this reason, we recommend allowing the system to do so automatically during the first prep kit.
 
Please note that when the first baseline is created, LRM will make certain assumptions about the resource files from it. It is important to ensure that the LRM configuration is correct before creating your first baseline. For this reason, we recommend allowing the system to do so automatically during the first prep kit.
Line 23: Line 24:
 
If onboarding a new project to LRM with a previous translation history, you may wish to catch textual updates prior to onboarding time.
 
If onboarding a new project to LRM with a previous translation history, you may wish to catch textual updates prior to onboarding time.
   
Note: This is an advanced usecase recommended for experienced users. The following instructions assume you are already familiar with the system.
+
<b>Note:</b> This is an advanced use case recommended for experienced users. The following instructions assume you are already familiar with the system.
   
To do so, first find a time in your version control history prior to the textual updates. Checkout the sourcecode from this point. If appropriate, apply any transforms to the resource files (see /var/lib/jenkins/lingoport/transforms/<your transform>/).
+
# Find a time in your version control history prior to the textual updates. Checkout the source code from this point. If appropriate, apply any transforms to the resource files (see /var/lib/jenkins/lingoport/transforms/<your transform>/).
  +
# Create the LRM project.
 
  +
# Verify that the LRM project is correctly configured by viewing the Lingoport Dashboard Resource Manager information. Confirm that all of the correct files tracked (hover over Next Prep Kit Content), and that LRM is not tracking any extraneous files. Check the Dashboard for the correct locales.
Next, create the LRM project if it does not yet exist.
 
  +
# Run the baseline with the following command: <code>java -jar ~jenkins/lingoport/lrm-server-<version>/lrm-cli.jar --create-baseline --group-name <your group> --project-name <your project></code>
 
  +
# Return the project to the latest state of the source per source control. To see what changes were picked up, you may then optionally create a similar test project for the same source without the baseline and compare the result.
Verify that the LRM project is correctly configured by running a project inspect report <code>java -jar ~jenkins/lingoport/lrm-server-<version>/lrm-cli.jar -r --project-inspect --group-name <your group> --project-name <your project></code>. Review the report to confirm that all of the correct files tracked, and that LRM is not tracking any extraneous files. It is recommended that you check the report both for the base locale (most commonly English) and one of the target locales.
 
 
Once you have confirmed the project is correctly configured, you can run the baseline with the following command: <code>java -jar ~jenkins/lingoport/lrm-server-<version>/lrm-cli.jar --create-baseline --group-name <your group> --project-name <your project></code>
 
 
With this finished, return to the latest state of the source per source control. To see what changes were picked up, you may then optionally create a similar test project for the same source without the baseline and compare the result.
 
 
 
See also:
 
 
[[LRM_Fixing_Issues#Modified_text_does_not_seem_to_be_recognized_as_a_change_in_my_base_resource_file._What_is_wrong]]
 

Latest revision as of 22:47, 22 November 2019

Baseline Overview

After an LRM project is created, but before the first prep kit, a baseline is created that will populate the database with the current state of the project. If any files are changed before the prep kit, then those changes can be tracked.

For Example:

greeting="Hello!"

Might be updated to:

greeting="Hello! Welcome to ACME Supplies."

If the baseline was created with the original string, then the prep kit will know that the string has changed and send the new value to be translated.

When do Baseline's occur?

When an LRM project is created, it is not baselined. This allows users to make changes and fixes to the project. Once a baseline is created, some changes cannot be made.

Baselines are automatically created whenever a Prep Kit is sent out. They can also be created manually (see LRM_Commands_Reference#Create_a_project_baseline).

Please note that when the first baseline is created, LRM will make certain assumptions about the resource files from it. It is important to ensure that the LRM configuration is correct before creating your first baseline. For this reason, we recommend allowing the system to do so automatically during the first prep kit.

Using a Baseline to track previous text updates

If onboarding a new project to LRM with a previous translation history, you may wish to catch textual updates prior to onboarding time.

Note: This is an advanced use case recommended for experienced users. The following instructions assume you are already familiar with the system.

  1. Find a time in your version control history prior to the textual updates. Checkout the source code from this point. If appropriate, apply any transforms to the resource files (see /var/lib/jenkins/lingoport/transforms/<your transform>/).
  2. Create the LRM project.
  3. Verify that the LRM project is correctly configured by viewing the Lingoport Dashboard Resource Manager information. Confirm that all of the correct files tracked (hover over Next Prep Kit Content), and that LRM is not tracking any extraneous files. Check the Dashboard for the correct locales.
  4. Run the baseline with the following command: java -jar ~jenkins/lingoport/lrm-server-<version>/lrm-cli.jar --create-baseline --group-name <your group> --project-name <your project>
  5. Return the project to the latest state of the source per source control. To see what changes were picked up, you may then optionally create a similar test project for the same source without the baseline and compare the result.