Difference between revisions of "Baseline"

From Lingoport Wiki
Jump to: navigation, search
(Baseline Overview)
(Baseline Overview)
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.
+
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.
   
 
For Example:
 
For Example:

Revision as of 19:59, 9 October 2019

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.

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?

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

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 usecase 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>/).

Next, create the LRM project if it does not yet exist.

Verify that the LRM project is correctly configured by running a project inspect report java -jar ~jenkins/lingoport/lrm-server-<version>/lrm-cli.jar -r --project-inspect --group-name <your group> --project-name <your project>. 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: java -jar ~jenkins/lingoport/lrm-server-<version>/lrm-cli.jar --create-baseline --group-name <your group> --project-name <your project>

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