diff --git a/src/Greenshot.Base/Interfaces/Drawing/Container.cs b/src/Greenshot.Base/Interfaces/Drawing/Container.cs index 7eb595fdf..4f653ac8a 100644 --- a/src/Greenshot.Base/Interfaces/Drawing/Container.cs +++ b/src/Greenshot.Base/Interfaces/Drawing/Container.cs @@ -111,6 +111,10 @@ namespace Greenshot.Base.Interfaces.Drawing bool HasIntersectingFilters(Rectangle clipRectangle); bool IntersectsWith(Rectangle clipRectangle); void Draw(Graphics g, Bitmap bitmap, RenderMode renderMode, Rectangle clipRectangle); + void SetForegroundColor(Color color); + void SetBackgroundColor(Color color); + int IncreaseLineThickness(int increaseBy); + bool FlipShadow(); void Invalidate(); void PullElementsToTop(IDrawableContainerList elements); bool CanPushDown(IDrawableContainerList elements); diff --git a/src/Greenshot.Base/Interfaces/ISurface.cs b/src/Greenshot.Base/Interfaces/ISurface.cs index 7b8d6884e..d5df7ff44 100644 --- a/src/Greenshot.Base/Interfaces/ISurface.cs +++ b/src/Greenshot.Base/Interfaces/ISurface.cs @@ -38,6 +38,10 @@ namespace Greenshot.Base.Interfaces event SurfaceMessageEventHandler SurfaceMessage; event SurfaceDrawingModeEventHandler DrawingModeChanged; event SurfaceElementEventHandler MovingElementChanged; + event SurfaceForegroundColorEventHandler ForegroundColorChanged; + event SurfaceBackgroundColorEventHandler BackgroundColorChanged; + event SurfaceLineThicknessEventHandler LineThicknessChanged; + event SurfaceShadowEventHandler ShadowChanged; /// /// Start value of the step-labels (counts) diff --git a/src/Greenshot.Base/Interfaces/SurfaceBackgroundColorEventArgs.cs b/src/Greenshot.Base/Interfaces/SurfaceBackgroundColorEventArgs.cs new file mode 100644 index 000000000..6972d52d0 --- /dev/null +++ b/src/Greenshot.Base/Interfaces/SurfaceBackgroundColorEventArgs.cs @@ -0,0 +1,31 @@ +/* + * Greenshot - a free and open source screenshot tool + * Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom + * + * For more information see: https://getgreenshot.org/ + * The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +using System; +using System.Drawing; + +namespace Greenshot.Base.Interfaces +{ + public class SurfaceBackgroundColorEventArgs : EventArgs + { + public Color Color { get; set; } + } +} \ No newline at end of file diff --git a/src/Greenshot.Base/Interfaces/SurfaceBackgroundColorEventHandler.cs b/src/Greenshot.Base/Interfaces/SurfaceBackgroundColorEventHandler.cs new file mode 100644 index 000000000..a2a93703b --- /dev/null +++ b/src/Greenshot.Base/Interfaces/SurfaceBackgroundColorEventHandler.cs @@ -0,0 +1,25 @@ +/* + * Greenshot - a free and open source screenshot tool + * Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom + * + * For more information see: https://getgreenshot.org/ + * The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +namespace Greenshot.Base.Interfaces +{ + public delegate void SurfaceBackgroundColorEventHandler (object sender, SurfaceBackgroundColorEventArgs e); +} \ No newline at end of file diff --git a/src/Greenshot.Base/Interfaces/SurfaceForegroundColorEventArgs.cs b/src/Greenshot.Base/Interfaces/SurfaceForegroundColorEventArgs.cs new file mode 100644 index 000000000..00de9aec4 --- /dev/null +++ b/src/Greenshot.Base/Interfaces/SurfaceForegroundColorEventArgs.cs @@ -0,0 +1,31 @@ +/* + * Greenshot - a free and open source screenshot tool + * Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom + * + * For more information see: https://getgreenshot.org/ + * The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +using System; +using System.Drawing; + +namespace Greenshot.Base.Interfaces +{ + public class SurfaceForegroundColorEventArgs : EventArgs + { + public Color Color { get; set; } + } +} \ No newline at end of file diff --git a/src/Greenshot.Base/Interfaces/SurfaceForegroundColorEventHandler.cs b/src/Greenshot.Base/Interfaces/SurfaceForegroundColorEventHandler.cs new file mode 100644 index 000000000..9c62cee2d --- /dev/null +++ b/src/Greenshot.Base/Interfaces/SurfaceForegroundColorEventHandler.cs @@ -0,0 +1,25 @@ +/* + * Greenshot - a free and open source screenshot tool + * Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom + * + * For more information see: https://getgreenshot.org/ + * The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +namespace Greenshot.Base.Interfaces +{ + public delegate void SurfaceForegroundColorEventHandler (object sender, SurfaceForegroundColorEventArgs e); +} \ No newline at end of file diff --git a/src/Greenshot.Base/Interfaces/SurfaceLineThicknessEventArgs.cs b/src/Greenshot.Base/Interfaces/SurfaceLineThicknessEventArgs.cs new file mode 100644 index 000000000..5fd5694ba --- /dev/null +++ b/src/Greenshot.Base/Interfaces/SurfaceLineThicknessEventArgs.cs @@ -0,0 +1,31 @@ +/* + * Greenshot - a free and open source screenshot tool + * Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom + * + * For more information see: https://getgreenshot.org/ + * The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +using System; +using System.Drawing; + +namespace Greenshot.Base.Interfaces +{ + public class SurfaceLineThicknessEventArgs : EventArgs + { + public int Thickness { get; set; } + } +} \ No newline at end of file diff --git a/src/Greenshot.Base/Interfaces/SurfaceLineThicknessEventHandler.cs b/src/Greenshot.Base/Interfaces/SurfaceLineThicknessEventHandler.cs new file mode 100644 index 000000000..9f8ac3ebe --- /dev/null +++ b/src/Greenshot.Base/Interfaces/SurfaceLineThicknessEventHandler.cs @@ -0,0 +1,25 @@ +/* + * Greenshot - a free and open source screenshot tool + * Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom + * + * For more information see: https://getgreenshot.org/ + * The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +namespace Greenshot.Base.Interfaces +{ + public delegate void SurfaceLineThicknessEventHandler (object sender, SurfaceLineThicknessEventArgs e); +} \ No newline at end of file diff --git a/src/Greenshot.Base/Interfaces/SurfaceShadowEventArgs.cs b/src/Greenshot.Base/Interfaces/SurfaceShadowEventArgs.cs new file mode 100644 index 000000000..a7bd682b7 --- /dev/null +++ b/src/Greenshot.Base/Interfaces/SurfaceShadowEventArgs.cs @@ -0,0 +1,31 @@ +/* + * Greenshot - a free and open source screenshot tool + * Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom + * + * For more information see: https://getgreenshot.org/ + * The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +using System; +using System.Drawing; + +namespace Greenshot.Base.Interfaces +{ + public class SurfaceShadowEventArgs : EventArgs + { + public bool HasShadow { get; set; } + } +} \ No newline at end of file diff --git a/src/Greenshot.Base/Interfaces/SurfaceShadowEventHandler.cs b/src/Greenshot.Base/Interfaces/SurfaceShadowEventHandler.cs new file mode 100644 index 000000000..a303aea62 --- /dev/null +++ b/src/Greenshot.Base/Interfaces/SurfaceShadowEventHandler.cs @@ -0,0 +1,25 @@ +/* + * Greenshot - a free and open source screenshot tool + * Copyright (C) 2007-2021 Thomas Braun, Jens Klingen, Robin Krom + * + * For more information see: https://getgreenshot.org/ + * The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +namespace Greenshot.Base.Interfaces +{ + public delegate void SurfaceShadowEventHandler (object sender, SurfaceShadowEventArgs e); +} \ No newline at end of file diff --git a/src/Greenshot.Editor/Drawing/DrawableContainerList.cs b/src/Greenshot.Editor/Drawing/DrawableContainerList.cs index 9465d7779..a7ed4f75b 100644 --- a/src/Greenshot.Editor/Drawing/DrawableContainerList.cs +++ b/src/Greenshot.Editor/Drawing/DrawableContainerList.cs @@ -30,6 +30,7 @@ using Greenshot.Base.Core; using Greenshot.Base.Interfaces; using Greenshot.Base.Interfaces.Drawing; using Greenshot.Editor.Configuration; +using Greenshot.Editor.Drawing.Fields; using Greenshot.Editor.Forms; using Greenshot.Editor.Memento; @@ -430,6 +431,70 @@ namespace Greenshot.Editor.Drawing } } + public void SetForegroundColor(Color color) + { + var dcs = ToArray(); + var field = FieldType.LINE_COLOR; + foreach (var dc in dcs) + { + if (dc is not AbstractFieldHolderWithChildren fh) continue; + if (!fh.HasField(field)) continue; + + fh.SetFieldValue(field, color); + } + } + + public void SetBackgroundColor(Color color) + { + var dcs = ToArray(); + var field = FieldType.FILL_COLOR; + foreach (var dc in dcs) + { + if (dc is not AbstractFieldHolderWithChildren fh) continue; + if (!fh.HasField(field)) continue; + + fh.SetFieldValue(field, color); + } + } + + public int IncreaseLineThickness(int increaseBy) + { + var dcs = ToArray(); + var field = FieldType.LINE_THICKNESS; + var lastThickness = 0; + foreach (var dc in dcs) + { + if (dc is not AbstractFieldHolderWithChildren fh) continue; + if (!fh.HasField(field)) continue; + + var currentThickness = (int)fh.GetFieldValue(field); + var thickness = Math.Max(0, currentThickness + increaseBy); + fh.SetFieldValue(field, thickness); + lastThickness = thickness; + } + + return lastThickness; + } + + public bool FlipShadow() + { + var dcs = ToArray(); + var field = FieldType.SHADOW; + var lastShadow = false; + foreach (var dc in dcs) + { + if (dc is not AbstractFieldHolderWithChildren fh) continue; + if (!fh.HasField(field)) continue; + + var currentShadow = (bool)fh.GetFieldValue(field); + var shadow = !currentShadow; + fh.SetFieldValue(field, shadow); + lastShadow = shadow; + } + + return lastShadow; + } + /// /// Indicates whether the given list of elements can be pushed down, /// i.e. whether there is at least one unselected element lower in hierarchy diff --git a/src/Greenshot.Editor/Drawing/Surface.cs b/src/Greenshot.Editor/Drawing/Surface.cs index 7fd7485d0..2f956d132 100644 --- a/src/Greenshot.Editor/Drawing/Surface.cs +++ b/src/Greenshot.Editor/Drawing/Surface.cs @@ -112,6 +112,38 @@ namespace Greenshot.Editor.Drawing remove => _surfaceMessage -= value; } + [NonSerialized] private SurfaceForegroundColorEventHandler _foregroundColorChanged; + + public event SurfaceForegroundColorEventHandler ForegroundColorChanged + { + add => _foregroundColorChanged += value; + remove => _foregroundColorChanged -= value; + } + + [NonSerialized] private SurfaceBackgroundColorEventHandler _backgroundColorChanged; + + public event SurfaceBackgroundColorEventHandler BackgroundColorChanged + { + add => _backgroundColorChanged += value; + remove => _backgroundColorChanged -= value; + } + + [NonSerialized] private SurfaceLineThicknessEventHandler _lineThicknessChanged; + + public event SurfaceLineThicknessEventHandler LineThicknessChanged + { + add => _lineThicknessChanged += value; + remove => _lineThicknessChanged -= value; + } + + [NonSerialized] private SurfaceShadowEventHandler _shadowChanged; + + public event SurfaceShadowEventHandler ShadowChanged + { + add => _shadowChanged += value; + remove => _shadowChanged -= value; + } + /// /// inUndoRedo makes sure we don't undo/redo while in a undo/redo action /// @@ -1060,6 +1092,74 @@ namespace Greenshot.Editor.Drawing } } + /// + /// Use to update UI when pressing a key to change the foreground color + /// + /// Who send + /// new color + public void UpdateForegroundColorEvent(object source, Color color) + { + if (_foregroundColorChanged != null) + { + var eventArgs = new SurfaceForegroundColorEventArgs + { + Color = color, + }; + _foregroundColorChanged(source, eventArgs); + } + } + + /// + /// Use to update UI when pressing a key to change the background color + /// + /// Who send + /// new color + public void UpdateBackgroundColorEvent(object source, Color color) + { + if (_lineThicknessChanged != null) + { + var eventArgs = new SurfaceBackgroundColorEventArgs + { + Color = color, + }; + _backgroundColorChanged(source, eventArgs); + } + } + + /// + /// Use to update UI when pressing a key to change the line thickness + /// + /// Who send + /// new thickness + public void UpdateLineThicknessEvent(object source, int thickness) + { + if (_lineThicknessChanged != null) + { + var eventArgs = new SurfaceLineThicknessEventArgs + { + Thickness = thickness, + }; + _lineThicknessChanged(source, eventArgs); + } + } + + /// + /// Use to update UI when pressing the key to show/hide the shadow + /// + /// Who send + /// has shadow + public void UpdateShadowEvent(object source, bool hasShadow) + { + if (_shadowChanged != null) + { + var eventArgs = new SurfaceShadowEventArgs + { + HasShadow = hasShadow, + }; + _shadowChanged(source, eventArgs); + } + } + /// /// Crop the surface /// @@ -2212,6 +2312,87 @@ namespace Greenshot.Editor.Drawing case Keys.Escape: ConfirmSelectedConfirmableElements(false); break; + case Keys.NumPad0: + SetSelectedElementColor(Color.Orange, true, shiftModifier); + break; + case Keys.NumPad1: + SetSelectedElementColor(Color.Red, true, shiftModifier); + break; + case Keys.NumPad2: + SetSelectedElementColor(Color.FromArgb(0,255,0), true, shiftModifier); // Color.Green is #008000 and not #00FF00 + break; + case Keys.NumPad3: + SetSelectedElementColor(Color.Blue, true, shiftModifier); + break; + case Keys.NumPad4: + SetSelectedElementColor(Color.Cyan, true, shiftModifier); + break; + case Keys.NumPad5: + SetSelectedElementColor(Color.Magenta, true, shiftModifier); + break; + case Keys.NumPad6: + SetSelectedElementColor(Color.Yellow, true, shiftModifier); + break; + case Keys.NumPad7: + SetSelectedElementColor(Color.Black, true, shiftModifier); + break; + case Keys.NumPad8: + SetSelectedElementColor(Color.Gray, true, shiftModifier); + break; + case Keys.NumPad9: + SetSelectedElementColor(Color.White, true, shiftModifier); + break; + case Keys.D0: + case Keys.D0 | Keys.Shift: + SetSelectedElementColor(shiftModifier ? Color.Orange : Color.Transparent, false, shiftModifier); + break; + case Keys.D1: + case Keys.D1 | Keys.Shift: + SetSelectedElementColor(Color.Red, false, shiftModifier); + break; + case Keys.D2: + case Keys.D2 | Keys.Shift: + SetSelectedElementColor(Color.Green, false, shiftModifier); + break; + case Keys.D3: + case Keys.D3 | Keys.Shift: + SetSelectedElementColor(Color.Blue, false, shiftModifier); + break; + case Keys.D4: + case Keys.D4 | Keys.Shift: + SetSelectedElementColor(Color.Cyan, false, shiftModifier); + break; + case Keys.D5: + case Keys.D5 | Keys.Shift: + SetSelectedElementColor(Color.Magenta, false, shiftModifier); + break; + case Keys.D6: + case Keys.D6 | Keys.Shift: + SetSelectedElementColor(Color.Yellow, false, shiftModifier); + break; + case Keys.D7: + case Keys.D7 | Keys.Shift: + SetSelectedElementColor(Color.Black, false, shiftModifier); + break; + case Keys.D8: + case Keys.D8 | Keys.Shift: + SetSelectedElementColor(Color.Gray, false, shiftModifier); + break; + case Keys.D9: + case Keys.D9 | Keys.Shift: + SetSelectedElementColor(Color.White, false, shiftModifier); + break; + case Keys.Add: + case Keys.Add | Keys.Shift: + ChangeLineThickness(shiftModifier ? 5 : 1); + break; + case Keys.Subtract: + case Keys.Subtract | Keys.Shift: + ChangeLineThickness(shiftModifier ? -5 : -1); + break; + case Keys.Divide: + FlipShadow(); + break; /*case Keys.Delete: RemoveSelectedElements(); break;*/ @@ -2231,6 +2412,36 @@ namespace Greenshot.Editor.Drawing return false; } + // for laptops without numPads, also allow shift modifier + private void SetSelectedElementColor(Color color, bool numPad, bool shift) + { + if (numPad || shift) + { + selectedElements.SetForegroundColor(color); + UpdateForegroundColorEvent(this, color); + } + else + { + selectedElements.SetBackgroundColor(color); + UpdateBackgroundColorEvent(this, color); + } + selectedElements.Invalidate(); + } + + private void ChangeLineThickness(int increaseBy) + { + var newThickness = selectedElements.IncreaseLineThickness(increaseBy); + UpdateLineThicknessEvent(this, newThickness); + selectedElements.Invalidate(); + } + + private void FlipShadow() + { + var shadow = selectedElements.FlipShadow(); + UpdateShadowEvent(this, shadow); + selectedElements.Invalidate(); + } + /// /// Property for accessing the elements on the surface /// diff --git a/src/Greenshot.Editor/Forms/ImageEditorForm.cs b/src/Greenshot.Editor/Forms/ImageEditorForm.cs index ffbea1a8b..649e60915 100644 --- a/src/Greenshot.Editor/Forms/ImageEditorForm.cs +++ b/src/Greenshot.Editor/Forms/ImageEditorForm.cs @@ -230,6 +230,10 @@ namespace Greenshot.Editor.Forms _surface.DrawingModeChanged += Surface_DrawingModeChanged; _surface.SurfaceSizeChanged += SurfaceSizeChanged; _surface.SurfaceMessage += SurfaceMessageReceived; + _surface.ForegroundColorChanged += ForegroundColorChanged; + _surface.BackgroundColorChanged += BackgroundColorChanged; + _surface.LineThicknessChanged += LineThicknessChanged; + _surface.ShadowChanged += ShadowChanged; _surface.FieldAggregator.FieldChanged += FieldAggregatorFieldChanged; SurfaceSizeChanged(Surface, null); @@ -498,6 +502,46 @@ namespace Greenshot.Editor.Forms } } + /// + /// This is called when the foreground color of the select element chances, used for shortcuts + /// + /// + /// + private void ForegroundColorChanged(object sender, SurfaceForegroundColorEventArgs eventArgs) + { + btnLineColor.SelectedColor = eventArgs.Color; + } + + /// + /// This is called when the background color of the select element chances, used for shortcuts + /// + /// + /// + private void BackgroundColorChanged(object sender, SurfaceBackgroundColorEventArgs eventArgs) + { + btnFillColor.SelectedColor = eventArgs.Color; + } + + /// + /// This is called when the line thickness of the select element chances, used for shortcuts + /// + /// + /// + private void LineThicknessChanged(object sender, SurfaceLineThicknessEventArgs eventArgs) + { + lineThicknessUpDown.Value = eventArgs.Thickness; + } + + /// + /// This is called when the shadow of the select element chances, used for shortcuts + /// + /// + /// + private void ShadowChanged(object sender, SurfaceShadowEventArgs eventArgs) + { + shadowButton.Checked = eventArgs.HasShadow; + } + /// /// This is called when the size of the surface chances, used for resizing and displaying the size information /// diff --git a/src/Greenshot/Languages/language-ar-SY.xml b/src/Greenshot/Languages/language-ar-SY.xml index c5c6edc84..fc2806457 100644 --- a/src/Greenshot/Languages/language-ar-SY.xml +++ b/src/Greenshot/Languages/language-ar-SY.xml @@ -48,7 +48,7 @@ نقطة النهاية لاشيء نقطة البداية - لون التعبئة + لون التعبئة (0-9) قطر التأثير الضبابي عريض السطوع @@ -78,7 +78,7 @@ البريد الالكتروني ملف الحجم - لون الخط + لون الخط (NumPad0-9, Shift+0-9) منطقة التظليل مقياس اللون الرمادي تكبير @@ -103,7 +103,7 @@ احفظ باسم... حدد الكل امر الطباعة ارسل الى '{0}'. - الظل + الظل (/) الظل ثم حفظ الصورة في الذاكرة. سماكة الخط diff --git a/src/Greenshot/Languages/language-ca-CA.xml b/src/Greenshot/Languages/language-ca-CA.xml index 9f92f7446..57f670b75 100644 --- a/src/Greenshot/Languages/language-ca-CA.xml +++ b/src/Greenshot/Languages/language-ca-CA.xml @@ -77,7 +77,7 @@ Abans de crear un nou informe d'error, us agrairem que comproveu que l'error no Cap Punt inicial Autorretalla - Color de fons + Color de fons (0-9) Radi del difuminat Negreta Vora @@ -110,7 +110,7 @@ Abans de crear un nou informe d'error, us agrairem que comproveu que l'error no Correu electrònic Fitxer Mida - Color de línia + Color de línia (NumPad0-9, Shift+0-9) Escala de grisos Destaca l'àrea Escala de grisos @@ -146,7 +146,7 @@ Abans de crear un nou informe d'error, us agrairem que comproveu que l'error no Anomena i desa... Selecciona-ho tot S'ha enviat el treball d'impressió a '{0}'. - Ombra + Ombra (/) Imatge copiada al porta-retalls. Gruix de línia Editor d'imatges de Greenshot diff --git a/src/Greenshot/Languages/language-cs-CZ.xml b/src/Greenshot/Languages/language-cs-CZ.xml index 915fd3fe0..9011e4da4 100644 --- a/src/Greenshot/Languages/language-cs-CZ.xml +++ b/src/Greenshot/Languages/language-cs-CZ.xml @@ -78,7 +78,7 @@ Také bychom velmi ocenili, kdybyste zkontrolovali, zda tato chyba již není ev Žádný Počáteční bod Automatické oříznutí - Barva výplně + Barva výplně (0-9) Poloměr rozostření Tučné Okraj @@ -111,7 +111,7 @@ Také bychom velmi ocenili, kdybyste zkontrolovali, zda tato chyba již není ev E-mail Soubor Velikost - Barva čáry + Barva čáry (NumPad0-9, Shift+0-9) Stupně šedi Zvýraznit oblast Ve stupních šedi @@ -147,7 +147,7 @@ Také bychom velmi ocenili, kdybyste zkontrolovali, zda tato chyba již není ev Uložit jako... Vybrat vše Tisková úloha byla zaslána na '{0}'. - Vržený stín + Vržený stín (/) Obrázek byl vložen do schránky. Tloušťka linky Greenshot editor obrázků diff --git a/src/Greenshot/Languages/language-da-DK.xml b/src/Greenshot/Languages/language-da-DK.xml index 7e8b6c01a..bf8f646b4 100644 --- a/src/Greenshot/Languages/language-da-DK.xml +++ b/src/Greenshot/Languages/language-da-DK.xml @@ -4,6 +4,7 @@ Dansk oversættelse af Jens Jacob Thomsen @@ -201,10 +202,10 @@ Detaljer om GNU General Public License: Gem som standard og spørg ikke igen - Linjefarve + Linjefarve (NumPad0-9, Shift+0-9) - Fyldfarve + Fyldfarve (0-9) Linjetykkelse @@ -457,7 +458,7 @@ tidspunktet, fx 11_58_32 (plus filendelsen angivet i indstillingerne). Forstørrelsesfaktor - Skygge + Skygge (/) Bekræft diff --git a/src/Greenshot/Languages/language-de-DE.xml b/src/Greenshot/Languages/language-de-DE.xml index 9ece82568..30ffcb30d 100644 --- a/src/Greenshot/Languages/language-de-DE.xml +++ b/src/Greenshot/Languages/language-de-DE.xml @@ -77,7 +77,7 @@ schnell zu finden. Vielen Dank :) Keine Anfangspunkt Automatisch zuschneiden - Hintergrundfarbe + Hintergrundfarbe (0-9) Weichzeichner-Radius Fett Rand @@ -110,7 +110,7 @@ schnell zu finden. Vielen Dank :) E-Mail Datei Größe - Rahmenfarbe + Rahmenfarbe (NumPad0-9, Shift+0-9) Graustufe Bereich hervorheben Graustufen @@ -146,7 +146,7 @@ schnell zu finden. Vielen Dank :) Speichern unter... Alle Objekte auswählen Druckauftrag wurde an '{0}' gesendet. - Schatten An/Aus + Schatten An/Aus (/) Bild wurde in Zwischenablage kopiert. Linienstärke Greenshot Editor diff --git a/src/Greenshot/Languages/language-de-x-franconia.xml b/src/Greenshot/Languages/language-de-x-franconia.xml index b989bcfe7..9b27a714c 100644 --- a/src/Greenshot/Languages/language-de-x-franconia.xml +++ b/src/Greenshot/Languages/language-de-x-franconia.xml @@ -73,7 +73,7 @@ Dangschee, wassd scho :) Kanne Anfangsbunkd Audomadisch zamschneidn - Hindergrundfarm + Hindergrundfarm (0-9) Weichzeichner-Rodius Fedd Rohma @@ -106,7 +106,7 @@ Dangschee, wassd scho :) I-Mehl Dadei Größe - Rahmafarb + Rahmafarb (NumPad0-9, Shift+0-9) Grauschdufn Breich hervorheem Grauschdufn @@ -140,7 +140,7 @@ Dangschee, wassd scho :) Schbeichern under... Alle Objegde auswähln Drugger läffd: '{0}' - Schaddn An/Aus + Schaddn An/Aus (/) Bild is in der Zwischnablach. Linienschdärge Greenshot Edidor diff --git a/src/Greenshot/Languages/language-el-GR.xml b/src/Greenshot/Languages/language-el-GR.xml index 14cb68bef..5a34a25fa 100644 --- a/src/Greenshot/Languages/language-el-GR.xml +++ b/src/Greenshot/Languages/language-el-GR.xml @@ -78,7 +78,7 @@ Κανένα Σημείο έναρξης Αυτόματη Περικοπή - Γέμισμα + Γέμισμα (0-9) Θόλωμα Έντονα Περίγραμμα @@ -115,7 +115,7 @@ E-Mail Αρχείο Μέγεθος - Χρώμα γραμμής + Χρώμα γραμμής (NumPad0-9, Shift+0-9) Απόχρωση του γκρι Επισήμανση περιοχής Απόχρωση του γκρι @@ -151,7 +151,7 @@ Αποθήκευση ως... Επιλογή όλων Η εκτύπωση στάλθηκε στον '{0}'. - Σκιά + Σκιά (/) Η εικόνα αποθηκεύτηκε στο πρόχειρο. Πάχος γραμμής Επεξεργαστής εικόνας του Greenshot diff --git a/src/Greenshot/Languages/language-en-US.xml b/src/Greenshot/Languages/language-en-US.xml index 3db9fbf0e..b575f549b 100644 --- a/src/Greenshot/Languages/language-en-US.xml +++ b/src/Greenshot/Languages/language-en-US.xml @@ -78,7 +78,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e None Start point Auto crop - Fill color + Fill color (0-9) Blur radius Bold Border @@ -111,7 +111,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e E-Mail File Size - Line color + Line color (NumPad0-9, Shift+0-9) Grayscale Highlight area Grayscale @@ -147,7 +147,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e Save as... Select all Print job was sent to '{0}'. - Drop shadow + Drop shadow (/) Image stored to clipboard. Line thickness Greenshot image editor diff --git a/src/Greenshot/Languages/language-es-ES.xml b/src/Greenshot/Languages/language-es-ES.xml index b84aee912..a4b3c5940 100644 --- a/src/Greenshot/Languages/language-es-ES.xml +++ b/src/Greenshot/Languages/language-es-ES.xml @@ -65,7 +65,7 @@ Antes de crear un nuevo informe de error, te agradeceríamos que comprobaras que Nada Punto inicial Autorrecortar - Color de relleno + Color de relleno (0-9) Blur radius Bold Borde @@ -98,7 +98,7 @@ Antes de crear un nuevo informe de error, te agradeceríamos que comprobaras que Correo electrónico Archivo Tamaño - Color de línea + Color de línea (NumPad0-9, Shift+0-9) Escala de grises Destacar área Escala de grises @@ -132,7 +132,7 @@ Antes de crear un nuevo informe de error, te agradeceríamos que comprobaras que Guardar como... Seleccionar todo Se ha enviado el trabajo de impresión a '{0}'. - Sombra + Sombra (/) Imagen guardada en el portapapeles. Grosor de línea Editor de imagen de Greenshot diff --git a/src/Greenshot/Languages/language-et-EE.xml b/src/Greenshot/Languages/language-et-EE.xml index b358977e8..6d04af95d 100644 --- a/src/Greenshot/Languages/language-et-EE.xml +++ b/src/Greenshot/Languages/language-et-EE.xml @@ -77,7 +77,7 @@ Me oleksime väga tänulik, kui te enne kontrolliksite, ega sellest veast pole j Tühi Alguspunkt Automaatne lõikus - Täitke värviga + Täitke värviga (0-9) Uduse ala raadius Paks Äär @@ -114,7 +114,7 @@ Me oleksime väga tänulik, kui te enne kontrolliksite, ega sellest veast pole j E-post Fail Suurus - Joone värv + Joone värv (NumPad0-9, Shift+0-9) Halli skaala Tooge esiplaanile Hall skaala @@ -150,7 +150,7 @@ Me oleksime väga tänulik, kui te enne kontrolliksite, ega sellest veast pole j Salvestage nimega... Valige kõik Printimiskäsklus saadeti '{0}'. - Langev vari + Langev vari (/) Pilt taastati lõikelauale. Joone paksus Greenshoti pildihaldur diff --git a/src/Greenshot/Languages/language-fa-IR.xml b/src/Greenshot/Languages/language-fa-IR.xml index 20e1da09f..4b9c4e4a4 100644 --- a/src/Greenshot/Languages/language-fa-IR.xml +++ b/src/Greenshot/Languages/language-fa-IR.xml @@ -52,7 +52,7 @@ Could not save Greenshot's configuration file. Please check access permissions f نقطه پایان هیچکدام نقطه شروع - رنگ پرکننده + رنگ پرکننده (0-9) شدت محو کردن ضخیم روشنایی @@ -90,7 +90,7 @@ Could not save Greenshot's configuration file. Please check access permissions f ایمیل پوشه اندازه - رنگ خط + رنگ خط (NumPad0-9, Shift+0-9) برجسته نمودن ناحیه خاکستری بزرگنمایی @@ -116,7 +116,7 @@ Could not save Greenshot's configuration file. Please check access permissions f ...ذخیره با نام اتخاب همه .چاپ به ' {0} ' فرستاده شد - سایه + سایه (/) سایه .تصویر در حافظه موقت ذخیره شد ضخامت خط diff --git a/src/Greenshot/Languages/language-fi-FI.xml b/src/Greenshot/Languages/language-fi-FI.xml index f66cc5013..76eb76518 100644 --- a/src/Greenshot/Languages/language-fi-FI.xml +++ b/src/Greenshot/Languages/language-fi-FI.xml @@ -48,7 +48,7 @@ Olisi myös hyvä jos voisit tarkistaa onko virhe jo raportoitu aikaisemmin (voi Loppupää Ei Alkupää - Täyttöväri + Täyttöväri (0-9) Sumennussäde Lihavoitu Kirkkaus @@ -78,7 +78,7 @@ Olisi myös hyvä jos voisit tarkistaa onko virhe jo raportoitu aikaisemmin (voi Sähköposti Tiedosto Size - Viivan väri + Viivan väri (NumPad0-9, Shift+0-9) Korosta alue Grayscale Magnify @@ -103,7 +103,7 @@ Olisi myös hyvä jos voisit tarkistaa onko virhe jo raportoitu aikaisemmin (voi Tallenna nimellä... Valitse kaikki Tulostustyö lähetettiin tulostimelle '{0}'. - Varjo + Varjo (/) Varjo Kuva on kopioitu leikepöydälle. Viivan paksuus diff --git a/src/Greenshot/Languages/language-fr-FR.xml b/src/Greenshot/Languages/language-fr-FR.xml index 53f8e21f6..ab094872a 100644 --- a/src/Greenshot/Languages/language-fr-FR.xml +++ b/src/Greenshot/Languages/language-fr-FR.xml @@ -77,7 +77,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si Aucun Point d'origine Cadrage automatique - Couleur de remplissage + Couleur de remplissage (0-9) Rayon du floutage Gras Ajouter une bordure @@ -115,7 +115,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si Courriel Fichier Taille - Couleur de la ligne + Couleur de la ligne (NumPad0-9, Shift+0-9) Niveaux de gris Surligner une zone Niveaux de gris @@ -156,7 +156,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si Enregistrer sous... Sélectionner tout La tâche d'impression a été envoyée vers '{0}'. - Ombre portée + Ombre portée (/) Ajouter une bulle de texte L'image a été placée dans le presse-papier. Épaisseur de ligne diff --git a/src/Greenshot/Languages/language-fr-QC.xml b/src/Greenshot/Languages/language-fr-QC.xml index 17c0e5537..161308a6a 100644 --- a/src/Greenshot/Languages/language-fr-QC.xml +++ b/src/Greenshot/Languages/language-fr-QC.xml @@ -63,7 +63,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si Aucun Point d'origine Rognage automatique - Couleur de remplissage + Couleur de remplissage (0-9) Rayon du flou Gras Bordure @@ -96,7 +96,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si Courriel Fichier Taille - Couleur de ligne + Couleur de ligne (NumPad0-9, Shift+0-9) Tons de gris Surligner une zone Niveaux de gris @@ -129,7 +129,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si Sauvegarder sous... Sélectionner tout La tâche d'impression a été envoyée vers '{0}'. - Ombre + Ombre (/) L'image a été placée dans le presse-papier. Épaisseur de ligne Éditeur d'image Greenshot diff --git a/src/Greenshot/Languages/language-he-IL.xml b/src/Greenshot/Languages/language-he-IL.xml index 4df909d37..9daed2276 100644 --- a/src/Greenshot/Languages/language-he-IL.xml +++ b/src/Greenshot/Languages/language-he-IL.xml @@ -49,7 +49,7 @@ Details about the GNU General Public License: נקודת סיום אף-אחד נקודת התחלה - צבע תוכן + צבע תוכן (0-9) טשטש רדיוס מודגש בהירות @@ -79,7 +79,7 @@ Details about the GNU General Public License: דואר אלקטרוני קובץ גודל - צבע קו + צבע קו (NumPad0-9, Shift+0-9) אזור מודגש גווני אפור הגדלה @@ -104,7 +104,7 @@ Details about the GNU General Public License: ...שמירה בשם בחר הכל ההדפסה נשלחה אל '{0}'. - הצללה + הצללה (/) הצללה תמונה הועברה אל הלוח עובי קו diff --git a/src/Greenshot/Languages/language-hu-HU.xml b/src/Greenshot/Languages/language-hu-HU.xml index 0d5a06df9..afba91efe 100644 --- a/src/Greenshot/Languages/language-hu-HU.xml +++ b/src/Greenshot/Languages/language-hu-HU.xml @@ -49,7 +49,7 @@ Kérjük adjon összefoglaló leírást és csatoljon minden olyan információt Vég pont Egyiksem Kezdő pont - Kitöltési szín + Kitöltési szín (0-9) Homályosítás mértéke Félkövér Fényerő @@ -79,7 +79,7 @@ Kérjük adjon összefoglaló leírást és csatoljon minden olyan információt E-Mail Fájl Méret - Vonal szín + Vonal szín (NumPad0-9, Shift+0-9) Terület kiemelés Szürkeárnyalat Nagyítás @@ -104,7 +104,7 @@ Kérjük adjon összefoglaló leírást és csatoljon minden olyan információt Mentés másként Mindet kijelöl Nyomtatási feladat küldése '{0}'. - Árnyékolás + Árnyékolás (/) Árnyékolás A tárolt képet a vágólapra. Vonal vastagság diff --git a/src/Greenshot/Languages/language-id-ID.xml b/src/Greenshot/Languages/language-id-ID.xml index e474cae59..1698247b5 100644 --- a/src/Greenshot/Languages/language-id-ID.xml +++ b/src/Greenshot/Languages/language-id-ID.xml @@ -77,7 +77,7 @@ Juga, kami sangat terbantu apabila anda mengecek laporan lain yang sama dengan k Nihil Titik awal Auto potong - Warna pengisi + Warna pengisi (0-9) Blur radius Tebal Batas @@ -115,7 +115,7 @@ Juga, kami sangat terbantu apabila anda mengecek laporan lain yang sama dengan k E-Mail Berkas Ukuran - Warna garis + Warna garis (NumPad0-9, Shift+0-9) Keabu-abuan Tandai area Keabu-abuan @@ -156,7 +156,7 @@ Juga, kami sangat terbantu apabila anda mengecek laporan lain yang sama dengan k Simpan sebagai... Pilih semua Cetakan dikirim ke '{0}'. - Bayangan + Bayangan (/) Buat kotak dialog Gambar tersimpan di papan klip. Ketebalan garis diff --git a/src/Greenshot/Languages/language-it-IT.xml b/src/Greenshot/Languages/language-it-IT.xml index 53fa10837..d31a075dd 100644 --- a/src/Greenshot/Languages/language-it-IT.xml +++ b/src/Greenshot/Languages/language-it-IT.xml @@ -83,7 +83,7 @@ Controlla i permessi di accesso per '{0}'. Nessuna Punto iniziale Ritaglia Automaticamente - Colore di riempimento + Colore di riempimento (0-9) Raggio sfumatura Grassetto Bordi @@ -116,7 +116,7 @@ Controlla i permessi di accesso per '{0}'. Email File Dimensioni - Colore linea + Colore linea (NumPad0-9, Shift+0-9) Scala di grigi Evidenzia l'area Scala di grigi @@ -152,7 +152,7 @@ Controlla i permessi di accesso per '{0}'. Salva come... Seleziona tutto Stampa inviata a '{0}'. - Ombra + Ombra (/) Immagine copiata negli Appunti. Spessore linea Gestione immagini di Greenshot diff --git a/src/Greenshot/Languages/language-ja-JP.xml b/src/Greenshot/Languages/language-ja-JP.xml index c894b9573..180d0ad91 100644 --- a/src/Greenshot/Languages/language-ja-JP.xml +++ b/src/Greenshot/Languages/language-ja-JP.xml @@ -76,7 +76,7 @@ Greenshot には一切の保障がありません。GNU General Public License なし 始点 自動切り抜き - 塗りつぶし + 塗りつぶし (0-9) ブラー半径 太字 ボーダーライン @@ -114,7 +114,7 @@ Greenshot には一切の保障がありません。GNU General Public License Eメール ファイル サイズ - ライン カラー + ライン カラー (NumPad0-9, Shift+0-9) グレースケール エリア ハイライト グレースケール @@ -155,7 +155,7 @@ Greenshot には一切の保障がありません。GNU General Public License 名付けて保存... すべて選択 '{0}' に印刷ジョブを送りました。 - シャドウ + シャドウ (/) 吹き出しを挿入する (S) 画像をクリップボードに送りました。 線の太さ diff --git a/src/Greenshot/Languages/language-kab-DZ.xml b/src/Greenshot/Languages/language-kab-DZ.xml index 31930d2db..cdc78308f 100644 --- a/src/Greenshot/Languages/language-kab-DZ.xml +++ b/src/Greenshot/Languages/language-kab-DZ.xml @@ -77,7 +77,7 @@ Rnu ɣur-s, nḥemmel aṭas ma yella tesneqdeḍ aneqqis igebren ugur-agi. (Tze Ula yiwen Taneqqiṭ n tazwara Aseggem awurman - Ini n taččart + Ini n taččart (0-9) Aqqaṛ n udaɛmec Zur Rnu leryuf @@ -115,7 +115,7 @@ Rnu ɣur-s, nḥemmel aṭas ma yella tesneqdeḍ aneqqis igebren ugur-agi. (Tze Imayl Afaylu Teɣzi - Ini n izirig + Ini n izirig (NumPad0-9, Shift+0-9) Tifesniwin n umumed Jerreḍ tamnaṭ Tifesniwin n umumed @@ -156,7 +156,7 @@ Rnu ɣur-s, nḥemmel aṭas ma yella tesneqdeḍ aneqqis igebren ugur-agi. (Tze Sekles s yisem... Fren akk Tamhelt n usiggez tettwazen ɣer '{0}'. - Tili tettwarfed + Tili tettwarfed (/) tačuffiṭ n uḍris Tugna tetwasers ɣef afus. Tuzert n izirig diff --git a/src/Greenshot/Languages/language-ko-KR.xml b/src/Greenshot/Languages/language-ko-KR.xml index a332cea33..f513c5e42 100644 --- a/src/Greenshot/Languages/language-ko-KR.xml +++ b/src/Greenshot/Languages/language-ko-KR.xml @@ -77,7 +77,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e 없음 시작점 자동 잘라내기 - 채움 색상 + 채움 색상 (0-9) 흐림 반경 진하게 경계 @@ -110,7 +110,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e 이메일 파일 크기 - 선 색상 + 선 색상 (NumPad0-9, Shift+0-9) 그레이스케일 구역 강조 그레이스케일 @@ -146,7 +146,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e 다른 이름으로 저장... 전체 선택 인쇄 작업을 '{0}'로 보내기. - 그림자 + 그림자 (/) 이미지를 클립보드로 저장. 선 두께 Greenshot 내장 이미지 편집기 diff --git a/src/Greenshot/Languages/language-lt-LT.xml b/src/Greenshot/Languages/language-lt-LT.xml index e84388901..0529fc245 100644 --- a/src/Greenshot/Languages/language-lt-LT.xml +++ b/src/Greenshot/Languages/language-lt-LT.xml @@ -47,7 +47,7 @@ Dėkojame už pagalbą :) Pabaigoje Ne Pradžioje - Fono spalva + Fono spalva (0-9) Išliejimo spindulys Pastorintas Ryškumas @@ -77,7 +77,7 @@ Dėkojame už pagalbą :) Išsiųsti elektroninu paštu Failas Dydis - Apvado spalva + Apvado spalva (NumPad0-9, Shift+0-9) Skaidrus tarp blankaus (I) Zonos išskyrimas Išdidinimas @@ -102,7 +102,7 @@ Dėkojame už pagalbą :) Išsaugoti kaip... išskirti viską Spausdinys nusiųstas į {0}. - Šešėlis + Šešėlis (/) Šešėlis Vaizdas patalpintas į iškarpinių podelį. Apvado storis diff --git a/src/Greenshot/Languages/language-lv-LV.xml b/src/Greenshot/Languages/language-lv-LV.xml index c74e41326..30ad4f869 100644 --- a/src/Greenshot/Languages/language-lv-LV.xml +++ b/src/Greenshot/Languages/language-lv-LV.xml @@ -77,7 +77,7 @@ Mēs būtu Tev pateicīgi, ja Tu vispirms pārbaudītu, vai kāds cits jau nav z Bez uzgaļiem Līnjas sākumā Automātiski apcirst - Aizpildījuma krāsa + Aizpildījuma krāsa (0-9) Izpludinājuma rādiuss Trekns Apmale @@ -110,7 +110,7 @@ Mēs būtu Tev pateicīgi, ja Tu vispirms pārbaudītu, vai kāds cits jau nav z E-pasts Fails Izmērs - Līnijas krāsa + Līnijas krāsa (NumPad0-9, Shift+0-9) Pelēko toņu Aptumšot apkārt Bez krāsas apkārt @@ -146,7 +146,7 @@ Mēs būtu Tev pateicīgi, ja Tu vispirms pārbaudītu, vai kāds cits jau nav z Saglbāt kā... Saglabāt visu Izdrukāt tika nosūtīts uz '{0}'. - Veidot ēnu + Veidot ēnu (/) Attēls saglabāts starpliktuvē. Līnijas biezums „Greenshot” attēla redaktors diff --git a/src/Greenshot/Languages/language-nl-NL.xml b/src/Greenshot/Languages/language-nl-NL.xml index 507ece7dc..52e12a895 100644 --- a/src/Greenshot/Languages/language-nl-NL.xml +++ b/src/Greenshot/Languages/language-nl-NL.xml @@ -78,7 +78,7 @@ Controleer ook even of dit probleem mogelijk al gemeld is! Gebruik de zoekfuncti Geen Startpunt Automatisch bijsnijden - Vulkleur + Vulkleur (0-9) Vervagingsradius Vet Rand @@ -111,7 +111,7 @@ Controleer ook even of dit probleem mogelijk al gemeld is! Gebruik de zoekfuncti E-mail Bestand Grootte - Lijnkleur + Lijnkleur (NumPad0-9, Shift+0-9) Grijstinten Gebied markeren Grijstinten @@ -147,7 +147,7 @@ Controleer ook even of dit probleem mogelijk al gemeld is! Gebruik de zoekfuncti Opslaan als… Alles selecteren Afdruktaak verzonden naar '{0}'. - Schaduw + Schaduw (/) Afbeelding opgeslagen op het klembord. Lijndikte Greenshot beeldbewerker diff --git a/src/Greenshot/Languages/language-nn-NO.xml b/src/Greenshot/Languages/language-nn-NO.xml index 003b11b9a..1f4ae860b 100644 --- a/src/Greenshot/Languages/language-nn-NO.xml +++ b/src/Greenshot/Languages/language-nn-NO.xml @@ -65,7 +65,7 @@ Me sett òg pris på om du ved hjelp av søkefunksjonen på sida kan sjekke om d Ingen Startpunkt Auto-skjer - Fyllfarge + Fyllfarge (0-9) Uskarp-radius Feit Ramme @@ -98,7 +98,7 @@ Me sett òg pris på om du ved hjelp av søkefunksjonen på sida kan sjekke om d E-post Fil Storleik - Linefarge + Linefarge (NumPad0-9, Shift+0-9) Gråtone Marker område Gråtone @@ -131,7 +131,7 @@ Me sett òg pris på om du ved hjelp av søkefunksjonen på sida kan sjekke om d Lagre som... Vel alt Utskrifta vart sent til "{0}". - Skuggeeffekt + Skuggeeffekt (/) Skuggeeffekt Bildet er sendt til utklyppstavla. Linebreidde diff --git a/src/Greenshot/Languages/language-pl-PL.xml b/src/Greenshot/Languages/language-pl-PL.xml index 54e2fd993..a4801f190 100644 --- a/src/Greenshot/Languages/language-pl-PL.xml +++ b/src/Greenshot/Languages/language-pl-PL.xml @@ -78,7 +78,7 @@ Będziemy wdzięczni, jeśli najpierw sprawdzisz, czy takie zdarzenie nie zosta Żaden Początkowy Przytnij automatycznie - Kolor wypełnienia + Kolor wypełnienia (0-9) Promień rozmycia Pogrubienie Obramowanie @@ -115,7 +115,7 @@ Będziemy wdzięczni, jeśli najpierw sprawdzisz, czy takie zdarzenie nie zosta Wyślij e-mailem Plik Rozmiar - Kolor linii + Kolor linii (NumPad0-9, Shift+0-9) Skala szarości Uwydatnienie obszaru Wyszarzenie @@ -151,7 +151,7 @@ Będziemy wdzięczni, jeśli najpierw sprawdzisz, czy takie zdarzenie nie zosta Zapisz jako... Zaznacz wszystko Zadanie drukowania zostało wysłane do '{0}'. - Cień + Cień (/) Obraz został zapisany w schowku. Grubość linii Greenshot - edytor obrazów diff --git a/src/Greenshot/Languages/language-pt-BR.xml b/src/Greenshot/Languages/language-pt-BR.xml index 8bfd938ed..eb18def59 100644 --- a/src/Greenshot/Languages/language-pt-BR.xml +++ b/src/Greenshot/Languages/language-pt-BR.xml @@ -75,7 +75,7 @@ No fim Nenhuma No início - Cor de preenchimento + Cor de preenchimento (0-9) Raio de desfoque Negrito Brilho @@ -105,7 +105,7 @@ Enviar por e-mail Arquivo Tamanho - Cor da linha + Cor da linha (NumPad0-9, Shift+0-9) Destacar área Escalas de cinza Ampliar @@ -130,7 +130,7 @@ Salvar como... Selecionar tudo A impressão foi enviada para '{0}'. - Sombra + Sombra (/) Sombra Imagem enviada para a área de transferência. Espessura da linha diff --git a/src/Greenshot/Languages/language-pt-PT.xml b/src/Greenshot/Languages/language-pt-PT.xml index dabc42762..95a948ddb 100644 --- a/src/Greenshot/Languages/language-pt-PT.xml +++ b/src/Greenshot/Languages/language-pt-PT.xml @@ -77,7 +77,7 @@ Também apreciaremos muito se puder verificar se não existe já um relatório d Nenhuma No início Recortar auto - Cor de preenchimento + Cor de preenchimento (0-9) Raio de desfoque Negrito Borda @@ -110,7 +110,7 @@ Também apreciaremos muito se puder verificar se não existe já um relatório d Enviar por e-mail Ficheiro Tamanho - Cor da linha + Cor da linha (NumPad0-9, Shift+0-9) Escala cinza Realçar área Escala de cinza @@ -146,7 +146,7 @@ Também apreciaremos muito se puder verificar se não existe já um relatório d Guardar como... Seleccionar tudo A impressão foi enviada para '{0}'. - Sombra projectada + Sombra projectada (/) Imagem enviada para a área de transferência. Espessura da linha Editor de Imagens do Greenshot diff --git a/src/Greenshot/Languages/language-ro-RO.xml b/src/Greenshot/Languages/language-ro-RO.xml index 11f17a736..4b1eae315 100644 --- a/src/Greenshot/Languages/language-ro-RO.xml +++ b/src/Greenshot/Languages/language-ro-RO.xml @@ -4,6 +4,7 @@ Traducere în limba română - Radu Mogoș @@ -201,10 +202,10 @@ Detalii despre licența GNU General Public License: Definește ca și calitate JPEG standard și nu mă mai întreba - Culoare linie + Culoare linie (NumPad0-9, Shift+0-9) - Culoare umplere + Culoare umplere (0-9) Grosime linie @@ -456,7 +457,7 @@ timpul curent, ex. 11_58_32 (plus extensia fișierului definită în setări) Factor de mărire - Umbră + Umbră (/) Umbră diff --git a/src/Greenshot/Languages/language-ru-RU.xml b/src/Greenshot/Languages/language-ru-RU.xml index 42d85df80..65d32a790 100644 --- a/src/Greenshot/Languages/language-ru-RU.xml +++ b/src/Greenshot/Languages/language-ru-RU.xml @@ -78,7 +78,7 @@ Greenshot поставляется БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ. Ничего Начальная точка Автообрезка - Цвет заливки + Цвет заливки (0-9) Радиус размывания Жирный Рамка @@ -115,7 +115,7 @@ Greenshot поставляется БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ. E-Mail Файл Размер - Цвет линии + Цвет линии (NumPad0-9, Shift+0-9) Оттенки серого Выделить область Оттенки серого @@ -151,7 +151,7 @@ Greenshot поставляется БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ. Сохранить как... Выбрать все Задание печати было направлено на '{0}'. - Тень + Тень (/) Изображения, хранящиеся в буфере обмена. Толщина линии Графический редактор Greenshot diff --git a/src/Greenshot/Languages/language-sk-SK.xml b/src/Greenshot/Languages/language-sk-SK.xml index f47c2bd5b..41c2c3e4c 100644 --- a/src/Greenshot/Languages/language-sk-SK.xml +++ b/src/Greenshot/Languages/language-sk-SK.xml @@ -65,7 +65,7 @@ Tiež by sme velmi ocenili, keby ste najskôr skontrolovali, či už neexistuje Žiaden Začiatočný bod Automatické orezanie - Farba výplne + Farba výplne (0-9) Rádius rozmazania Tučné Orámovať @@ -98,7 +98,7 @@ Tiež by sme velmi ocenili, keby ste najskôr skontrolovali, či už neexistuje E-Mail Súbor Veľkosť - Farba čiary + Farba čiary (NumPad0-9, Shift+0-9) Stupne šedej Zvýrazniť oblasť V odtieňoch šedej @@ -132,7 +132,7 @@ Tiež by sme velmi ocenili, keby ste najskôr skontrolovali, či už neexistuje Uložiť ako... Vybrať všetko Tlačová úloha odoslaná do '{0}'. - Tieň + Tieň (/) Tieň Obrázek je uložený do schránky. Hrúbka čiary diff --git a/src/Greenshot/Languages/language-sl-SI.xml b/src/Greenshot/Languages/language-sl-SI.xml index fd0dc2bc4..f2a171fc6 100644 --- a/src/Greenshot/Languages/language-sl-SI.xml +++ b/src/Greenshot/Languages/language-sl-SI.xml @@ -63,7 +63,7 @@ Pred objavo preverite tudi ali je napaka že prijavlja s strani kakšnega drugeg Nič Začetek Samodejno obreži - Zapolni z barvo + Zapolni z barvo (0-9) Blur radija Krepko Obroba @@ -96,7 +96,7 @@ Pred objavo preverite tudi ali je napaka že prijavlja s strani kakšnega drugeg E-pošta Datoteka Velikost - Barva črte + Barva črte (NumPad0-9, Shift+0-9) Črno-belo Označi področje Označi črno-belo @@ -130,7 +130,7 @@ Pred objavo preverite tudi ali je napaka že prijavlja s strani kakšnega drugeg Shrani kot... Izberi vse Tiskanje na '{0}'. - Spusti senco + Spusti senco (/) Slika shranjena na odložišče. Debelina črte Greenshot urejevalnik izrezkov diff --git a/src/Greenshot/Languages/language-sr-RS.xml b/src/Greenshot/Languages/language-sr-RS.xml index 6b624dd9c..26f21ced0 100644 --- a/src/Greenshot/Languages/language-sr-RS.xml +++ b/src/Greenshot/Languages/language-sr-RS.xml @@ -63,7 +63,7 @@ Ништа Почетна тачка Аутоматско опсецање - Пуне боје + Пуне боје (0-9) Замагљење радијуса Масно Ивице @@ -96,7 +96,7 @@ Е-пошта Датотека Величина - Боја линије + Боја линије (NumPad0-9, Shift+0-9) Сиве нијансе Истакни област Сиве нијансе @@ -130,7 +130,7 @@ Сачувај као… Изабери све Задужење за штампање је послато у „{0}“. - Исцртај сенке + Исцртај сенке (/) Слика је смештена у оставу. Дебљина линије Уређивач слика diff --git a/src/Greenshot/Languages/language-sv-SE.xml b/src/Greenshot/Languages/language-sv-SE.xml index 3fe2df709..83bfa3659 100644 --- a/src/Greenshot/Languages/language-sv-SE.xml +++ b/src/Greenshot/Languages/language-sv-SE.xml @@ -78,7 +78,7 @@ Innan du skickar uppskattar vi verkligen om du kontrollerar om felet redan blivi Inget Startpunkt Autobeskärning - Fyllnadsfärg + Fyllnadsfärg (0-9) Oskärpans styrka Fetstil Kantlinje @@ -111,7 +111,7 @@ Innan du skickar uppskattar vi verkligen om du kontrollerar om felet redan blivi E-post Arkiv Storlek - Linjefärg + Linjefärg (NumPad0-9, Shift+0-9) Gråskala Framhäv område Gråskala @@ -147,7 +147,7 @@ Innan du skickar uppskattar vi verkligen om du kontrollerar om felet redan blivi Spara som... Markera allt Utskriften skickades till '{0}'. - Skugga + Skugga (/) Bilden sparades i urklipp. Linjetjocklek Greenshot bildredigerare diff --git a/src/Greenshot/Languages/language-tr-TR.xml b/src/Greenshot/Languages/language-tr-TR.xml index b5a43f083..d19583b46 100644 --- a/src/Greenshot/Languages/language-tr-TR.xml +++ b/src/Greenshot/Languages/language-tr-TR.xml @@ -63,7 +63,7 @@ Ayrıca bu hata için bir izleyici kaydının açılmış olup olmadığını da Ok ucu olmasın Başlangıçta Otomatik kırpma - Art alan rengi + Art alan rengi (0-9) Bulanıklaştırma çapı Koyu Kenarlar @@ -96,7 +96,7 @@ Ayrıca bu hata için bir izleyici kaydının açılmış olup olmadığını da E-Posta Gönder Dosya Boyut - Çizgi rengi + Çizgi rengi (NumPad0-9, Shift+0-9) Gri Tonlamalı Bölgeyi vurgula Gri tonlama @@ -129,7 +129,7 @@ Ayrıca bu hata için bir izleyici kaydının açılmış olup olmadığını da Farklı kaydet... Tümünü seç Yazdırma işi şuraya iletildi '{0}'. - Gölge + Gölge (/) Gölge Görüntü panoya kopyalandı. Çizgi kalınlığı diff --git a/src/Greenshot/Languages/language-uk-UA.xml b/src/Greenshot/Languages/language-uk-UA.xml index 850a5ea7f..e0b787648 100644 --- a/src/Greenshot/Languages/language-uk-UA.xml +++ b/src/Greenshot/Languages/language-uk-UA.xml @@ -77,7 +77,7 @@ Greenshot постачається АБСОЛЮТНО БЕЗ ГАРАНТІЇ. Немає На початку Автоматичне обрізання - Колір заливки + Колір заливки (0-9) Радіус розмиття Жирний Межа @@ -110,7 +110,7 @@ Greenshot постачається АБСОЛЮТНО БЕЗ ГАРАНТІЇ. Ел. пошта Файл Розмір - Колір лінії + Колір лінії (NumPad0-9, Shift+0-9) Відтінки сірого Підсвічення області Відтінки сірого @@ -146,7 +146,7 @@ Greenshot постачається АБСОЛЮТНО БЕЗ ГАРАНТІЇ. Зберегти як... Вибрати все Завдання друку надіслано на „{0}“. - Тінь + Тінь (/) Зображення надіслано в буфер обміну. Товщина лінії Редактор зображень Greenshot diff --git a/src/Greenshot/Languages/language-vi-VN.xml b/src/Greenshot/Languages/language-vi-VN.xml index a4b1a73c2..4d8c12f14 100644 --- a/src/Greenshot/Languages/language-vi-VN.xml +++ b/src/Greenshot/Languages/language-vi-VN.xml @@ -44,7 +44,7 @@ Điểm cuối không Điểm đầu - Tô đè + Tô đè (0-9) Bán kính blur Chữ đậm Độ sáng @@ -74,7 +74,7 @@ Email Tệp Cỡ - Màu dòng kẻ + Màu dòng kẻ (NumPad0-9, Shift+0-9) Tô sáng vùng tô xám phóng to @@ -99,7 +99,7 @@ Lưu thành tệp... Chọn tất cả Đã gửi yêu cầu in'{0}'. - Đổ bóng + Đổ bóng (/) Đổ bóng Đã chép ảnh vào clipboard. Độ dày của đường kẻ diff --git a/src/Greenshot/Languages/language-zh-CN.xml b/src/Greenshot/Languages/language-zh-CN.xml index 7325fff33..7e2dc9ec9 100644 --- a/src/Greenshot/Languages/language-zh-CN.xml +++ b/src/Greenshot/Languages/language-zh-CN.xml @@ -69,7 +69,7 @@ 不显示箭头 箭头在起点 自动裁剪 - 填充颜色 + 填充颜色 (0-9) 模糊半径 粗体 边框 @@ -106,7 +106,7 @@ 编辑E-Mail 文件 字体大小 - 线条颜色 + 线条颜色 (NumPad0-9, Shift+0-9) 灰度 高亮区域 灰阶 @@ -142,7 +142,7 @@ 百分比 全选 已使用 '{0}' 进行打印。 - 阴影 + 阴影 (/) 图片已保存到剪贴板。 线条粗细 Greenshot 图片编辑器 diff --git a/src/Greenshot/Languages/language-zh-TW.xml b/src/Greenshot/Languages/language-zh-TW.xml index 590ec8f05..4c47c89d4 100644 --- a/src/Greenshot/Languages/language-zh-TW.xml +++ b/src/Greenshot/Languages/language-zh-TW.xml @@ -77,7 +77,7 @@ Greenshot 不對這個程式做任何擔保。 這個程式是自由軟體,您 起點 自動裁剪 - 填色 + 填色 (0-9) 模糊半徑 粗體 框線 @@ -114,7 +114,7 @@ Greenshot 不對這個程式做任何擔保。 這個程式是自由軟體,您 電子郵件 檔案 大小 - 直線色彩 + 直線色彩 (NumPad0-9, Shift+0-9) 灰階 標示區域 灰階 @@ -150,7 +150,7 @@ Greenshot 不對這個程式做任何擔保。 這個程式是自由軟體,您 另存新檔... 全選 列印工作已傳送到「{0}」。 - 陰影 + 陰影 (/) 圖片已儲存到剪貼簿。 直線粗細 Greenshot 圖片編輯器