diff --git a/Pinta.Core/Actions/AddinActions.cs b/Pinta.Core/Actions/AddinActions.cs index d201c7436e..494fcfb5a0 100644 --- a/Pinta.Core/Actions/AddinActions.cs +++ b/Pinta.Core/Actions/AddinActions.cs @@ -37,7 +37,7 @@ public class AddinActions public AddinActions () { - AddinManager = new Gtk.Action ("AddinManager", Catalog.GetString ("Add-in Manager"), + AddinManager = new Gtk.Action ("AddinManager", Catalog.GetString ("_Add-in Manager"), null, "Menu.Edit.Addins.png"); } diff --git a/Pinta.Core/Actions/EditActions.cs b/Pinta.Core/Actions/EditActions.cs index 057a57dbfc..72e386deaf 100644 --- a/Pinta.Core/Actions/EditActions.cs +++ b/Pinta.Core/Actions/EditActions.cs @@ -66,24 +66,24 @@ public EditActions () fact.Add ("Menu.Edit.Addins.png", new Gtk.IconSet (PintaCore.Resources.GetIcon ("Menu.Edit.Addins.png"))); fact.AddDefault (); - Undo = new Gtk.Action ("Undo", Catalog.GetString ("Undo"), null, Stock.Undo); - Redo = new Gtk.Action ("Redo", Catalog.GetString ("Redo"), null, Stock.Redo); - Cut = new Gtk.Action ("Cut", Catalog.GetString ("Cut"), null, Stock.Cut); - Copy = new Gtk.Action ("Copy", Catalog.GetString ("Copy"), null, Stock.Copy); - CopyMerged = new Gtk.Action ("CopyMerged", Catalog.GetString ("Copy Merged"), null, Stock.Copy); - Paste = new Gtk.Action ("Paste", Catalog.GetString ("Paste"), null, Stock.Paste); - PasteIntoNewLayer = new Gtk.Action ("PasteIntoNewLayer", Catalog.GetString ("Paste Into New Layer"), null, Stock.Paste); - PasteIntoNewImage = new Gtk.Action ("PasteIntoNewImage", Catalog.GetString ("Paste Into New Image"), null, Stock.Paste); - EraseSelection = new Gtk.Action ("EraseSelection", Catalog.GetString ("Erase Selection"), null, "Menu.Edit.EraseSelection.png"); - FillSelection = new Gtk.Action ("FillSelection", Catalog.GetString ("Fill Selection"), null, "Menu.Edit.FillSelection.png"); - InvertSelection = new Gtk.Action ("InvertSelection", Catalog.GetString ("Invert Selection"), null, "Menu.Edit.InvertSelection.png"); - SelectAll = new Gtk.Action ("SelectAll", Catalog.GetString ("Select All"), null, Stock.SelectAll); - Deselect = new Gtk.Action ("Deselect", Catalog.GetString ("Deselect All"), null, "Menu.Edit.Deselect.png"); + Undo = new Gtk.Action ("Undo", Catalog.GetString ("_Undo"), null, Stock.Undo); + Redo = new Gtk.Action ("Redo", Catalog.GetString ("_Redo"), null, Stock.Redo); + Cut = new Gtk.Action ("Cut", Catalog.GetString ("C_ut"), null, Stock.Cut); + Copy = new Gtk.Action ("Copy", Catalog.GetString ("_Copy"), null, Stock.Copy); + CopyMerged = new Gtk.Action ("CopyMerged", Catalog.GetString ("C_opy Merged"), null, Stock.Copy); + Paste = new Gtk.Action ("Paste", Catalog.GetString ("_Paste"), null, Stock.Paste); + PasteIntoNewLayer = new Gtk.Action ("PasteIntoNewLayer", Catalog.GetString ("Paste Into New _Layer"), null, Stock.Paste); + PasteIntoNewImage = new Gtk.Action ("PasteIntoNewImage", Catalog.GetString ("P_aste Into New Image"), null, Stock.Paste); + EraseSelection = new Gtk.Action ("EraseSelection", Catalog.GetString ("_Erase Selection"), null, "Menu.Edit.EraseSelection.png"); + FillSelection = new Gtk.Action ("FillSelection", Catalog.GetString ("_Fill Selection"), null, "Menu.Edit.FillSelection.png"); + InvertSelection = new Gtk.Action ("InvertSelection", Catalog.GetString ("_Invert Selection"), null, "Menu.Edit.InvertSelection.png"); + SelectAll = new Gtk.Action ("SelectAll", Catalog.GetString ("_Select All"), null, Stock.SelectAll); + Deselect = new Gtk.Action ("Deselect", Catalog.GetString ("_Deselect All"), null, "Menu.Edit.Deselect.png"); - LoadPalette = new Gtk.Action ("LoadPalette", Catalog.GetString ("Open..."), null, Stock.Open); - SavePalette = new Gtk.Action ("SavePalette", Catalog.GetString ("Save As..."), null, Stock.Save); - ResetPalette = new Gtk.Action ("ResetPalette", Catalog.GetString ("Reset to Default"), null, Stock.RevertToSaved); - ResizePalette = new Gtk.Action ("ResizePalette", Catalog.GetString ("Set Number of Colors"), null, "Menu.Image.Resize.png"); + LoadPalette = new Gtk.Action ("LoadPalette", Catalog.GetString ("_Open..."), null, Stock.Open); + SavePalette = new Gtk.Action ("SavePalette", Catalog.GetString ("_Save As..."), null, Stock.Save); + ResetPalette = new Gtk.Action ("ResetPalette", Catalog.GetString ("_Reset to Default"), null, Stock.RevertToSaved); + ResizePalette = new Gtk.Action ("ResizePalette", Catalog.GetString ("Set _Number of Colors"), null, "Menu.Image.Resize.png"); Undo.IsImportant = true; Undo.Sensitive = false; @@ -124,7 +124,7 @@ public void CreateMainMenu (Gtk.Menu menu) menu.Append (InvertSelection.CreateAcceleratedMenuItem (Gdk.Key.I, Gdk.ModifierType.ControlMask)); menu.AppendSeparator (); - Gtk.Action menu_action = new Gtk.Action ("Palette", Mono.Unix.Catalog.GetString ("Palette"), null, null); + Gtk.Action menu_action = new Gtk.Action ("Palette", Mono.Unix.Catalog.GetString ("Pa_lette"), null, null); Menu palette_menu = (Menu) menu.AppendItem (menu_action.CreateSubMenuItem ()).Submenu; palette_menu.Append (LoadPalette.CreateMenuItem ()); palette_menu.Append (SavePalette.CreateMenuItem ()); diff --git a/Pinta.Core/Actions/FileActions.cs b/Pinta.Core/Actions/FileActions.cs index cf5bf6a3a5..b4b8c852e9 100644 --- a/Pinta.Core/Actions/FileActions.cs +++ b/Pinta.Core/Actions/FileActions.cs @@ -51,10 +51,10 @@ public class FileActions public FileActions () { - New = new Gtk.Action ("New", Catalog.GetString ("New..."), null, Stock.New); - NewScreenshot = new Gtk.Action ("NewScreenshot", Catalog.GetString ("New Screenshot..."), null, Stock.Fullscreen); - Open = new Gtk.Action ("Open", Catalog.GetString ("Open..."), null, Stock.Open); - OpenRecent = new RecentAction ("OpenRecent", Catalog.GetString ("Open Recent"), null, Stock.Open, RecentManager.Default); + New = new Gtk.Action ("New", Catalog.GetString ("_New..."), null, Stock.New); + NewScreenshot = new Gtk.Action ("NewScreenshot", Catalog.GetString ("New Screensho_t..."), null, Stock.Fullscreen); + Open = new Gtk.Action ("Open", Catalog.GetString ("_Open..."), null, Stock.Open); + OpenRecent = new RecentAction ("OpenRecent", Catalog.GetString ("Open _Recent"), null, Stock.Open, RecentManager.Default); // Show tooltip on selected file displaying the full path OpenRecent.ShowTips = true; @@ -63,11 +63,11 @@ public FileActions () (OpenRecent as RecentAction).AddFilter (recentFilter); - Close = new Gtk.Action ("Close", Catalog.GetString ("Close"), null, Stock.Close); - Save = new Gtk.Action ("Save", Catalog.GetString ("Save"), null, Stock.Save); - SaveAs = new Gtk.Action ("SaveAs", Catalog.GetString ("Save As..."), null, Stock.SaveAs); - Print = new Gtk.Action ("Print", Catalog.GetString ("Print"), null, Stock.Print); - Exit = new Gtk.Action ("Exit", Catalog.GetString ("Quit"), null, Stock.Quit); + Close = new Gtk.Action ("Close", Catalog.GetString ("_Close"), null, Stock.Close); + Save = new Gtk.Action ("Save", Catalog.GetString ("_Save"), null, Stock.Save); + SaveAs = new Gtk.Action ("SaveAs", Catalog.GetString ("Save _As..."), null, Stock.SaveAs); + Print = new Gtk.Action ("Print", Catalog.GetString ("_Print"), null, Stock.Print); + Exit = new Gtk.Action ("Exit", Catalog.GetString ("_Quit"), null, Stock.Quit); New.ShortLabel = Catalog.GetString ("New"); Open.ShortLabel = Catalog.GetString ("Open"); diff --git a/Pinta.Core/Actions/HelpActions.cs b/Pinta.Core/Actions/HelpActions.cs index 03d4a4ed05..823333940c 100644 --- a/Pinta.Core/Actions/HelpActions.cs +++ b/Pinta.Core/Actions/HelpActions.cs @@ -49,11 +49,11 @@ public HelpActions () fact.Add ("Menu.Help.Translate.png", new Gtk.IconSet (PintaCore.Resources.GetIcon ("Menu.Help.Translate.png"))); fact.AddDefault (); - Contents = new Gtk.Action ("Contents", Catalog.GetString ("Contents"), null, Stock.Help); - Website = new Gtk.Action ("Website", Catalog.GetString ("Pinta Website"), null, "Menu.Help.Website.png"); - Bugs = new Gtk.Action ("Bugs", Catalog.GetString ("File a Bug"), null, "Menu.Help.Bug.png"); - Translate = new Gtk.Action ("Translate", Catalog.GetString ("Translate This Application"), null, "Menu.Help.Translate.png"); - About = new Gtk.Action ("About", Catalog.GetString ("About"), null, Stock.About); + Contents = new Gtk.Action ("Contents", Catalog.GetString ("_Contents"), null, Stock.Help); + Website = new Gtk.Action ("Website", Catalog.GetString ("Pinta _Website"), null, "Menu.Help.Website.png"); + Bugs = new Gtk.Action ("Bugs", Catalog.GetString ("File a _Bug"), null, "Menu.Help.Bug.png"); + Translate = new Gtk.Action ("Translate", Catalog.GetString ("_Translate This Application"), null, "Menu.Help.Translate.png"); + About = new Gtk.Action ("About", Catalog.GetString ("_About"), null, Stock.About); } #region Initialization diff --git a/Pinta.Core/Actions/ImageActions.cs b/Pinta.Core/Actions/ImageActions.cs index d5b0679b5c..1602928d89 100644 --- a/Pinta.Core/Actions/ImageActions.cs +++ b/Pinta.Core/Actions/ImageActions.cs @@ -57,16 +57,16 @@ public ImageActions () fact.Add ("Menu.Image.Rotate90CW.png", new Gtk.IconSet (PintaCore.Resources.GetIcon ("Menu.Image.Rotate90CW.png"))); fact.AddDefault (); - CropToSelection = new Gtk.Action ("CropToSelection", Catalog.GetString ("Crop to Selection"), null, "Menu.Image.Crop.png"); - AutoCrop = new Gtk.Action ("AutoCrop", Catalog.GetString ("Auto Crop"), null, "Menu.Image.Crop.png"); - Resize = new Gtk.Action ("Resize", Catalog.GetString ("Resize Image..."), null, "Menu.Image.Resize.png"); - CanvasSize = new Gtk.Action ("CanvasSize", Catalog.GetString ("Resize Canvas..."), null, "Menu.Image.CanvasSize.png"); - FlipHorizontal = new Gtk.Action ("FlipHorizontal", Catalog.GetString ("Flip Horizontal"), null, "Menu.Image.FlipHorizontal.png"); - FlipVertical = new Gtk.Action ("FlipVertical", Catalog.GetString ("Flip Vertical"), null, "Menu.Image.FlipVertical.png"); - RotateCW = new Gtk.Action ("RotateCW", Catalog.GetString ("Rotate 90° Clockwise"), null, "Menu.Image.Rotate90CW.png"); - RotateCCW = new Gtk.Action ("RotateCCW", Catalog.GetString ("Rotate 90° Counter-Clockwise"), null, "Menu.Image.Rotate90CCW.png"); - Rotate180 = new Gtk.Action ("Rotate180", Catalog.GetString ("Rotate 180°"), null, "Menu.Image.Rotate180CW.png"); - Flatten = new Gtk.Action ("Flatten", Catalog.GetString ("Flatten"), null, "Menu.Image.Flatten.png"); + CropToSelection = new Gtk.Action ("CropToSelection", Catalog.GetString ("_Crop to Selection"), null, "Menu.Image.Crop.png"); + AutoCrop = new Gtk.Action ("AutoCrop", Catalog.GetString ("_Auto Crop"), null, "Menu.Image.Crop.png"); + Resize = new Gtk.Action ("Resize", Catalog.GetString ("_Resize Image..."), null, "Menu.Image.Resize.png"); + CanvasSize = new Gtk.Action ("CanvasSize", Catalog.GetString ("Resi_ze Canvas..."), null, "Menu.Image.CanvasSize.png"); + FlipHorizontal = new Gtk.Action ("FlipHorizontal", Catalog.GetString ("Flip _Horizontal"), null, "Menu.Image.FlipHorizontal.png"); + FlipVertical = new Gtk.Action ("FlipVertical", Catalog.GetString ("Flip _Vertical"), null, "Menu.Image.FlipVertical.png"); + RotateCW = new Gtk.Action ("RotateCW", Catalog.GetString ("Rotate _90° Clockwise"), null, "Menu.Image.Rotate90CW.png"); + RotateCCW = new Gtk.Action ("RotateCCW", Catalog.GetString ("Rotate 9_0° Counter-Clockwise"), null, "Menu.Image.Rotate90CCW.png"); + Rotate180 = new Gtk.Action ("Rotate180", Catalog.GetString ("Rotate _180°"), null, "Menu.Image.Rotate180CW.png"); + Flatten = new Gtk.Action ("Flatten", Catalog.GetString ("_Flatten"), null, "Menu.Image.Flatten.png"); CropToSelection.Sensitive = false; } diff --git a/Pinta.Core/Actions/LayerActions.cs b/Pinta.Core/Actions/LayerActions.cs index 6e4c099a3a..ecea4c73fe 100644 --- a/Pinta.Core/Actions/LayerActions.cs +++ b/Pinta.Core/Actions/LayerActions.cs @@ -62,17 +62,17 @@ public LayerActions () fact.Add ("Menu.Layers.RotateZoom.png", new Gtk.IconSet (PintaCore.Resources.GetIcon ("Menu.Layers.RotateZoom.png"))); fact.AddDefault (); - AddNewLayer = new Gtk.Action ("AddNewLayer", Catalog.GetString ("Add New Layer"), null, "Menu.Layers.AddNewLayer.png"); - DeleteLayer = new Gtk.Action ("DeleteLayer", Catalog.GetString ("Delete Layer"), null, "Menu.Layers.DeleteLayer.png"); - DuplicateLayer = new Gtk.Action ("DuplicateLayer", Catalog.GetString ("Duplicate Layer"), null, "Menu.Layers.DuplicateLayer.png"); - MergeLayerDown = new Gtk.Action ("MergeLayerDown", Catalog.GetString ("Merge Layer Down"), null, "Menu.Layers.MergeLayerDown.png"); - ImportFromFile = new Gtk.Action ("ImportFromFile", Catalog.GetString ("Import from File..."), null, "Menu.Layers.ImportFromFile.png"); - FlipHorizontal = new Gtk.Action ("FlipHorizontal", Catalog.GetString ("Flip Horizontal"), null, "Menu.Layers.FlipHorizontal.png"); - FlipVertical = new Gtk.Action ("FlipVertical", Catalog.GetString ("Flip Vertical"), null, "Menu.Layers.FlipVertical.png"); - RotateZoom = new Gtk.Action ("RotateZoom", Catalog.GetString ("Rotate / Zoom Layer..."), null, "Menu.Layers.RotateZoom.png"); + AddNewLayer = new Gtk.Action ("AddNewLayer", Catalog.GetString ("Add _New Layer"), null, "Menu.Layers.AddNewLayer.png"); + DeleteLayer = new Gtk.Action ("DeleteLayer", Catalog.GetString ("_Delete Layer"), null, "Menu.Layers.DeleteLayer.png"); + DuplicateLayer = new Gtk.Action ("DuplicateLayer", Catalog.GetString ("Du_plicate Layer"), null, "Menu.Layers.DuplicateLayer.png"); + MergeLayerDown = new Gtk.Action ("MergeLayerDown", Catalog.GetString ("_Merge Layer Down"), null, "Menu.Layers.MergeLayerDown.png"); + ImportFromFile = new Gtk.Action ("ImportFromFile", Catalog.GetString ("_Import from File..."), null, "Menu.Layers.ImportFromFile.png"); + FlipHorizontal = new Gtk.Action ("FlipHorizontal", Catalog.GetString ("Flip _Horizontal"), null, "Menu.Layers.FlipHorizontal.png"); + FlipVertical = new Gtk.Action ("FlipVertical", Catalog.GetString ("Flip _Vertical"), null, "Menu.Layers.FlipVertical.png"); + RotateZoom = new Gtk.Action ("RotateZoom", Catalog.GetString ("_Rotate / Zoom Layer..."), null, "Menu.Layers.RotateZoom.png"); MoveLayerUp = new Gtk.Action ("MoveLayerUp", Catalog.GetString ("Move Layer Up"), null, "Menu.Layers.MoveLayerUp.png"); - MoveLayerDown = new Gtk.Action ("MoveLayerDown", Catalog.GetString ("Move Layer Down"), null, "Menu.Layers.MoveLayerDown.png"); - Properties = new Gtk.Action ("Properties", Catalog.GetString ("Layer Properties..."), null, "Menu.Layers.LayerProperties.png"); + MoveLayerDown = new Gtk.Action ("MoveLayerDown", Catalog.GetString ("Mo_ve Layer Down"), null, "Menu.Layers.MoveLayerDown.png"); + Properties = new Gtk.Action ("Properties", Catalog.GetString ("Layer _Properties..."), null, "Menu.Layers.LayerProperties.png"); RotateZoom.Sensitive = false; } diff --git a/Pinta.Core/Actions/ViewActions.cs b/Pinta.Core/Actions/ViewActions.cs index 04b70ed16d..7601ae8e19 100644 --- a/Pinta.Core/Actions/ViewActions.cs +++ b/Pinta.Core/Actions/ViewActions.cs @@ -74,19 +74,19 @@ public ViewActions () fact.Add ("Menu.View.ZoomToWindow.png", new Gtk.IconSet (PintaCore.Resources.GetIcon ("Menu.View.ZoomToWindow.png"))); fact.AddDefault (); - ZoomIn = new Gtk.Action ("ZoomIn", Catalog.GetString ("Zoom In"), null, Stock.ZoomIn); - ZoomOut = new Gtk.Action ("ZoomOut", Catalog.GetString ("Zoom Out"), null, Stock.ZoomOut); - ZoomToWindow = new Gtk.Action ("ZoomToWindow", Catalog.GetString ("Best Fit"), null, Stock.ZoomFit); - ZoomToSelection = new Gtk.Action ("ZoomToSelection", Catalog.GetString ("Zoom to Selection"), null, "Menu.View.ZoomToSelection.png"); - ActualSize = new Gtk.Action ("ActualSize", Catalog.GetString ("Normal Size"), null, Stock.Zoom100); - ToolBar = new Gtk.ToggleAction ("Toolbar", Catalog.GetString ("Toolbar"), null, null); - ImageTabs = new Gtk.ToggleAction ("ImageTabs", Catalog.GetString ("Image Tabs"), null, null); - PixelGrid = new Gtk.ToggleAction ("PixelGrid", Catalog.GetString ("Pixel Grid"), null, "Menu.View.Grid.png"); - Rulers = new Gtk.ToggleAction ("Rulers", Catalog.GetString ("Rulers"), null, "Menu.View.Rulers.png"); - Pixels = new Gtk.RadioAction ("Pixels", Catalog.GetString ("Pixels"), null, null, 0); - Inches = new Gtk.RadioAction ("Inches", Catalog.GetString ("Inches"), null, null, 1); - Centimeters = new Gtk.RadioAction ("Centimeters", Catalog.GetString ("Centimeters"), null, null, 2); - Fullscreen = new Gtk.Action ("Fullscreen", Catalog.GetString ("Fullscreen"), null, Stock.Fullscreen); + ZoomIn = new Gtk.Action ("ZoomIn", Catalog.GetString ("Zoom _In"), null, Stock.ZoomIn); + ZoomOut = new Gtk.Action ("ZoomOut", Catalog.GetString ("Zoom _Out"), null, Stock.ZoomOut); + ZoomToWindow = new Gtk.Action ("ZoomToWindow", Catalog.GetString ("_Best Fit"), null, Stock.ZoomFit); + ZoomToSelection = new Gtk.Action ("ZoomToSelection", Catalog.GetString ("_Zoom to Selection"), null, "Menu.View.ZoomToSelection.png"); + ActualSize = new Gtk.Action ("ActualSize", Catalog.GetString ("_Normal Size"), null, Stock.Zoom100); + ToolBar = new Gtk.ToggleAction ("Toolbar", Catalog.GetString ("_Toolbar"), null, null); + ImageTabs = new Gtk.ToggleAction ("ImageTabs", Catalog.GetString ("I_mage Tabs"), null, null); + PixelGrid = new Gtk.ToggleAction ("PixelGrid", Catalog.GetString ("_Pixel Grid"), null, "Menu.View.Grid.png"); + Rulers = new Gtk.ToggleAction ("Rulers", Catalog.GetString ("_Rulers"), null, "Menu.View.Rulers.png"); + Pixels = new Gtk.RadioAction ("Pixels", Catalog.GetString ("_Pixels"), null, null, 0); + Inches = new Gtk.RadioAction ("Inches", Catalog.GetString ("_Inches"), null, null, 1); + Centimeters = new Gtk.RadioAction ("Centimeters", Catalog.GetString ("_Centimeters"), null, null, 2); + Fullscreen = new Gtk.Action ("Fullscreen", Catalog.GetString ("_Fullscreen"), null, Stock.Fullscreen); ZoomCollection = new string[] { ToPercent (36), @@ -160,7 +160,7 @@ public void CreateMainMenu (Gtk.Menu menu) menu.AppendSeparator (); - Gtk.Action unit_action = new Gtk.Action ("RulerUnits", Mono.Unix.Catalog.GetString ("Ruler Units"), null, null); + Gtk.Action unit_action = new Gtk.Action ("RulerUnits", Mono.Unix.Catalog.GetString ("Ruler _Units"), null, null); Menu unit_menu = (Menu)menu.AppendItem (unit_action.CreateSubMenuItem ()).Submenu; unit_menu.Append (Pixels.CreateMenuItem ()); unit_menu.Append (Inches.CreateMenuItem ()); diff --git a/Pinta.Core/Actions/WindowActions.cs b/Pinta.Core/Actions/WindowActions.cs index 2b5ad7ce4b..05a2457e1f 100644 --- a/Pinta.Core/Actions/WindowActions.cs +++ b/Pinta.Core/Actions/WindowActions.cs @@ -42,8 +42,8 @@ public class WindowActions public WindowActions () { - SaveAll = new Gtk.Action ("SaveAll", Catalog.GetString ("Save All"), null, Stock.Save); - CloseAll = new Gtk.Action ("CloseAll", Catalog.GetString ("Close All"), null, Stock.Close); + SaveAll = new Gtk.Action ("SaveAll", Catalog.GetString ("_Save All"), null, Stock.Save); + CloseAll = new Gtk.Action ("CloseAll", Catalog.GetString ("_Close All"), null, Stock.Close); OpenWindows = new List (); action_menu_items = new Dictionary (); diff --git a/Pinta.Effects/Adjustments/AutoLevelEffect.cs b/Pinta.Effects/Adjustments/AutoLevelEffect.cs index 3f544570bc..af759a2694 100644 --- a/Pinta.Effects/Adjustments/AutoLevelEffect.cs +++ b/Pinta.Effects/Adjustments/AutoLevelEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Auto Level"); } + get { return Mono.Unix.Catalog.GetString ("_Auto Level"); } } public override Gdk.Key AdjustmentMenuKey { diff --git a/Pinta.Effects/Adjustments/BlackAndWhiteEffect.cs b/Pinta.Effects/Adjustments/BlackAndWhiteEffect.cs index 2cf2e72250..4c36684b66 100644 --- a/Pinta.Effects/Adjustments/BlackAndWhiteEffect.cs +++ b/Pinta.Effects/Adjustments/BlackAndWhiteEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Black and White"); } + get { return Mono.Unix.Catalog.GetString ("Black and _White"); } } public override Gdk.Key AdjustmentMenuKey { diff --git a/Pinta.Effects/Adjustments/BrightnessContrastEffect.cs b/Pinta.Effects/Adjustments/BrightnessContrastEffect.cs index f70685c772..c371acd3e8 100644 --- a/Pinta.Effects/Adjustments/BrightnessContrastEffect.cs +++ b/Pinta.Effects/Adjustments/BrightnessContrastEffect.cs @@ -26,7 +26,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Brightness / Contrast"); } + get { return Mono.Unix.Catalog.GetString ("_Brightness / Contrast"); } } public override bool IsConfigurable { diff --git a/Pinta.Effects/Adjustments/CurvesEffect.cs b/Pinta.Effects/Adjustments/CurvesEffect.cs index fc00c72971..d6d9916a20 100644 --- a/Pinta.Effects/Adjustments/CurvesEffect.cs +++ b/Pinta.Effects/Adjustments/CurvesEffect.cs @@ -24,7 +24,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Curves"); } + get { return Mono.Unix.Catalog.GetString ("_Curves"); } } public override bool IsConfigurable { diff --git a/Pinta.Effects/Adjustments/HueSaturationEffect.cs b/Pinta.Effects/Adjustments/HueSaturationEffect.cs index 59a3d06528..eba9431bad 100644 --- a/Pinta.Effects/Adjustments/HueSaturationEffect.cs +++ b/Pinta.Effects/Adjustments/HueSaturationEffect.cs @@ -23,7 +23,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Hue / Saturation"); } + get { return Mono.Unix.Catalog.GetString ("_Hue / Saturation"); } } public override bool IsConfigurable { diff --git a/Pinta.Effects/Adjustments/InvertColorsEffect.cs b/Pinta.Effects/Adjustments/InvertColorsEffect.cs index 94de46302b..2695982352 100644 --- a/Pinta.Effects/Adjustments/InvertColorsEffect.cs +++ b/Pinta.Effects/Adjustments/InvertColorsEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Invert Colors"); } + get { return Mono.Unix.Catalog.GetString ("_Invert Colors"); } } public override Gdk.Key AdjustmentMenuKey { diff --git a/Pinta.Effects/Adjustments/LevelsEffect.cs b/Pinta.Effects/Adjustments/LevelsEffect.cs index 271808a899..351e90eb15 100644 --- a/Pinta.Effects/Adjustments/LevelsEffect.cs +++ b/Pinta.Effects/Adjustments/LevelsEffect.cs @@ -20,7 +20,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Levels"); } + get { return Mono.Unix.Catalog.GetString ("_Levels"); } } public override bool IsConfigurable { diff --git a/Pinta.Effects/Adjustments/PosterizeEffect.cs b/Pinta.Effects/Adjustments/PosterizeEffect.cs index 6495b5d2e4..ad1a006979 100644 --- a/Pinta.Effects/Adjustments/PosterizeEffect.cs +++ b/Pinta.Effects/Adjustments/PosterizeEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Posterize"); } + get { return Mono.Unix.Catalog.GetString ("_Posterize"); } } public override bool IsConfigurable { diff --git a/Pinta.Effects/Adjustments/SepiaEffect.cs b/Pinta.Effects/Adjustments/SepiaEffect.cs index 1191fa5392..3381857983 100644 --- a/Pinta.Effects/Adjustments/SepiaEffect.cs +++ b/Pinta.Effects/Adjustments/SepiaEffect.cs @@ -23,7 +23,7 @@ public override string Icon { } public override string Name { - get { return Mono.Unix.Catalog.GetString ("Sepia"); } + get { return Mono.Unix.Catalog.GetString ("_Sepia"); } } public override Gdk.Key AdjustmentMenuKey { diff --git a/Pinta.Effects/Effects/AddNoiseEffect.cs b/Pinta.Effects/Effects/AddNoiseEffect.cs index 3e13a98521..4f4e2a7804 100644 --- a/Pinta.Effects/Effects/AddNoiseEffect.cs +++ b/Pinta.Effects/Effects/AddNoiseEffect.cs @@ -26,7 +26,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Add Noise"); } + get { return Catalog.GetString ("_Add Noise"); } } public override bool IsConfigurable { @@ -34,7 +34,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Noise"); } + get { return Catalog.GetString ("_Noise"); } } public NoiseData Data { get { return EffectData as NoiseData; } } diff --git a/Pinta.Effects/Effects/BulgeEffect.cs b/Pinta.Effects/Effects/BulgeEffect.cs index d09f5bf2d9..a9c6e4a4e2 100644 --- a/Pinta.Effects/Effects/BulgeEffect.cs +++ b/Pinta.Effects/Effects/BulgeEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Bulge"); } + get { return Catalog.GetString ("_Bulge"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Distort"); } + get { return Catalog.GetString ("_Distort"); } } public BulgeData Data { diff --git a/Pinta.Effects/Effects/CloudsEffect.cs b/Pinta.Effects/Effects/CloudsEffect.cs index 92e0d72c66..2982f0e2c6 100644 --- a/Pinta.Effects/Effects/CloudsEffect.cs +++ b/Pinta.Effects/Effects/CloudsEffect.cs @@ -27,7 +27,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Clouds"); } + get { return Catalog.GetString ("_Clouds"); } } public override bool IsConfigurable { @@ -35,7 +35,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Render"); } + get { return Catalog.GetString ("_Render"); } } public CloudsData Data { get { return EffectData as CloudsData; } } diff --git a/Pinta.Effects/Effects/EdgeDetectEffect.cs b/Pinta.Effects/Effects/EdgeDetectEffect.cs index 9bd1433a0f..dddb4f0b20 100644 --- a/Pinta.Effects/Effects/EdgeDetectEffect.cs +++ b/Pinta.Effects/Effects/EdgeDetectEffect.cs @@ -25,7 +25,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Edge Detect"); } + get { return Catalog.GetString ("Ed_ge Detect"); } } public override bool IsConfigurable { @@ -33,7 +33,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Stylize"); } + get { return Catalog.GetString ("_Stylize"); } } public EdgeDetectData Data { get { return EffectData as EdgeDetectData; } } diff --git a/Pinta.Effects/Effects/EmbossEffect.cs b/Pinta.Effects/Effects/EmbossEffect.cs index 23c27c09ce..2fc3dc8c50 100644 --- a/Pinta.Effects/Effects/EmbossEffect.cs +++ b/Pinta.Effects/Effects/EmbossEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Emboss"); } + get { return Catalog.GetString ("_Emboss"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Stylize"); } + get { return Catalog.GetString ("_Stylize"); } } public EmbossData Data { diff --git a/Pinta.Effects/Effects/FragmentEffect.cs b/Pinta.Effects/Effects/FragmentEffect.cs index d0db4b0de0..4a17b3e39e 100644 --- a/Pinta.Effects/Effects/FragmentEffect.cs +++ b/Pinta.Effects/Effects/FragmentEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Fragment"); } + get { return Catalog.GetString ("_Fragment"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Blurs"); } + get { return Catalog.GetString ("_Blurs"); } } public FragmentData Data { get { return EffectData as FragmentData; } } diff --git a/Pinta.Effects/Effects/FrostedGlassEffect.cs b/Pinta.Effects/Effects/FrostedGlassEffect.cs index 9541bcec8d..edad8f800f 100644 --- a/Pinta.Effects/Effects/FrostedGlassEffect.cs +++ b/Pinta.Effects/Effects/FrostedGlassEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Frosted Glass"); } + get { return Catalog.GetString ("_Frosted Glass"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Distort"); } + get { return Catalog.GetString ("_Distort"); } } public FrostedGlassData Data { diff --git a/Pinta.Effects/Effects/GaussianBlurEffect.cs b/Pinta.Effects/Effects/GaussianBlurEffect.cs index fa76e734b3..4ab4e069b1 100644 --- a/Pinta.Effects/Effects/GaussianBlurEffect.cs +++ b/Pinta.Effects/Effects/GaussianBlurEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Gaussian Blur"); } + get { return Catalog.GetString ("_Gaussian Blur"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Blurs"); } + get { return Catalog.GetString ("_Blurs"); } } public GaussianBlurData Data { get { return EffectData as GaussianBlurData; } } diff --git a/Pinta.Effects/Effects/GlowEffect.cs b/Pinta.Effects/Effects/GlowEffect.cs index a6bb6a2be2..7853d0e102 100644 --- a/Pinta.Effects/Effects/GlowEffect.cs +++ b/Pinta.Effects/Effects/GlowEffect.cs @@ -27,7 +27,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Glow"); } + get { return Catalog.GetString ("_Glow"); } } public override bool IsConfigurable { @@ -35,7 +35,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Photo"); } + get { return Catalog.GetString ("_Photo"); } } public GlowData Data { get { return EffectData as GlowData; } } diff --git a/Pinta.Effects/Effects/InkSketchEffect.cs b/Pinta.Effects/Effects/InkSketchEffect.cs index c26a557c24..4f05a5665e 100644 --- a/Pinta.Effects/Effects/InkSketchEffect.cs +++ b/Pinta.Effects/Effects/InkSketchEffect.cs @@ -30,7 +30,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Ink Sketch"); } + get { return Catalog.GetString ("_Ink Sketch"); } } public override bool IsConfigurable { @@ -38,7 +38,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Artistic"); } + get { return Catalog.GetString ("_Artistic"); } } public InkSketchData Data { get { return EffectData as InkSketchData; } } diff --git a/Pinta.Effects/Effects/JuliaFractalEffect.cs b/Pinta.Effects/Effects/JuliaFractalEffect.cs index 56a3ef1a98..d462aa75e8 100644 --- a/Pinta.Effects/Effects/JuliaFractalEffect.cs +++ b/Pinta.Effects/Effects/JuliaFractalEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Julia Fractal"); } + get { return Catalog.GetString ("_Julia Fractal"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Render"); } + get { return Catalog.GetString ("_Render"); } } public JuliaFractalData Data { get { return EffectData as JuliaFractalData; } } diff --git a/Pinta.Effects/Effects/MandelbrotFractalEffect.cs b/Pinta.Effects/Effects/MandelbrotFractalEffect.cs index 1c11771bb7..db3d24010c 100644 --- a/Pinta.Effects/Effects/MandelbrotFractalEffect.cs +++ b/Pinta.Effects/Effects/MandelbrotFractalEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Mandelbrot Fractal"); } + get { return Catalog.GetString ("_Mandelbrot Fractal"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Render"); } + get { return Catalog.GetString ("_Render"); } } public MandelbrotFractalData Data { get { return EffectData as MandelbrotFractalData; } } diff --git a/Pinta.Effects/Effects/MedianEffect.cs b/Pinta.Effects/Effects/MedianEffect.cs index 856d4ee77e..1a0aaa2bc5 100644 --- a/Pinta.Effects/Effects/MedianEffect.cs +++ b/Pinta.Effects/Effects/MedianEffect.cs @@ -25,7 +25,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Median"); } + get { return Catalog.GetString ("_Median"); } } public override bool IsConfigurable { @@ -33,7 +33,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Noise"); } + get { return Catalog.GetString ("_Noise"); } } public MedianData Data { get { return EffectData as MedianData; } } diff --git a/Pinta.Effects/Effects/MotionBlurEffect.cs b/Pinta.Effects/Effects/MotionBlurEffect.cs index 6ff05eb6db..d825197ec7 100644 --- a/Pinta.Effects/Effects/MotionBlurEffect.cs +++ b/Pinta.Effects/Effects/MotionBlurEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Motion Blur"); } + get { return Catalog.GetString ("_Motion Blur"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Blurs"); } + get { return Catalog.GetString ("_Blurs"); } } public MotionBlurData Data { get { return EffectData as MotionBlurData; } } diff --git a/Pinta.Effects/Effects/OilPaintingEffect.cs b/Pinta.Effects/Effects/OilPaintingEffect.cs index c54de65b43..2ddc67d723 100644 --- a/Pinta.Effects/Effects/OilPaintingEffect.cs +++ b/Pinta.Effects/Effects/OilPaintingEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Oil Painting"); } + get { return Catalog.GetString ("_Oil Painting"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Artistic"); } + get { return Catalog.GetString ("_Artistic"); } } public OilPaintingData Data { get { return EffectData as OilPaintingData; } } diff --git a/Pinta.Effects/Effects/OutlineEffect.cs b/Pinta.Effects/Effects/OutlineEffect.cs index c2eab4a75e..5064e657ae 100644 --- a/Pinta.Effects/Effects/OutlineEffect.cs +++ b/Pinta.Effects/Effects/OutlineEffect.cs @@ -25,7 +25,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Outline"); } + get { return Catalog.GetString ("_Outline"); } } public override bool IsConfigurable { @@ -33,7 +33,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Stylize"); } + get { return Catalog.GetString ("_Stylize"); } } public OutlineData Data { get { return EffectData as OutlineData; } } diff --git a/Pinta.Effects/Effects/PencilSketchEffect.cs b/Pinta.Effects/Effects/PencilSketchEffect.cs index c556b943a4..8062c9444d 100644 --- a/Pinta.Effects/Effects/PencilSketchEffect.cs +++ b/Pinta.Effects/Effects/PencilSketchEffect.cs @@ -29,7 +29,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Pencil Sketch"); } + get { return Catalog.GetString ("_Pencil Sketch"); } } public override bool IsConfigurable { @@ -37,7 +37,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Artistic"); } + get { return Catalog.GetString ("_Artistic"); } } public PencilSketchData Data { get { return EffectData as PencilSketchData; } } diff --git a/Pinta.Effects/Effects/PixelateEffect.cs b/Pinta.Effects/Effects/PixelateEffect.cs index 68d8460eb7..ad74d5cd9d 100644 --- a/Pinta.Effects/Effects/PixelateEffect.cs +++ b/Pinta.Effects/Effects/PixelateEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Pixelate"); } + get { return Catalog.GetString ("Pi_xelate"); } } public override bool IsConfigurable { @@ -34,7 +34,7 @@ public PixelateData Data { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Distort"); } + get { return Catalog.GetString ("_Distort"); } } public PixelateEffect () { diff --git a/Pinta.Effects/Effects/PolarInversionEffect.cs b/Pinta.Effects/Effects/PolarInversionEffect.cs index e4ed72b644..6e737628e9 100644 --- a/Pinta.Effects/Effects/PolarInversionEffect.cs +++ b/Pinta.Effects/Effects/PolarInversionEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Polar Inversion"); } + get { return Catalog.GetString ("_Polar Inversion"); } } public override bool IsConfigurable { @@ -35,7 +35,7 @@ public override bool IsConfigurable { public override string EffectMenuCategory { - get { return Catalog.GetString ("Distort"); } + get { return Catalog.GetString ("_Distort"); } } public PolarInversionEffect () diff --git a/Pinta.Effects/Effects/RadialBlurEffect.cs b/Pinta.Effects/Effects/RadialBlurEffect.cs index 693a061ebc..1bbe383225 100644 --- a/Pinta.Effects/Effects/RadialBlurEffect.cs +++ b/Pinta.Effects/Effects/RadialBlurEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Radial Blur"); } + get { return Catalog.GetString ("_Radial Blur"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Blurs"); } + get { return Catalog.GetString ("_Blurs"); } } public RadialBlurData Data { get { return EffectData as RadialBlurData; } } diff --git a/Pinta.Effects/Effects/RedEyeRemoveEffect.cs b/Pinta.Effects/Effects/RedEyeRemoveEffect.cs index 8f4383e0ba..98a81eecb2 100644 --- a/Pinta.Effects/Effects/RedEyeRemoveEffect.cs +++ b/Pinta.Effects/Effects/RedEyeRemoveEffect.cs @@ -25,7 +25,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Red Eye Removal"); } + get { return Catalog.GetString ("_Red Eye Removal"); } } public override bool IsConfigurable { @@ -33,7 +33,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Photo"); } + get { return Catalog.GetString ("_Photo"); } } public RedEyeRemoveData Data { get { return EffectData as RedEyeRemoveData; } } diff --git a/Pinta.Effects/Effects/ReduceNoiseEffect.cs b/Pinta.Effects/Effects/ReduceNoiseEffect.cs index d540cf7b27..d6381b5ded 100644 --- a/Pinta.Effects/Effects/ReduceNoiseEffect.cs +++ b/Pinta.Effects/Effects/ReduceNoiseEffect.cs @@ -25,7 +25,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Reduce Noise"); } + get { return Catalog.GetString ("_Reduce Noise"); } } public override bool IsConfigurable { @@ -33,7 +33,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Noise"); } + get { return Catalog.GetString ("_Noise"); } } public ReduceNoiseData Data { get { return EffectData as ReduceNoiseData; } } diff --git a/Pinta.Effects/Effects/ReliefEffect.cs b/Pinta.Effects/Effects/ReliefEffect.cs index b731d9abe0..2362b60300 100644 --- a/Pinta.Effects/Effects/ReliefEffect.cs +++ b/Pinta.Effects/Effects/ReliefEffect.cs @@ -29,7 +29,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Stylize"); } + get { return Catalog.GetString ("_Stylize"); } } public override bool LaunchConfiguration () { @@ -41,7 +41,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Relief"); } + get { return Catalog.GetString ("_Relief"); } } #region Algorithm Code Ported From PDN diff --git a/Pinta.Effects/Effects/SharpenEffect.cs b/Pinta.Effects/Effects/SharpenEffect.cs index 835e6dcf59..94f27e98ce 100644 --- a/Pinta.Effects/Effects/SharpenEffect.cs +++ b/Pinta.Effects/Effects/SharpenEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Sharpen"); } + get { return Catalog.GetString ("_Sharpen"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Photo"); } + get { return Catalog.GetString ("_Photo"); } } public SharpenData Data { get { return EffectData as SharpenData; } } diff --git a/Pinta.Effects/Effects/SoftenPortraitEffect.cs b/Pinta.Effects/Effects/SoftenPortraitEffect.cs index 7fe2cee53c..f47ef568c6 100644 --- a/Pinta.Effects/Effects/SoftenPortraitEffect.cs +++ b/Pinta.Effects/Effects/SoftenPortraitEffect.cs @@ -55,7 +55,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Soften Portrait"); } + get { return Catalog.GetString ("Soften _Portrait"); } } public override bool IsConfigurable { @@ -63,7 +63,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Photo"); } + get { return Catalog.GetString ("_Photo"); } } public SoftenPortraitData Data { get { return EffectData as SoftenPortraitData; } } diff --git a/Pinta.Effects/Effects/TileEffect.cs b/Pinta.Effects/Effects/TileEffect.cs index c572a81de9..d42be86ee7 100644 --- a/Pinta.Effects/Effects/TileEffect.cs +++ b/Pinta.Effects/Effects/TileEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Tile Reflection"); } + get { return Catalog.GetString ("Tile _Reflection"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Distort"); } + get { return Catalog.GetString ("_Distort"); } } public TileData Data { diff --git a/Pinta.Effects/Effects/TwistEffect.cs b/Pinta.Effects/Effects/TwistEffect.cs index 3ae644685d..bacbdc3c60 100644 --- a/Pinta.Effects/Effects/TwistEffect.cs +++ b/Pinta.Effects/Effects/TwistEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Twist"); } + get { return Catalog.GetString ("_Twist"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Distort"); } + get { return Catalog.GetString ("_Distort"); } } public TwistData Data { get { return EffectData as TwistData; } } diff --git a/Pinta.Effects/Effects/UnfocusEffect.cs b/Pinta.Effects/Effects/UnfocusEffect.cs index b685d0a08b..3f923edfb4 100644 --- a/Pinta.Effects/Effects/UnfocusEffect.cs +++ b/Pinta.Effects/Effects/UnfocusEffect.cs @@ -24,7 +24,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Unfocus"); } + get { return Catalog.GetString ("_Unfocus"); } } public override bool IsConfigurable { @@ -32,7 +32,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Blurs"); } + get { return Catalog.GetString ("_Blurs"); } } public UnfocusData Data { get { return EffectData as UnfocusData; } } diff --git a/Pinta.Effects/Effects/ZoomBlurEffect.cs b/Pinta.Effects/Effects/ZoomBlurEffect.cs index a90d0172eb..5b32a9306b 100644 --- a/Pinta.Effects/Effects/ZoomBlurEffect.cs +++ b/Pinta.Effects/Effects/ZoomBlurEffect.cs @@ -22,7 +22,7 @@ public override string Icon { } public override string Name { - get { return Catalog.GetString ("Zoom Blur"); } + get { return Catalog.GetString ("_Zoom Blur"); } } public override bool IsConfigurable { @@ -30,7 +30,7 @@ public override bool IsConfigurable { } public override string EffectMenuCategory { - get { return Catalog.GetString ("Blurs"); } + get { return Catalog.GetString ("_Blurs"); } } public ZoomBlurData Data { get { return EffectData as ZoomBlurData; } } diff --git a/Pinta/MainWindow.cs b/Pinta/MainWindow.cs index 06d1b8aa63..bb17534b99 100644 --- a/Pinta/MainWindow.cs +++ b/Pinta/MainWindow.cs @@ -343,7 +343,7 @@ private void CreateMainMenu (WindowShell shell) window_menu.Submenu = new Menu (); main_menu.Append (window_menu); - Gtk.Action pads = new Gtk.Action ("pads", Mono.Unix.Catalog.GetString ("Tool Windows"), null, null); + Gtk.Action pads = new Gtk.Action ("pads", Mono.Unix.Catalog.GetString ("Tool _Windows"), null, null); view_menu.Submenu = new Menu (); show_pad = (Menu)((Menu)(view_menu.Submenu)).AppendItem (pads.CreateSubMenuItem ()).Submenu; diff --git a/po/messages.pot b/po/messages.pot index 1f7665d231..1e388b8174 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-01 18:12-0500\n" +"POT-Creation-Date: 2021-08-30 21:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,244 +47,255 @@ msgid "" msgstr "" #: ../Pinta.Core/Actions/AddinActions.cs:40 -msgid "Add-in Manager" +msgid "_Add-in Manager" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:69 -msgid "Undo" +msgid "_Undo" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:70 -msgid "Redo" +msgid "_Redo" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:71 -#: ../Pinta.Core/Actions/EditActions.cs:229 -msgid "Cut" +msgid "C_ut" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:72 -msgid "Copy" +msgid "_Copy" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:73 -msgid "Copy Merged" +msgid "C_opy Merged" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:74 -#: ../Pinta.Core/Classes/Document.cs:780 -#: ../Pinta.Core/HistoryItems/PasteHistoryItem.cs:43 -msgid "Paste" +msgid "_Paste" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:75 -#: ../Pinta.Core/Classes/Document.cs:776 -msgid "Paste Into New Layer" +msgid "Paste Into New _Layer" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:76 -msgid "Paste Into New Image" +msgid "P_aste Into New Image" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:77 -#: ../Pinta.Core/Actions/EditActions.cs:231 -msgid "Erase Selection" +msgid "_Erase Selection" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:78 -#: ../Pinta.Core/Actions/EditActions.cs:191 -msgid "Fill Selection" +msgid "_Fill Selection" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:79 -#: ../Pinta.Core/Actions/EditActions.cs:421 -msgid "Invert Selection" +msgid "_Invert Selection" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:80 -#: ../Pinta.Core/Actions/EditActions.cs:200 -msgid "Select All" +msgid "_Select All" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:81 -msgid "Deselect All" +msgid "_Deselect All" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:83 #: ../Pinta.Core/Actions/FileActions.cs:56 -msgid "Open..." +msgid "_Open..." msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:84 -#: ../Pinta.Core/Actions/FileActions.cs:66 -msgid "Save As..." +msgid "_Save As..." msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:85 -msgid "Reset to Default" +msgid "_Reset to Default" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:86 -msgid "Set Number of Colors" +msgid "Set _Number of Colors" msgstr "" -#: ../Pinta.Core/Actions/EditActions.cs:127 ../Pinta/Pads/ColorPalettePad.cs:42 -#: ../Pinta/Pads/ColorPalettePad.cs:49 -msgid "Palette" +#: ../Pinta.Core/Actions/EditActions.cs:127 +msgid "Pa_lette" +msgstr "" + +#: ../Pinta.Core/Actions/EditActions.cs:191 +msgid "Fill Selection" +msgstr "" + +#: ../Pinta.Core/Actions/EditActions.cs:200 +msgid "Select All" +msgstr "" + +#: ../Pinta.Core/Actions/EditActions.cs:229 +msgid "Cut" +msgstr "" + +#: ../Pinta.Core/Actions/EditActions.cs:231 +msgid "Erase Selection" msgstr "" #: ../Pinta.Core/Actions/EditActions.cs:240 msgid "Deselect" msgstr "" -#: ../Pinta.Core/Actions/EditActions.cs:336 +#: ../Pinta.Core/Actions/EditActions.cs:337 msgid "Open Palette File" msgstr "" -#: ../Pinta.Core/Actions/EditActions.cs:348 +#: ../Pinta.Core/Actions/EditActions.cs:349 msgid "Palette files" msgstr "" -#: ../Pinta.Core/Actions/EditActions.cs:352 +#: ../Pinta.Core/Actions/EditActions.cs:353 #: ../Pinta/Actions/File/OpenDocumentAction.cs:67 msgid "All files" msgstr "" -#: ../Pinta.Core/Actions/EditActions.cs:373 +#: ../Pinta.Core/Actions/EditActions.cs:374 msgid "Save Palette File" msgstr "" +#: ../Pinta.Core/Actions/EditActions.cs:422 +msgid "Invert Selection" +msgstr "" + #: ../Pinta.Core/Actions/FileActions.cs:54 -msgid "New..." +msgid "_New..." msgstr "" #: ../Pinta.Core/Actions/FileActions.cs:55 -msgid "New Screenshot..." +msgid "New Screensho_t..." msgstr "" #: ../Pinta.Core/Actions/FileActions.cs:57 -msgid "Open Recent" -msgstr "" - -#: ../Pinta.Core/Actions/FileActions.cs:64 -#: ../Pinta.Docking/DockLibrary/DockItemTitleTab.cs:175 -msgid "Close" +msgid "Open _Recent" msgstr "" -#: ../Pinta.Core/Actions/FileActions.cs:65 -msgid "Save" +#: ../Pinta.Core/Actions/FileActions.cs:66 +msgid "_Close" msgstr "" #: ../Pinta.Core/Actions/FileActions.cs:67 -msgid "Print" +msgid "_Save" msgstr "" #: ../Pinta.Core/Actions/FileActions.cs:68 -msgid "Quit" +msgid "Save _As..." +msgstr "" + +#: ../Pinta.Core/Actions/FileActions.cs:69 +msgid "_Print" msgstr "" #: ../Pinta.Core/Actions/FileActions.cs:70 +msgid "_Quit" +msgstr "" + +#: ../Pinta.Core/Actions/FileActions.cs:72 msgid "New" msgstr "" -#: ../Pinta.Core/Actions/FileActions.cs:71 +#: ../Pinta.Core/Actions/FileActions.cs:73 msgid "Open" msgstr "" #: ../Pinta.Core/Actions/HelpActions.cs:52 -msgid "Contents" +msgid "_Contents" msgstr "" #: ../Pinta.Core/Actions/HelpActions.cs:53 -msgid "Pinta Website" +msgid "Pinta _Website" msgstr "" #: ../Pinta.Core/Actions/HelpActions.cs:54 -msgid "File a Bug" +msgid "File a _Bug" msgstr "" #: ../Pinta.Core/Actions/HelpActions.cs:55 -msgid "Translate This Application" +msgid "_Translate This Application" msgstr "" -#: ../Pinta.Core/Actions/HelpActions.cs:56 ../Pinta/MainWindow.cs:362 -msgid "About" +#: ../Pinta.Core/Actions/HelpActions.cs:56 +msgid "_About" msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:60 -#: ../Pinta.Core/Actions/ImageActions.cs:291 -msgid "Crop to Selection" +msgid "_Crop to Selection" msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:61 -msgid "Auto Crop" +msgid "_Auto Crop" msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:62 -msgid "Resize Image..." +msgid "_Resize Image..." msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:63 -msgid "Resize Canvas..." +msgid "Resi_ze Canvas..." msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:64 #: ../Pinta.Core/Actions/LayerActions.cs:70 -msgid "Flip Horizontal" +msgid "Flip _Horizontal" msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:65 #: ../Pinta.Core/Actions/LayerActions.cs:71 -msgid "Flip Vertical" +msgid "Flip _Vertical" msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:66 -#: ../Pinta.Core/HistoryItems/InvertHistoryItem.cs:62 -msgid "Rotate 90° Clockwise" +msgid "Rotate _90° Clockwise" msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:67 -#: ../Pinta.Core/HistoryItems/InvertHistoryItem.cs:66 -msgid "Rotate 90° Counter-Clockwise" +msgid "Rotate 9_0° Counter-Clockwise" msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:68 -#: ../Pinta.Core/HistoryItems/InvertHistoryItem.cs:50 -msgid "Rotate 180°" +msgid "Rotate _180°" msgstr "" #: ../Pinta.Core/Actions/ImageActions.cs:69 +msgid "_Flatten" +msgstr "" + #: ../Pinta.Core/Actions/ImageActions.cs:146 msgid "Flatten" msgstr "" +#: ../Pinta.Core/Actions/ImageActions.cs:284 +msgid "Crop to Selection" +msgstr "" + #: ../Pinta.Core/Actions/LayerActions.cs:65 -#: ../Pinta.Core/Actions/LayerActions.cs:292 -#: ../Pinta.Core/Classes/Document.cs:839 -msgid "Add New Layer" +msgid "Add _New Layer" msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:66 -#: ../Pinta.Core/Actions/LayerActions.cs:275 -msgid "Delete Layer" +msgid "_Delete Layer" msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:67 -#: ../Pinta.Core/Actions/LayerActions.cs:266 -msgid "Duplicate Layer" +msgid "Du_plicate Layer" msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:68 -#: ../Pinta.Core/Actions/LayerActions.cs:244 -msgid "Merge Layer Down" +msgid "_Merge Layer Down" msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:69 -msgid "Import from File..." +msgid "_Import from File..." msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:72 -msgid "Rotate / Zoom Layer..." +msgid "_Rotate / Zoom Layer..." msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:73 @@ -293,12 +304,11 @@ msgid "Move Layer Up" msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:74 -#: ../Pinta.Core/Actions/LayerActions.cs:230 -msgid "Move Layer Down" +msgid "Mo_ve Layer Down" msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:75 -msgid "Layer Properties..." +msgid "Layer _Properties..." msgstr "" #: ../Pinta.Core/Actions/LayerActions.cs:157 @@ -310,56 +320,77 @@ msgstr "" msgid "Import From File" msgstr "" +#: ../Pinta.Core/Actions/LayerActions.cs:230 +msgid "Move Layer Down" +msgstr "" + +#: ../Pinta.Core/Actions/LayerActions.cs:244 +msgid "Merge Layer Down" +msgstr "" + +#: ../Pinta.Core/Actions/LayerActions.cs:266 +msgid "Duplicate Layer" +msgstr "" + +#: ../Pinta.Core/Actions/LayerActions.cs:275 +msgid "Delete Layer" +msgstr "" + +#: ../Pinta.Core/Actions/LayerActions.cs:292 +#: ../Pinta.Core/Classes/Document.cs:846 +msgid "Add New Layer" +msgstr "" + #: ../Pinta.Core/Actions/ViewActions.cs:77 -msgid "Zoom In" +msgid "Zoom _In" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:78 -msgid "Zoom Out" +msgid "Zoom _Out" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:79 -msgid "Best Fit" +msgid "_Best Fit" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:80 -msgid "Zoom to Selection" +msgid "_Zoom to Selection" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:81 -msgid "Normal Size" +msgid "_Normal Size" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:82 -msgid "Toolbar" +msgid "_Toolbar" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:83 -msgid "Image Tabs" +msgid "I_mage Tabs" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:84 -msgid "Pixel Grid" +msgid "_Pixel Grid" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:85 -msgid "Rulers" +msgid "_Rulers" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:86 -msgid "Pixels" +msgid "_Pixels" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:87 -msgid "Inches" +msgid "_Inches" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:88 -msgid "Centimeters" +msgid "_Centimeters" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:89 -msgid "Fullscreen" +msgid "_Fullscreen" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:115 @@ -370,7 +401,7 @@ msgid "Window" msgstr "" #: ../Pinta.Core/Actions/ViewActions.cs:163 -msgid "Ruler Units" +msgid "Ruler _Units" msgstr "" #. Translators: This specifies the format of the zoom percentage choices @@ -381,82 +412,91 @@ msgid "{0}%" msgstr "" #: ../Pinta.Core/Actions/WindowActions.cs:45 -msgid "Save All" +msgid "_Save All" msgstr "" #: ../Pinta.Core/Actions/WindowActions.cs:46 -msgid "Close All" +msgid "_Close All" msgstr "" -#: ../Pinta.Core/Classes/BaseTool.cs:261 +#: ../Pinta.Core/Classes/BaseTool.cs:262 msgid "Tool" msgstr "" -#: ../Pinta.Core/Classes/BaseTool.cs:333 +#: ../Pinta.Core/Classes/BaseTool.cs:334 #: ../Pinta.Gui.Widgets/Widgets/ColorPaletteWidget.cs:316 msgid "Shortcut key" msgstr "" -#: ../Pinta.Core/Classes/BaseTool.cs:445 +#: ../Pinta.Core/Classes/BaseTool.cs:446 msgid "Normal Blending" msgstr "" -#: ../Pinta.Core/Classes/BaseTool.cs:446 +#: ../Pinta.Core/Classes/BaseTool.cs:447 msgid "Overwrite" msgstr "" -#: ../Pinta.Core/Classes/BaseTool.cs:460 +#: ../Pinta.Core/Classes/BaseTool.cs:461 msgid "Antialiasing On" msgstr "" -#: ../Pinta.Core/Classes/BaseTool.cs:461 +#: ../Pinta.Core/Classes/BaseTool.cs:462 msgid "Antialiasing Off" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:291 ../Pinta.Core/Classes/Document.cs:296 +#: ../Pinta.Core/Classes/Document.cs:296 ../Pinta.Core/Classes/Document.cs:301 #: ../Pinta.Tools/Tools/ColorPickerTool.cs:135 msgid "Layer" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:378 +#: ../Pinta.Core/Classes/Document.cs:384 msgid "copy" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:654 +#: ../Pinta.Core/Classes/Document.cs:661 #: ../Pinta/Dialogs/ResizeCanvasDialog.cs:56 msgid "Resize Canvas" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:855 +#: ../Pinta.Core/Classes/Document.cs:783 +msgid "Paste Into New Layer" +msgstr "" + +#: ../Pinta.Core/Classes/Document.cs:787 +#: ../Pinta.Core/HistoryItems/PasteHistoryItem.cs:43 +msgid "Paste" +msgstr "" + +#: ../Pinta.Core/Classes/Document.cs:862 #: ../Pinta.Core/HistoryItems/FinishPixelsHistoryItem.cs:65 #: ../Pinta.Core/HistoryItems/PasteHistoryItem.cs:65 #: ../Pinta.Tools/Tools/MoveSelectedTool.cs:43 msgid "Move Selected Pixels" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:871 +#: ../Pinta.Core/Classes/Document.cs:878 msgid "Image larger than canvas" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:872 +#: ../Pinta.Core/Classes/Document.cs:879 msgid "" "The image being pasted is larger than the canvas size. What would you like " "to do?" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:876 +#: ../Pinta.Core/Classes/Document.cs:883 msgid "Expand canvas" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:877 +#: ../Pinta.Core/Classes/Document.cs:884 msgid "Don't change canvas size" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:890 +#: ../Pinta.Core/Classes/Document.cs:897 msgid "Image cannot be pasted" msgstr "" -#: ../Pinta.Core/Classes/Document.cs:891 +#: ../Pinta.Core/Classes/Document.cs:898 msgid "The clipboard does not contain an image." msgstr "" @@ -568,6 +608,10 @@ msgstr "" msgid "Finish Pixels" msgstr "" +#: ../Pinta.Core/HistoryItems/InvertHistoryItem.cs:50 +msgid "Rotate 180°" +msgstr "" + #: ../Pinta.Core/HistoryItems/InvertHistoryItem.cs:54 msgid "Flip Image Horizontal" msgstr "" @@ -576,6 +620,14 @@ msgstr "" msgid "Flip Image Vertical" msgstr "" +#: ../Pinta.Core/HistoryItems/InvertHistoryItem.cs:62 +msgid "Rotate 90° Clockwise" +msgstr "" + +#: ../Pinta.Core/HistoryItems/InvertHistoryItem.cs:66 +msgid "Rotate 90° Counter-Clockwise" +msgstr "" + #: ../Pinta.Core/HistoryItems/InvertHistoryItem.cs:79 msgid "Flip Layer Horizontal" msgstr "" @@ -666,16 +718,20 @@ msgstr "" msgid "Auto Hide" msgstr "" +#: ../Pinta.Docking/DockLibrary/DockItemTitleTab.cs:175 +msgid "Close" +msgstr "" + #: ../Pinta.Effects/Adjustments/AutoLevelEffect.cs:25 -msgid "Auto Level" +msgid "_Auto Level" msgstr "" #: ../Pinta.Effects/Adjustments/BlackAndWhiteEffect.cs:25 -msgid "Black and White" +msgid "Black and _White" msgstr "" #: ../Pinta.Effects/Adjustments/BrightnessContrastEffect.cs:29 -msgid "Brightness / Contrast" +msgid "_Brightness / Contrast" msgstr "" #: ../Pinta.Effects/Adjustments/BrightnessContrastEffect.cs:152 @@ -689,12 +745,11 @@ msgid "Contrast" msgstr "" #: ../Pinta.Effects/Adjustments/CurvesEffect.cs:27 -#: ../Pinta.Effects/Dialogs/Effects.CurvesDialog.cs:91 -msgid "Curves" +msgid "_Curves" msgstr "" #: ../Pinta.Effects/Adjustments/HueSaturationEffect.cs:26 -msgid "Hue / Saturation" +msgid "_Hue / Saturation" msgstr "" #: ../Pinta.Effects/Adjustments/HueSaturationEffect.cs:73 @@ -702,21 +757,23 @@ msgid "Lightness" msgstr "" #: ../Pinta.Effects/Adjustments/InvertColorsEffect.cs:25 -#: ../Pinta.Effects/Effects/MandelbrotFractalEffect.cs:167 -msgid "Invert Colors" +msgid "_Invert Colors" msgstr "" #: ../Pinta.Effects/Adjustments/LevelsEffect.cs:23 -msgid "Levels" +msgid "_Levels" msgstr "" #: ../Pinta.Effects/Adjustments/PosterizeEffect.cs:25 -#: ../Pinta.Effects/Dialogs/Effects.PosterizeDialog.cs:56 -msgid "Posterize" +msgid "_Posterize" msgstr "" #: ../Pinta.Effects/Adjustments/SepiaEffect.cs:26 -msgid "Sepia" +msgid "_Sepia" +msgstr "" + +#: ../Pinta.Effects/Dialogs/Effects.CurvesDialog.cs:91 +msgid "Curves" msgstr "" #: ../Pinta.Effects/Dialogs/Effects.CurvesDialog.cs:430 @@ -755,6 +812,10 @@ msgstr "" msgid "Levels Adjustment" msgstr "" +#: ../Pinta.Effects/Dialogs/Effects.PosterizeDialog.cs:56 +msgid "Posterize" +msgstr "" + #: ../Pinta.Effects/Dialogs/Effects.PosterizeDialog.cs:109 #: ../Pinta.Effects/gtk-gui/Pinta.Effects.LevelsDialog.cs:434 msgid "Red" @@ -770,13 +831,13 @@ msgid "Linked" msgstr "" #: ../Pinta.Effects/Effects/AddNoiseEffect.cs:29 -msgid "Add Noise" +msgid "_Add Noise" msgstr "" #: ../Pinta.Effects/Effects/AddNoiseEffect.cs:37 #: ../Pinta.Effects/Effects/MedianEffect.cs:36 #: ../Pinta.Effects/Effects/ReduceNoiseEffect.cs:36 -msgid "Noise" +msgid "_Noise" msgstr "" #: ../Pinta.Effects/Effects/AddNoiseEffect.cs:169 @@ -794,7 +855,7 @@ msgid "Coverage" msgstr "" #: ../Pinta.Effects/Effects/BulgeEffect.cs:25 -msgid "Bulge" +msgid "_Bulge" msgstr "" #: ../Pinta.Effects/Effects/BulgeEffect.cs:33 @@ -803,7 +864,7 @@ msgstr "" #: ../Pinta.Effects/Effects/PolarInversionEffect.cs:38 #: ../Pinta.Effects/Effects/TileEffect.cs:33 #: ../Pinta.Effects/Effects/TwistEffect.cs:33 -msgid "Distort" +msgid "_Distort" msgstr "" #: ../Pinta.Effects/Effects/BulgeEffect.cs:101 @@ -821,13 +882,13 @@ msgid "Offset" msgstr "" #: ../Pinta.Effects/Effects/CloudsEffect.cs:30 -msgid "Clouds" +msgid "_Clouds" msgstr "" #: ../Pinta.Effects/Effects/CloudsEffect.cs:38 #: ../Pinta.Effects/Effects/JuliaFractalEffect.cs:33 #: ../Pinta.Effects/Effects/MandelbrotFractalEffect.cs:33 -msgid "Render" +msgid "_Render" msgstr "" #: ../Pinta.Effects/Effects/CloudsEffect.cs:205 @@ -843,14 +904,14 @@ msgid "Seed" msgstr "" #: ../Pinta.Effects/Effects/EdgeDetectEffect.cs:28 -msgid "Edge Detect" +msgid "Ed_ge Detect" msgstr "" #: ../Pinta.Effects/Effects/EdgeDetectEffect.cs:36 #: ../Pinta.Effects/Effects/EmbossEffect.cs:33 #: ../Pinta.Effects/Effects/OutlineEffect.cs:36 #: ../Pinta.Effects/Effects/ReliefEffect.cs:32 -msgid "Stylize" +msgid "_Stylize" msgstr "" #: ../Pinta.Effects/Effects/EdgeDetectEffect.cs:88 @@ -866,11 +927,11 @@ msgid "Angle" msgstr "" #: ../Pinta.Effects/Effects/EmbossEffect.cs:25 -msgid "Emboss" +msgid "_Emboss" msgstr "" #: ../Pinta.Effects/Effects/FragmentEffect.cs:25 -msgid "Fragment" +msgid "_Fragment" msgstr "" #: ../Pinta.Effects/Effects/FragmentEffect.cs:33 @@ -879,7 +940,7 @@ msgstr "" #: ../Pinta.Effects/Effects/RadialBlurEffect.cs:33 #: ../Pinta.Effects/Effects/UnfocusEffect.cs:35 #: ../Pinta.Effects/Effects/ZoomBlurEffect.cs:33 -msgid "Blurs" +msgid "_Blurs" msgstr "" #: ../Pinta.Effects/Effects/FragmentEffect.cs:111 @@ -897,11 +958,11 @@ msgid "Rotation" msgstr "" #: ../Pinta.Effects/Effects/FrostedGlassEffect.cs:25 -msgid "Frosted Glass" +msgid "_Frosted Glass" msgstr "" #: ../Pinta.Effects/Effects/GaussianBlurEffect.cs:25 -msgid "Gaussian Blur" +msgid "_Gaussian Blur" msgstr "" #: ../Pinta.Effects/Effects/GaussianBlurEffect.cs:264 @@ -914,24 +975,24 @@ msgid "Radius" msgstr "" #: ../Pinta.Effects/Effects/GlowEffect.cs:30 -msgid "Glow" +msgid "_Glow" msgstr "" #: ../Pinta.Effects/Effects/GlowEffect.cs:38 #: ../Pinta.Effects/Effects/RedEyeRemoveEffect.cs:36 #: ../Pinta.Effects/Effects/SharpenEffect.cs:33 #: ../Pinta.Effects/Effects/SoftenPortraitEffect.cs:66 -msgid "Photo" +msgid "_Photo" msgstr "" #: ../Pinta.Effects/Effects/InkSketchEffect.cs:33 -msgid "Ink Sketch" +msgid "_Ink Sketch" msgstr "" #: ../Pinta.Effects/Effects/InkSketchEffect.cs:41 #: ../Pinta.Effects/Effects/OilPaintingEffect.cs:33 #: ../Pinta.Effects/Effects/PencilSketchEffect.cs:40 -msgid "Artistic" +msgid "_Artistic" msgstr "" #: ../Pinta.Effects/Effects/InkSketchEffect.cs:165 @@ -943,7 +1004,7 @@ msgid "Coloring" msgstr "" #: ../Pinta.Effects/Effects/JuliaFractalEffect.cs:25 -msgid "Julia Fractal" +msgid "_Julia Fractal" msgstr "" #: ../Pinta.Effects/Effects/JuliaFractalEffect.cs:131 @@ -966,11 +1027,15 @@ msgid "Zoom" msgstr "" #: ../Pinta.Effects/Effects/MandelbrotFractalEffect.cs:25 -msgid "Mandelbrot Fractal" +msgid "_Mandelbrot Fractal" +msgstr "" + +#: ../Pinta.Effects/Effects/MandelbrotFractalEffect.cs:167 +msgid "Invert Colors" msgstr "" #: ../Pinta.Effects/Effects/MedianEffect.cs:28 -msgid "Median" +msgid "_Median" msgstr "" #: ../Pinta.Effects/Effects/MedianEffect.cs:73 @@ -978,7 +1043,7 @@ msgid "Percentile" msgstr "" #: ../Pinta.Effects/Effects/MotionBlurEffect.cs:25 -msgid "Motion Blur" +msgid "_Motion Blur" msgstr "" #: ../Pinta.Effects/Effects/MotionBlurEffect.cs:117 @@ -986,7 +1051,7 @@ msgid "Centered" msgstr "" #: ../Pinta.Effects/Effects/OilPaintingEffect.cs:25 -msgid "Oil Painting" +msgid "_Oil Painting" msgstr "" #: ../Pinta.Effects/Effects/OilPaintingEffect.cs:176 @@ -998,8 +1063,7 @@ msgid "Coarseness" msgstr "" #: ../Pinta.Effects/Effects/OutlineEffect.cs:28 -#: ../Pinta.Tools/Tools/TextTool.cs:250 -msgid "Outline" +msgid "_Outline" msgstr "" #: ../Pinta.Effects/Effects/OutlineEffect.cs:142 @@ -1007,7 +1071,7 @@ msgid "Thickness" msgstr "" #: ../Pinta.Effects/Effects/PencilSketchEffect.cs:32 -msgid "Pencil Sketch" +msgid "_Pencil Sketch" msgstr "" #: ../Pinta.Effects/Effects/PencilSketchEffect.cs:99 @@ -1019,7 +1083,7 @@ msgid "Color Range" msgstr "" #: ../Pinta.Effects/Effects/PixelateEffect.cs:25 -msgid "Pixelate" +msgid "Pi_xelate" msgstr "" #: ../Pinta.Effects/Effects/PixelateEffect.cs:119 @@ -1027,11 +1091,11 @@ msgid "Cell Size" msgstr "" #: ../Pinta.Effects/Effects/PolarInversionEffect.cs:25 -msgid "Polar Inversion" +msgid "_Polar Inversion" msgstr "" #: ../Pinta.Effects/Effects/RadialBlurEffect.cs:25 -msgid "Radial Blur" +msgid "_Radial Blur" msgstr "" #: ../Pinta.Effects/Effects/RadialBlurEffect.cs:165 @@ -1041,7 +1105,7 @@ msgid "" msgstr "" #: ../Pinta.Effects/Effects/RedEyeRemoveEffect.cs:28 -msgid "Red Eye Removal" +msgid "_Red Eye Removal" msgstr "" #: ../Pinta.Effects/Effects/RedEyeRemoveEffect.cs:74 @@ -1058,7 +1122,7 @@ msgid "Hint: For best results, first use selection tools to select each eye." msgstr "" #: ../Pinta.Effects/Effects/ReduceNoiseEffect.cs:28 -msgid "Reduce Noise" +msgid "_Reduce Noise" msgstr "" #: ../Pinta.Effects/Effects/ReduceNoiseEffect.cs:97 @@ -1066,15 +1130,15 @@ msgid "Strength" msgstr "" #: ../Pinta.Effects/Effects/ReliefEffect.cs:44 -msgid "Relief" +msgid "_Relief" msgstr "" #: ../Pinta.Effects/Effects/SharpenEffect.cs:25 -msgid "Sharpen" +msgid "_Sharpen" msgstr "" #: ../Pinta.Effects/Effects/SoftenPortraitEffect.cs:58 -msgid "Soften Portrait" +msgid "Soften _Portrait" msgstr "" #: ../Pinta.Effects/Effects/SoftenPortraitEffect.cs:119 @@ -1090,7 +1154,7 @@ msgid "Warmth" msgstr "" #: ../Pinta.Effects/Effects/TileEffect.cs:25 -msgid "Tile Reflection" +msgid "Tile _Reflection" msgstr "" #: ../Pinta.Effects/Effects/TileEffect.cs:140 @@ -1098,7 +1162,7 @@ msgid "Tile Size" msgstr "" #: ../Pinta.Effects/Effects/TwistEffect.cs:25 -msgid "Twist" +msgid "_Twist" msgstr "" #: ../Pinta.Effects/Effects/TwistEffect.cs:133 @@ -1106,7 +1170,7 @@ msgid "Antialias" msgstr "" #: ../Pinta.Effects/Effects/UnfocusEffect.cs:27 -msgid "Unfocus" +msgid "_Unfocus" msgstr "" #: ../Pinta.Effects/Effects/WarpEffect.cs:19 @@ -1143,7 +1207,7 @@ msgid "Center Offset" msgstr "" #: ../Pinta.Effects/Effects/ZoomBlurEffect.cs:25 -msgid "Zoom Blur" +msgid "_Zoom Blur" msgstr "" #: ../Pinta.Effects/gtk-gui/Pinta.Effects.LevelsDialog.cs:86 @@ -1703,6 +1767,10 @@ msgstr "" msgid "Normal and Outline" msgstr "" +#: ../Pinta.Tools/Tools/TextTool.cs:250 +msgid "Outline" +msgstr "" + #: ../Pinta.Tools/Tools/TextTool.cs:251 msgid "Fill Background" msgstr "" @@ -1784,12 +1852,12 @@ msgstr "" msgid "ICO files can not be larger than 255 x 255 pixels." msgstr "" -#: ../Pinta/Actions/File/SaveDocumentImplementationAction.cs:247 +#: ../Pinta/Actions/File/SaveDocumentImplementationAction.cs:251 #, csharp-format msgid "A file named \"{0}\" already exists. Do you want to replace it?" msgstr "" -#: ../Pinta/Actions/File/SaveDocumentImplementationAction.cs:248 +#: ../Pinta/Actions/File/SaveDocumentImplementationAction.cs:252 #, csharp-format msgid "" "The file already exists in \"{1}\". Replacing it will overwrite its contents." @@ -1865,24 +1933,24 @@ msgstr "" msgid "Version Info" msgstr "" -#: ../Pinta/Dialogs/AboutPintaTabPage.cs:42 -#: ../Pinta/Dialogs/VersionInformationTabPage.cs:50 +#: ../Pinta/Dialogs/AboutPintaTabPage.cs:43 +#: ../Pinta/Dialogs/VersionInformationTabPage.cs:53 msgid "Version" msgstr "" -#: ../Pinta/Dialogs/AboutPintaTabPage.cs:51 +#: ../Pinta/Dialogs/AboutPintaTabPage.cs:52 msgid "License" msgstr "" -#: ../Pinta/Dialogs/AboutPintaTabPage.cs:51 +#: ../Pinta/Dialogs/AboutPintaTabPage.cs:52 msgid "Released under the MIT X11 License." msgstr "" -#: ../Pinta/Dialogs/AboutPintaTabPage.cs:58 +#: ../Pinta/Dialogs/AboutPintaTabPage.cs:59 msgid "Copyright" msgstr "" -#: ../Pinta/Dialogs/AboutPintaTabPage.cs:58 +#: ../Pinta/Dialogs/AboutPintaTabPage.cs:59 msgid "by Pinta contributors" msgstr "" @@ -1939,23 +2007,23 @@ msgid "Preset:" msgstr "" #: ../Pinta/Dialogs/NewImageDialog.cs:211 -#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:334 -#: ../Pinta/Dialogs/ResizeImageDialog.cs:170 +#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:331 +#: ../Pinta/Dialogs/ResizeImageDialog.cs:169 msgid "Width:" msgstr "" #: ../Pinta/Dialogs/NewImageDialog.cs:218 #: ../Pinta/Dialogs/NewImageDialog.cs:235 -#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:336 -#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:342 -#: ../Pinta/Dialogs/ResizeImageDialog.cs:172 -#: ../Pinta/Dialogs/ResizeImageDialog.cs:178 +#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:333 +#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:339 +#: ../Pinta/Dialogs/ResizeImageDialog.cs:171 +#: ../Pinta/Dialogs/ResizeImageDialog.cs:177 msgid "pixels" msgstr "" #: ../Pinta/Dialogs/NewImageDialog.cs:228 -#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:340 -#: ../Pinta/Dialogs/ResizeImageDialog.cs:176 +#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:337 +#: ../Pinta/Dialogs/ResizeImageDialog.cs:175 msgid "Height:" msgstr "" @@ -1987,33 +2055,37 @@ msgstr "" msgid "Preview" msgstr "" -#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:313 +#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:311 #: ../Pinta/Dialogs/ResizeImageDialog.cs:149 -msgid "By percentage:" +msgid "By absolute size:" msgstr "" -#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:314 +#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:312 #: ../Pinta/Dialogs/ResizeImageDialog.cs:150 -msgid "By absolute size:" +msgid "By percentage:" msgstr "" -#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:320 +#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:318 #: ../Pinta/Dialogs/ResizeImageDialog.cs:156 msgid "Maintain aspect ratio" msgstr "" -#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:348 +#: ../Pinta/Dialogs/ResizeCanvasDialog.cs:346 msgid "Anchor:" msgstr "" -#: ../Pinta/Dialogs/VersionInformationTabPage.cs:44 +#: ../Pinta/Dialogs/VersionInformationTabPage.cs:47 msgid "Title" msgstr "" -#: ../Pinta/Dialogs/VersionInformationTabPage.cs:53 +#: ../Pinta/Dialogs/VersionInformationTabPage.cs:56 msgid "Path" msgstr "" +#: ../Pinta/Dialogs/VersionInformationTabPage.cs:72 +msgid "Copy Version Info" +msgstr "" + #: ../Pinta/Main.cs:57 msgid "Show this message and exit." msgstr "" @@ -2034,59 +2106,63 @@ msgstr "" msgid "Options: " msgstr "" -#: ../Pinta/MainWindow.cs:324 +#: ../Pinta/MainWindow.cs:330 msgid "_File" msgstr "" -#: ../Pinta/MainWindow.cs:325 +#: ../Pinta/MainWindow.cs:331 msgid "_Edit" msgstr "" -#: ../Pinta/MainWindow.cs:327 +#: ../Pinta/MainWindow.cs:333 msgid "_View" msgstr "" -#: ../Pinta/MainWindow.cs:330 +#: ../Pinta/MainWindow.cs:336 msgid "_Image" msgstr "" -#: ../Pinta/MainWindow.cs:331 +#: ../Pinta/MainWindow.cs:337 msgid "_Layers" msgstr "" -#: ../Pinta/MainWindow.cs:332 +#: ../Pinta/MainWindow.cs:338 msgid "_Adjustments" msgstr "" -#: ../Pinta/MainWindow.cs:333 +#: ../Pinta/MainWindow.cs:339 msgid "Effe_cts" msgstr "" -#: ../Pinta/MainWindow.cs:334 +#: ../Pinta/MainWindow.cs:340 msgid "A_dd-ins" msgstr "" -#: ../Pinta/MainWindow.cs:336 +#: ../Pinta/MainWindow.cs:342 msgid "_Window" msgstr "" -#: ../Pinta/MainWindow.cs:340 -msgid "Tool Windows" +#: ../Pinta/MainWindow.cs:346 +msgid "Tool _Windows" msgstr "" -#: ../Pinta/MainWindow.cs:344 +#: ../Pinta/MainWindow.cs:350 msgid "_Help" msgstr "" -#: ../Pinta/MainWindow.cs:566 +#: ../Pinta/MainWindow.cs:368 +msgid "About" +msgstr "" + +#: ../Pinta/MainWindow.cs:572 msgid "Downloading Image" msgstr "" -#: ../Pinta/MainWindow.cs:584 +#: ../Pinta/MainWindow.cs:590 msgid "Download failed" msgstr "" -#: ../Pinta/MainWindow.cs:585 +#: ../Pinta/MainWindow.cs:591 #, csharp-format msgid "" "Unable to download image from {0}.\n" @@ -2101,6 +2177,10 @@ msgstr "" msgid "Canvas" msgstr "" +#: ../Pinta/Pads/ColorPalettePad.cs:42 ../Pinta/Pads/ColorPalettePad.cs:49 +msgid "Palette" +msgstr "" + #: ../Pinta/Pads/HistoryPad.cs:43 ../Pinta/Pads/HistoryPad.cs:52 msgid "History" msgstr ""