locale: Add missing dot at the end of a line (#62)

This commit is contained in:
Vainock 2019-04-23 12:42:27 +02:00 committed by Michael Fabian Dirks
parent 61d5a0341a
commit b4341e41b3
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ Blur.Type.BoxLinear.Description="Box blur (named for its distinct shape) is a si
Blur.Type.Gaussian="Gaussian"
Blur.Type.Gaussian.Description="Gaussian blur uses the Gaussian Bell curve as a weight for each sampled pixel, resulting in a smooth look."
Blur.Type.GaussianLinear="Gaussian Linear"
Blur.Type.GaussianLinear.Description="Gaussian blur uses the Gaussian Bell curve as a weight for each sampled pixel, resulting in a smooth look.\nThis is a linear optimized version of the normal Gaussian blur, but might look slightly worse"
Blur.Type.GaussianLinear.Description="Gaussian blur uses the Gaussian Bell curve as a weight for each sampled pixel, resulting in a smooth look.\nThis is a linear optimized version of the normal Gaussian blur, but might look slightly worse."
Blur.Type.DualFiltering="Dual Filtering"
Blur.Type.DualFiltering.Description="Dual Filtering is a Gaussian approximation that is able to get similar results as Gaussian blur at much lower cost."
Blur.Subtype.Area="Area"