Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Pinta.Core/Actions/AddinActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

Expand Down
36 changes: 18 additions & 18 deletions Pinta.Core/Actions/EditActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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 ());
Expand Down
18 changes: 9 additions & 9 deletions Pinta.Core/Actions/FileActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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");
Expand Down
10 changes: 5 additions & 5 deletions Pinta.Core/Actions/HelpActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions Pinta.Core/Actions/ImageActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
20 changes: 10 additions & 10 deletions Pinta.Core/Actions/LayerActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
28 changes: 14 additions & 14 deletions Pinta.Core/Actions/ViewActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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 ());
Expand Down
4 changes: 2 additions & 2 deletions Pinta.Core/Actions/WindowActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<RadioAction> ();
action_menu_items = new Dictionary<RadioAction,CheckMenuItem> ();
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/AutoLevelEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/BlackAndWhiteEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/BrightnessContrastEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/CurvesEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/HueSaturationEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/InvertColorsEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/LevelsEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/PosterizeEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Pinta.Effects/Adjustments/SepiaEffect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading