diff --git a/ShareX.ScreenCaptureLib/Properties/Resources.Designer.cs b/ShareX.ScreenCaptureLib/Properties/Resources.Designer.cs index 205054b6e..fb526b8ea 100644 --- a/ShareX.ScreenCaptureLib/Properties/Resources.Designer.cs +++ b/ShareX.ScreenCaptureLib/Properties/Resources.Designer.cs @@ -629,6 +629,15 @@ internal class Resources { } } + /// + /// Looks up a localized string similar to FPS limit:. + /// + internal static string FPSLimit { + get { + return ResourceManager.GetString("FPSLimit", resourceCulture); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/ShareX.ScreenCaptureLib/Properties/Resources.resx b/ShareX.ScreenCaptureLib/Properties/Resources.resx index 98cf4babb..1eb46074b 100644 --- a/ShareX.ScreenCaptureLib/Properties/Resources.resx +++ b/ShareX.ScreenCaptureLib/Properties/Resources.resx @@ -792,4 +792,7 @@ X: {4} Y: {5} Auto copy image to clipboard + + FPS limit: + \ No newline at end of file diff --git a/ShareX.ScreenCaptureLib/Shapes/ShapeManagerMenu.cs b/ShareX.ScreenCaptureLib/Shapes/ShapeManagerMenu.cs index 41aa84802..c0acd4c39 100644 --- a/ShareX.ScreenCaptureLib/Shapes/ShapeManagerMenu.cs +++ b/ShareX.ScreenCaptureLib/Shapes/ShapeManagerMenu.cs @@ -989,8 +989,7 @@ internal void CreateToolbar() }; tsddbOptions.DropDownItems.Add(tsmiShowFPS); - // TODO: Translate - ToolStripLabeledNumericUpDown tslnudFPSLimit = new ToolStripLabeledNumericUpDown("FPS limit:"); + ToolStripLabeledNumericUpDown tslnudFPSLimit = new ToolStripLabeledNumericUpDown(Resources.FPSLimit); tslnudFPSLimit.Content.Minimum = 0; tslnudFPSLimit.Content.Maximum = 300; tslnudFPSLimit.Content.Value = Options.FPSLimit;