add shortcuts for foreground color, background color, line thickness, bold and shadow

This commit is contained in:
Marcel Meschenmoser 2021-10-08 16:00:33 +02:00
commit a5679db70c
52 changed files with 671 additions and 117 deletions

View file

@ -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);

View file

@ -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;
/// <summary>
/// Start value of the step-labels (counts)

View file

@ -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 <https://www.gnu.org/licenses/>.
*/
using System;
using System.Drawing;
namespace Greenshot.Base.Interfaces
{
public class SurfaceBackgroundColorEventArgs : EventArgs
{
public Color Color { get; set; }
}
}

View file

@ -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 <https://www.gnu.org/licenses/>.
*/
namespace Greenshot.Base.Interfaces
{
public delegate void SurfaceBackgroundColorEventHandler (object sender, SurfaceBackgroundColorEventArgs e);
}

View file

@ -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 <https://www.gnu.org/licenses/>.
*/
using System;
using System.Drawing;
namespace Greenshot.Base.Interfaces
{
public class SurfaceForegroundColorEventArgs : EventArgs
{
public Color Color { get; set; }
}
}

View file

@ -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 <https://www.gnu.org/licenses/>.
*/
namespace Greenshot.Base.Interfaces
{
public delegate void SurfaceForegroundColorEventHandler (object sender, SurfaceForegroundColorEventArgs e);
}

View file

@ -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 <https://www.gnu.org/licenses/>.
*/
using System;
using System.Drawing;
namespace Greenshot.Base.Interfaces
{
public class SurfaceLineThicknessEventArgs : EventArgs
{
public int Thickness { get; set; }
}
}

View file

@ -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 <https://www.gnu.org/licenses/>.
*/
namespace Greenshot.Base.Interfaces
{
public delegate void SurfaceLineThicknessEventHandler (object sender, SurfaceLineThicknessEventArgs e);
}

View file

@ -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 <https://www.gnu.org/licenses/>.
*/
using System;
using System.Drawing;
namespace Greenshot.Base.Interfaces
{
public class SurfaceShadowEventArgs : EventArgs
{
public bool HasShadow { get; set; }
}
}

View file

@ -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 <https://www.gnu.org/licenses/>.
*/
namespace Greenshot.Base.Interfaces
{
public delegate void SurfaceShadowEventHandler (object sender, SurfaceShadowEventArgs e);
}

View file

@ -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;
}
/// <summary>
/// Indicates whether the given list of elements can be pushed down,
/// i.e. whether there is at least one unselected element lower in hierarchy

View file

@ -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;
}
/// <summary>
/// inUndoRedo makes sure we don't undo/redo while in a undo/redo action
/// </summary>
@ -1060,6 +1092,74 @@ namespace Greenshot.Editor.Drawing
}
}
/// <summary>
/// Use to update UI when pressing a key to change the foreground color
/// </summary>
/// <param name="source">Who send</param>
/// <param name="color">new color</param>
public void UpdateForegroundColorEvent(object source, Color color)
{
if (_foregroundColorChanged != null)
{
var eventArgs = new SurfaceForegroundColorEventArgs
{
Color = color,
};
_foregroundColorChanged(source, eventArgs);
}
}
/// <summary>
/// Use to update UI when pressing a key to change the background color
/// </summary>
/// <param name="source">Who send</param>
/// <param name="color">new color</param>
public void UpdateBackgroundColorEvent(object source, Color color)
{
if (_lineThicknessChanged != null)
{
var eventArgs = new SurfaceBackgroundColorEventArgs
{
Color = color,
};
_backgroundColorChanged(source, eventArgs);
}
}
/// <summary>
/// Use to update UI when pressing a key to change the line thickness
/// </summary>
/// <param name="source">Who send</param>
/// <param name="thickness">new thickness</param>
public void UpdateLineThicknessEvent(object source, int thickness)
{
if (_lineThicknessChanged != null)
{
var eventArgs = new SurfaceLineThicknessEventArgs
{
Thickness = thickness,
};
_lineThicknessChanged(source, eventArgs);
}
}
/// <summary>
/// Use to update UI when pressing the key to show/hide the shadow
/// </summary>
/// <param name="source">Who send</param>
/// <param name="hasShadow">has shadow</param>
public void UpdateShadowEvent(object source, bool hasShadow)
{
if (_shadowChanged != null)
{
var eventArgs = new SurfaceShadowEventArgs
{
HasShadow = hasShadow,
};
_shadowChanged(source, eventArgs);
}
}
/// <summary>
/// Crop the surface
/// </summary>
@ -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();
}
/// <summary>
/// Property for accessing the elements on the surface
/// </summary>

View file

@ -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
}
}
/// <summary>
/// This is called when the foreground color of the select element chances, used for shortcuts
/// </summary>
/// <param name="sender"></param>
/// <param name="eventArgs"></param>
private void ForegroundColorChanged(object sender, SurfaceForegroundColorEventArgs eventArgs)
{
btnLineColor.SelectedColor = eventArgs.Color;
}
/// <summary>
/// This is called when the background color of the select element chances, used for shortcuts
/// </summary>
/// <param name="sender"></param>
/// <param name="eventArgs"></param>
private void BackgroundColorChanged(object sender, SurfaceBackgroundColorEventArgs eventArgs)
{
btnFillColor.SelectedColor = eventArgs.Color;
}
/// <summary>
/// This is called when the line thickness of the select element chances, used for shortcuts
/// </summary>
/// <param name="sender"></param>
/// <param name="eventArgs"></param>
private void LineThicknessChanged(object sender, SurfaceLineThicknessEventArgs eventArgs)
{
lineThicknessUpDown.Value = eventArgs.Thickness;
}
/// <summary>
/// This is called when the shadow of the select element chances, used for shortcuts
/// </summary>
/// <param name="sender"></param>
/// <param name="eventArgs"></param>
private void ShadowChanged(object sender, SurfaceShadowEventArgs eventArgs)
{
shadowButton.Checked = eventArgs.HasShadow;
}
/// <summary>
/// This is called when the size of the surface chances, used for resizing and displaying the size information
/// </summary>

View file

@ -48,7 +48,7 @@
<resource name="editor_arrowheads_end">نقطة النهاية</resource>
<resource name="editor_arrowheads_none">لاشيء</resource>
<resource name="editor_arrowheads_start">نقطة البداية</resource>
<resource name="editor_backcolor">لون التعبئة</resource>
<resource name="editor_backcolor">لون التعبئة (0-9)</resource>
<resource name="editor_blur_radius">قطر التأثير الضبابي</resource>
<resource name="editor_bold">عريض</resource>
<resource name="editor_brightness">السطوع</resource>
@ -78,7 +78,7 @@
<resource name="editor_email">البريد الالكتروني</resource>
<resource name="editor_file">ملف</resource>
<resource name="editor_fontsize">الحجم</resource>
<resource name="editor_forecolor">لون الخط</resource>
<resource name="editor_forecolor">لون الخط (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_highlight_area">منطقة التظليل</resource>
<resource name="editor_highlight_grayscale">مقياس اللون الرمادي</resource>
<resource name="editor_highlight_magnify">تكبير</resource>
@ -103,7 +103,7 @@
<resource name="editor_saveas">احفظ باسم...</resource>
<resource name="editor_selectall">حدد الكل</resource>
<resource name="editor_senttoprinter">امر الطباعة ارسل الى '{0}'.</resource>
<resource name="editor_shadow">الظل</resource>
<resource name="editor_shadow">الظل (/)</resource>
<resource name="editor_image_shadow">الظل</resource>
<resource name="editor_storedtoclipboard">ثم حفظ الصورة في الذاكرة.</resource>
<resource name="editor_thickness">سماكة الخط</resource>

View file

@ -77,7 +77,7 @@ Abans de crear un nou informe d'error, us agrairem que comproveu que l'error no
<resource name="editor_arrowheads_none">Cap</resource>
<resource name="editor_arrowheads_start">Punt inicial</resource>
<resource name="editor_autocrop">Autorretalla</resource>
<resource name="editor_backcolor">Color de fons</resource>
<resource name="editor_backcolor">Color de fons (0-9)</resource>
<resource name="editor_blur_radius">Radi del difuminat</resource>
<resource name="editor_bold">Negreta</resource>
<resource name="editor_border">Vora</resource>
@ -110,7 +110,7 @@ Abans de crear un nou informe d'error, us agrairem que comproveu que l'error no
<resource name="editor_email">Correu electrònic</resource>
<resource name="editor_file">Fitxer</resource>
<resource name="editor_fontsize">Mida</resource>
<resource name="editor_forecolor">Color de línia</resource>
<resource name="editor_forecolor">Color de línia (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Escala de grisos</resource>
<resource name="editor_highlight_area">Destaca l'àrea</resource>
<resource name="editor_highlight_grayscale">Escala de grisos</resource>
@ -146,7 +146,7 @@ Abans de crear un nou informe d'error, us agrairem que comproveu que l'error no
<resource name="editor_saveas">Anomena i desa...</resource>
<resource name="editor_selectall">Selecciona-ho tot</resource>
<resource name="editor_senttoprinter">S'ha enviat el treball d'impressió a '{0}'.</resource>
<resource name="editor_shadow">Ombra</resource>
<resource name="editor_shadow">Ombra (/)</resource>
<resource name="editor_storedtoclipboard">Imatge copiada al porta-retalls.</resource>
<resource name="editor_thickness">Gruix de línia</resource>
<resource name="editor_title">Editor d'imatges de Greenshot</resource>

View file

@ -78,7 +78,7 @@ Také bychom velmi ocenili, kdybyste zkontrolovali, zda tato chyba již není ev
<resource name="editor_arrowheads_none">Žádný</resource>
<resource name="editor_arrowheads_start">Počáteční bod</resource>
<resource name="editor_autocrop">Automatické oříznutí</resource>
<resource name="editor_backcolor">Barva výplně</resource>
<resource name="editor_backcolor">Barva výplně (0-9)</resource>
<resource name="editor_blur_radius">Poloměr rozostření</resource>
<resource name="editor_bold">Tučné</resource>
<resource name="editor_border">Okraj</resource>
@ -111,7 +111,7 @@ Také bychom velmi ocenili, kdybyste zkontrolovali, zda tato chyba již není ev
<resource name="editor_email">E-mail</resource>
<resource name="editor_file">Soubor</resource>
<resource name="editor_fontsize">Velikost</resource>
<resource name="editor_forecolor">Barva čáry</resource>
<resource name="editor_forecolor">Barva čáry (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Stupně šedi</resource>
<resource name="editor_highlight_area">Zvýraznit oblast</resource>
<resource name="editor_highlight_grayscale">Ve stupních šedi</resource>
@ -147,7 +147,7 @@ Také bychom velmi ocenili, kdybyste zkontrolovali, zda tato chyba již není ev
<resource name="editor_saveas">Uložit jako...</resource>
<resource name="editor_selectall">Vybrat vše</resource>
<resource name="editor_senttoprinter">Tisková úloha byla zaslána na '{0}'.</resource>
<resource name="editor_shadow">Vržený stín</resource>
<resource name="editor_shadow">Vržený stín (/)</resource>
<resource name="editor_storedtoclipboard">Obrázek byl vložen do schránky.</resource>
<resource name="editor_thickness">Tloušťka linky</resource>
<resource name="editor_title">Greenshot editor obrázků</resource>

View file

@ -4,6 +4,7 @@
<!--
Note to translator: uncomment entry "about_translation" to have
your efforts honored in the "About Greenshot" dialog
TODO: remove newlines as in other files -> this leads to problems in multiline texts (or try xml:space=preserve)
-->
<resource name="about_translation">
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
</resource>
<resource name="editor_forecolor">
Linjefarve
Linjefarve (NumPad0-9, Shift+0-9)
</resource>
<resource name="editor_backcolor">
Fyldfarve
Fyldfarve (0-9)
</resource>
<resource name="editor_thickness">
Linjetykkelse
@ -457,7 +458,7 @@ tidspunktet, fx 11_58_32 (plus filendelsen angivet i indstillingerne).
Forstørrelsesfaktor
</resource>
<resource name="editor_shadow">
Skygge
Skygge (/)
</resource>
<resource name="editor_confirm">
Bekræft

View file

@ -77,7 +77,7 @@ schnell zu finden. Vielen Dank :)</resource>
<resource name="editor_arrowheads_none">Keine</resource>
<resource name="editor_arrowheads_start">Anfangspunkt</resource>
<resource name="editor_autocrop">Automatisch zuschneiden</resource>
<resource name="editor_backcolor">Hintergrundfarbe</resource>
<resource name="editor_backcolor">Hintergrundfarbe (0-9)</resource>
<resource name="editor_blur_radius">Weichzeichner-Radius</resource>
<resource name="editor_bold">Fett</resource>
<resource name="editor_border">Rand</resource>
@ -110,7 +110,7 @@ schnell zu finden. Vielen Dank :)</resource>
<resource name="editor_email">E-Mail</resource>
<resource name="editor_file">Datei</resource>
<resource name="editor_fontsize">Größe</resource>
<resource name="editor_forecolor">Rahmenfarbe</resource>
<resource name="editor_forecolor">Rahmenfarbe (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Graustufe</resource>
<resource name="editor_highlight_area">Bereich hervorheben</resource>
<resource name="editor_highlight_grayscale">Graustufen</resource>
@ -146,7 +146,7 @@ schnell zu finden. Vielen Dank :)</resource>
<resource name="editor_saveas">Speichern unter...</resource>
<resource name="editor_selectall">Alle Objekte auswählen</resource>
<resource name="editor_senttoprinter">Druckauftrag wurde an '{0}' gesendet.</resource>
<resource name="editor_shadow">Schatten An/Aus</resource>
<resource name="editor_shadow">Schatten An/Aus (/)</resource>
<resource name="editor_storedtoclipboard">Bild wurde in Zwischenablage kopiert.</resource>
<resource name="editor_thickness">Linienstärke</resource>
<resource name="editor_title">Greenshot Editor</resource>

View file

@ -73,7 +73,7 @@ Dangschee, wassd scho :)</resource>
<resource name="editor_arrowheads_none">Kanne</resource>
<resource name="editor_arrowheads_start">Anfangsbunkd</resource>
<resource name="editor_autocrop">Audomadisch zamschneidn</resource>
<resource name="editor_backcolor">Hindergrundfarm</resource>
<resource name="editor_backcolor">Hindergrundfarm (0-9)</resource>
<resource name="editor_blur_radius">Weichzeichner-Rodius</resource>
<resource name="editor_bold">Fedd</resource>
<resource name="editor_border">Rohma</resource>
@ -106,7 +106,7 @@ Dangschee, wassd scho :)</resource>
<resource name="editor_email">I-Mehl</resource>
<resource name="editor_file">Dadei</resource>
<resource name="editor_fontsize">Größe</resource>
<resource name="editor_forecolor">Rahmafarb</resource>
<resource name="editor_forecolor">Rahmafarb (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Grauschdufn</resource>
<resource name="editor_highlight_area">Breich hervorheem</resource>
<resource name="editor_highlight_grayscale">Grauschdufn</resource>
@ -140,7 +140,7 @@ Dangschee, wassd scho :)</resource>
<resource name="editor_saveas">Schbeichern under...</resource>
<resource name="editor_selectall">Alle Objegde auswähln</resource>
<resource name="editor_senttoprinter">Drugger läffd: '{0}'</resource>
<resource name="editor_shadow">Schaddn An/Aus</resource>
<resource name="editor_shadow">Schaddn An/Aus (/)</resource>
<resource name="editor_storedtoclipboard">Bild is in der Zwischnablach.</resource>
<resource name="editor_thickness">Linienschdärge</resource>
<resource name="editor_title">Greenshot Edidor</resource>

View file

@ -78,7 +78,7 @@
<resource name="editor_arrowheads_none">Κανένα</resource>
<resource name="editor_arrowheads_start">Σημείο έναρξης</resource>
<resource name="editor_autocrop">Αυτόματη Περικοπή</resource>
<resource name="editor_backcolor">Γέμισμα</resource>
<resource name="editor_backcolor">Γέμισμα (0-9)</resource>
<resource name="editor_blur_radius">Θόλωμα</resource>
<resource name="editor_bold">Έντονα</resource>
<resource name="editor_border">Περίγραμμα</resource>
@ -115,7 +115,7 @@
<resource name="editor_email">E-Mail</resource>
<resource name="editor_file">Αρχείο</resource>
<resource name="editor_fontsize">Μέγεθος</resource>
<resource name="editor_forecolor">Χρώμα γραμμής</resource>
<resource name="editor_forecolor">Χρώμα γραμμής (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Απόχρωση του γκρι</resource>
<resource name="editor_highlight_area">Επισήμανση περιοχής</resource>
<resource name="editor_highlight_grayscale">Απόχρωση του γκρι</resource>
@ -151,7 +151,7 @@
<resource name="editor_saveas">Αποθήκευση ως...</resource>
<resource name="editor_selectall">Επιλογή όλων</resource>
<resource name="editor_senttoprinter">Η εκτύπωση στάλθηκε στον '{0}'.</resource>
<resource name="editor_shadow">Σκιά</resource>
<resource name="editor_shadow">Σκιά (/)</resource>
<resource name="editor_storedtoclipboard">Η εικόνα αποθηκεύτηκε στο πρόχειρο.</resource>
<resource name="editor_thickness">Πάχος γραμμής</resource>
<resource name="editor_title">Επεξεργαστής εικόνας του Greenshot</resource>

View file

@ -78,7 +78,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e
<resource name="editor_arrowheads_none">None</resource>
<resource name="editor_arrowheads_start">Start point</resource>
<resource name="editor_autocrop">Auto crop</resource>
<resource name="editor_backcolor">Fill color</resource>
<resource name="editor_backcolor">Fill color (0-9)</resource>
<resource name="editor_blur_radius">Blur radius</resource>
<resource name="editor_bold">Bold</resource>
<resource name="editor_border">Border</resource>
@ -111,7 +111,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e
<resource name="editor_email">E-Mail</resource>
<resource name="editor_file">File</resource>
<resource name="editor_fontsize">Size</resource>
<resource name="editor_forecolor">Line color</resource>
<resource name="editor_forecolor">Line color (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Grayscale</resource>
<resource name="editor_highlight_area">Highlight area</resource>
<resource name="editor_highlight_grayscale">Grayscale</resource>
@ -147,7 +147,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e
<resource name="editor_saveas">Save as...</resource>
<resource name="editor_selectall">Select all</resource>
<resource name="editor_senttoprinter">Print job was sent to '{0}'.</resource>
<resource name="editor_shadow">Drop shadow</resource>
<resource name="editor_shadow">Drop shadow (/)</resource>
<resource name="editor_storedtoclipboard">Image stored to clipboard.</resource>
<resource name="editor_thickness">Line thickness</resource>
<resource name="editor_title">Greenshot image editor</resource>

View file

@ -65,7 +65,7 @@ Antes de crear un nuevo informe de error, te agradeceríamos que comprobaras que
<resource name="editor_arrowheads_none">Nada</resource>
<resource name="editor_arrowheads_start">Punto inicial</resource>
<resource name="editor_autocrop">Autorrecortar</resource>
<resource name="editor_backcolor">Color de relleno</resource>
<resource name="editor_backcolor">Color de relleno (0-9)</resource>
<resource name="editor_blur_radius">Blur radius</resource>
<resource name="editor_bold">Bold</resource>
<resource name="editor_border">Borde</resource>
@ -98,7 +98,7 @@ Antes de crear un nuevo informe de error, te agradeceríamos que comprobaras que
<resource name="editor_email">Correo electrónico</resource>
<resource name="editor_file">Archivo</resource>
<resource name="editor_fontsize">Tamaño</resource>
<resource name="editor_forecolor">Color de línea</resource>
<resource name="editor_forecolor">Color de línea (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Escala de grises</resource>
<resource name="editor_highlight_area">Destacar área</resource>
<resource name="editor_highlight_grayscale">Escala de grises</resource>
@ -132,7 +132,7 @@ Antes de crear un nuevo informe de error, te agradeceríamos que comprobaras que
<resource name="editor_saveas">Guardar como...</resource>
<resource name="editor_selectall">Seleccionar todo</resource>
<resource name="editor_senttoprinter">Se ha enviado el trabajo de impresión a '{0}'.</resource>
<resource name="editor_shadow">Sombra</resource>
<resource name="editor_shadow">Sombra (/)</resource>
<resource name="editor_storedtoclipboard">Imagen guardada en el portapapeles.</resource>
<resource name="editor_thickness">Grosor de línea</resource>
<resource name="editor_title">Editor de imagen de Greenshot</resource>

View file

@ -77,7 +77,7 @@ Me oleksime väga tänulik, kui te enne kontrolliksite, ega sellest veast pole j
<resource name="editor_arrowheads_none">Tühi</resource>
<resource name="editor_arrowheads_start">Alguspunkt</resource>
<resource name="editor_autocrop">Automaatne lõikus</resource>
<resource name="editor_backcolor">Täitke värviga</resource>
<resource name="editor_backcolor">Täitke värviga (0-9)</resource>
<resource name="editor_blur_radius">Uduse ala raadius</resource>
<resource name="editor_bold">Paks</resource>
<resource name="editor_border">Äär</resource>
@ -114,7 +114,7 @@ Me oleksime väga tänulik, kui te enne kontrolliksite, ega sellest veast pole j
<resource name="editor_email">E-post</resource>
<resource name="editor_file">Fail</resource>
<resource name="editor_fontsize">Suurus</resource>
<resource name="editor_forecolor">Joone värv</resource>
<resource name="editor_forecolor">Joone värv (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Halli skaala</resource>
<resource name="editor_highlight_area">Tooge esiplaanile</resource>
<resource name="editor_highlight_grayscale">Hall skaala</resource>
@ -150,7 +150,7 @@ Me oleksime väga tänulik, kui te enne kontrolliksite, ega sellest veast pole j
<resource name="editor_saveas">Salvestage nimega...</resource>
<resource name="editor_selectall">Valige kõik</resource>
<resource name="editor_senttoprinter">Printimiskäsklus saadeti '{0}'.</resource>
<resource name="editor_shadow">Langev vari</resource>
<resource name="editor_shadow">Langev vari (/)</resource>
<resource name="editor_storedtoclipboard">Pilt taastati lõikelauale.</resource>
<resource name="editor_thickness">Joone paksus</resource>
<resource name="editor_title">Greenshoti pildihaldur</resource>

View file

@ -52,7 +52,7 @@ Could not save Greenshot's configuration file. Please check access permissions f
<resource name="editor_arrowheads_end">نقطه پایان</resource>
<resource name="editor_arrowheads_none">هیچکدام</resource>
<resource name="editor_arrowheads_start">نقطه شروع</resource>
<resource name="editor_backcolor">رنگ پرکننده</resource>
<resource name="editor_backcolor">رنگ پرکننده (0-9)</resource>
<resource name="editor_blur_radius">شدت محو کردن</resource>
<resource name="editor_bold">ضخیم</resource>
<resource name="editor_brightness">روشنایی</resource>
@ -90,7 +90,7 @@ Could not save Greenshot's configuration file. Please check access permissions f
<resource name="editor_email">ایمیل</resource>
<resource name="editor_file">پوشه</resource>
<resource name="editor_fontsize">اندازه</resource>
<resource name="editor_forecolor">رنگ خط</resource>
<resource name="editor_forecolor">رنگ خط (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_highlight_area">برجسته نمودن ناحیه</resource>
<resource name="editor_highlight_grayscale">خاکستری</resource>
<resource name="editor_highlight_magnify">بزرگنمایی</resource>
@ -116,7 +116,7 @@ Could not save Greenshot's configuration file. Please check access permissions f
<resource name="editor_saveas">...ذخیره با نام</resource>
<resource name="editor_selectall">اتخاب همه</resource>
<resource name="editor_senttoprinter">.چاپ به ' {0} ' فرستاده شد</resource>
<resource name="editor_shadow">سایه</resource>
<resource name="editor_shadow">سایه (/)</resource>
<resource name="editor_image_shadow">سایه</resource>
<resource name="editor_storedtoclipboard">.تصویر در حافظه موقت ذخیره شد</resource>
<resource name="editor_thickness">ضخامت خط</resource>

View file

@ -48,7 +48,7 @@ Olisi myös hyvä jos voisit tarkistaa onko virhe jo raportoitu aikaisemmin (voi
<resource name="editor_arrowheads_end">Loppupää</resource>
<resource name="editor_arrowheads_none">Ei</resource>
<resource name="editor_arrowheads_start">Alkupää</resource>
<resource name="editor_backcolor">Täyttöväri</resource>
<resource name="editor_backcolor">Täyttöväri (0-9)</resource>
<resource name="editor_blur_radius">Sumennussäde</resource>
<resource name="editor_bold">Lihavoitu</resource>
<resource name="editor_brightness">Kirkkaus</resource>
@ -78,7 +78,7 @@ Olisi myös hyvä jos voisit tarkistaa onko virhe jo raportoitu aikaisemmin (voi
<resource name="editor_email">Sähköposti</resource>
<resource name="editor_file">Tiedosto</resource>
<resource name="editor_fontsize">Size</resource>
<resource name="editor_forecolor">Viivan väri</resource>
<resource name="editor_forecolor">Viivan väri (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_highlight_area">Korosta alue</resource>
<resource name="editor_highlight_grayscale">Grayscale</resource>
<resource name="editor_highlight_magnify">Magnify</resource>
@ -103,7 +103,7 @@ Olisi myös hyvä jos voisit tarkistaa onko virhe jo raportoitu aikaisemmin (voi
<resource name="editor_saveas">Tallenna nimellä...</resource>
<resource name="editor_selectall">Valitse kaikki</resource>
<resource name="editor_senttoprinter">Tulostustyö lähetettiin tulostimelle '{0}'.</resource>
<resource name="editor_shadow">Varjo</resource>
<resource name="editor_shadow">Varjo (/)</resource>
<resource name="editor_image_shadow">Varjo</resource>
<resource name="editor_storedtoclipboard">Kuva on kopioitu leikepöydälle.</resource>
<resource name="editor_thickness">Viivan paksuus</resource>

View file

@ -77,7 +77,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si
<resource name="editor_arrowheads_none">Aucun</resource>
<resource name="editor_arrowheads_start">Point d'origine</resource>
<resource name="editor_autocrop">Cadrage automatique</resource>
<resource name="editor_backcolor">Couleur de remplissage</resource>
<resource name="editor_backcolor">Couleur de remplissage (0-9)</resource>
<resource name="editor_blur_radius">Rayon du floutage</resource>
<resource name="editor_bold">Gras</resource>
<resource name="editor_border">Ajouter une bordure</resource>
@ -115,7 +115,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si
<resource name="editor_email">Courriel</resource>
<resource name="editor_file">Fichier</resource>
<resource name="editor_fontsize">Taille</resource>
<resource name="editor_forecolor">Couleur de la ligne</resource>
<resource name="editor_forecolor">Couleur de la ligne (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Niveaux de gris</resource>
<resource name="editor_highlight_area">Surligner une zone</resource>
<resource name="editor_highlight_grayscale">Niveaux de gris</resource>
@ -156,7 +156,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si
<resource name="editor_saveas">Enregistrer sous...</resource>
<resource name="editor_selectall">Sélectionner tout</resource>
<resource name="editor_senttoprinter">La tâche d'impression a été envoyée vers '{0}'.</resource>
<resource name="editor_shadow">Ombre portée</resource>
<resource name="editor_shadow">Ombre portée (/)</resource>
<resource name="editor_speechbubble">Ajouter une bulle de texte</resource>
<resource name="editor_storedtoclipboard">L'image a été placée dans le presse-papier.</resource>
<resource name="editor_thickness">Épaisseur de ligne</resource>

View file

@ -63,7 +63,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si
<resource name="editor_arrowheads_none">Aucun</resource>
<resource name="editor_arrowheads_start">Point d'origine</resource>
<resource name="editor_autocrop">Rognage automatique</resource>
<resource name="editor_backcolor">Couleur de remplissage</resource>
<resource name="editor_backcolor">Couleur de remplissage (0-9)</resource>
<resource name="editor_blur_radius">Rayon du flou</resource>
<resource name="editor_bold">Gras</resource>
<resource name="editor_border">Bordure</resource>
@ -96,7 +96,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si
<resource name="editor_email">Courriel</resource>
<resource name="editor_file">Fichier</resource>
<resource name="editor_fontsize">Taille</resource>
<resource name="editor_forecolor">Couleur de ligne</resource>
<resource name="editor_forecolor">Couleur de ligne (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Tons de gris</resource>
<resource name="editor_highlight_area">Surligner une zone</resource>
<resource name="editor_highlight_grayscale">Niveaux de gris</resource>
@ -129,7 +129,7 @@ De plus, nous apprécierions beaucoup que vous preniez la peine de vérifier si
<resource name="editor_saveas">Sauvegarder sous...</resource>
<resource name="editor_selectall">Sélectionner tout</resource>
<resource name="editor_senttoprinter">La tâche d'impression a été envoyée vers '{0}'.</resource>
<resource name="editor_shadow">Ombre</resource>
<resource name="editor_shadow">Ombre (/)</resource>
<resource name="editor_storedtoclipboard">L'image a été placée dans le presse-papier.</resource>
<resource name="editor_thickness">Épaisseur de ligne</resource>
<resource name="editor_title">Éditeur d'image Greenshot</resource>

View file

@ -49,7 +49,7 @@ Details about the GNU General Public License:</resource>
<resource name="editor_arrowheads_end">נקודת סיום</resource>
<resource name="editor_arrowheads_none">אף-אחד</resource>
<resource name="editor_arrowheads_start">נקודת התחלה</resource>
<resource name="editor_backcolor">צבע תוכן</resource>
<resource name="editor_backcolor">צבע תוכן (0-9)</resource>
<resource name="editor_blur_radius">טשטש רדיוס</resource>
<resource name="editor_bold">מודגש</resource>
<resource name="editor_brightness">בהירות</resource>
@ -79,7 +79,7 @@ Details about the GNU General Public License:</resource>
<resource name="editor_email">דואר אלקטרוני</resource>
<resource name="editor_file">קובץ</resource>
<resource name="editor_fontsize">גודל</resource>
<resource name="editor_forecolor">צבע קו</resource>
<resource name="editor_forecolor">צבע קו (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_highlight_area">אזור מודגש</resource>
<resource name="editor_highlight_grayscale">גווני אפור</resource>
<resource name="editor_highlight_magnify">הגדלה</resource>
@ -104,7 +104,7 @@ Details about the GNU General Public License:</resource>
<resource name="editor_saveas">...שמירה בשם</resource>
<resource name="editor_selectall">בחר הכל</resource>
<resource name="editor_senttoprinter">ההדפסה נשלחה אל '{0}'.</resource>
<resource name="editor_shadow">הצללה</resource>
<resource name="editor_shadow">הצללה (/)</resource>
<resource name="editor_image_shadow">הצללה</resource>
<resource name="editor_storedtoclipboard">תמונה הועברה אל הלוח</resource>
<resource name="editor_thickness">עובי קו</resource>

View file

@ -49,7 +49,7 @@ Kérjük adjon összefoglaló leírást és csatoljon minden olyan információt
<resource name="editor_arrowheads_end">Vég pont</resource>
<resource name="editor_arrowheads_none">Egyiksem</resource>
<resource name="editor_arrowheads_start">Kezdő pont</resource>
<resource name="editor_backcolor">Kitöltési szín</resource>
<resource name="editor_backcolor">Kitöltési szín (0-9)</resource>
<resource name="editor_blur_radius">Homályosítás mértéke</resource>
<resource name="editor_bold">Félkövér</resource>
<resource name="editor_brightness">Fényerő</resource>
@ -79,7 +79,7 @@ Kérjük adjon összefoglaló leírást és csatoljon minden olyan információt
<resource name="editor_email">E-Mail</resource>
<resource name="editor_file">Fájl</resource>
<resource name="editor_fontsize">Méret</resource>
<resource name="editor_forecolor">Vonal szín</resource>
<resource name="editor_forecolor">Vonal szín (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_highlight_area">Terület kiemelés</resource>
<resource name="editor_highlight_grayscale">Szürkeárnyalat</resource>
<resource name="editor_highlight_magnify">Nagyítás</resource>
@ -104,7 +104,7 @@ Kérjük adjon összefoglaló leírást és csatoljon minden olyan információt
<resource name="editor_saveas">Mentés másként</resource>
<resource name="editor_selectall">Mindet kijelöl</resource>
<resource name="editor_senttoprinter">Nyomtatási feladat küldése '{0}'.</resource>
<resource name="editor_shadow">Árnyékolás</resource>
<resource name="editor_shadow">Árnyékolás (/)</resource>
<resource name="editor_image_shadow">Árnyékolás</resource>
<resource name="editor_storedtoclipboard">A tárolt képet a vágólapra.</resource>
<resource name="editor_thickness">Vonal vastagság</resource>

View file

@ -77,7 +77,7 @@ Juga, kami sangat terbantu apabila anda mengecek laporan lain yang sama dengan k
<resource name="editor_arrowheads_none">Nihil</resource>
<resource name="editor_arrowheads_start">Titik awal</resource>
<resource name="editor_autocrop">Auto potong</resource>
<resource name="editor_backcolor">Warna pengisi</resource>
<resource name="editor_backcolor">Warna pengisi (0-9)</resource>
<resource name="editor_blur_radius">Blur radius</resource>
<resource name="editor_bold">Tebal</resource>
<resource name="editor_border">Batas</resource>
@ -115,7 +115,7 @@ Juga, kami sangat terbantu apabila anda mengecek laporan lain yang sama dengan k
<resource name="editor_email">E-Mail</resource>
<resource name="editor_file">Berkas</resource>
<resource name="editor_fontsize">Ukuran</resource>
<resource name="editor_forecolor">Warna garis</resource>
<resource name="editor_forecolor">Warna garis (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Keabu-abuan</resource>
<resource name="editor_highlight_area">Tandai area</resource>
<resource name="editor_highlight_grayscale">Keabu-abuan</resource>
@ -156,7 +156,7 @@ Juga, kami sangat terbantu apabila anda mengecek laporan lain yang sama dengan k
<resource name="editor_saveas">Simpan sebagai...</resource>
<resource name="editor_selectall">Pilih semua</resource>
<resource name="editor_senttoprinter">Cetakan dikirim ke '{0}'.</resource>
<resource name="editor_shadow">Bayangan</resource>
<resource name="editor_shadow">Bayangan (/)</resource>
<resource name="editor_speechbubble">Buat kotak dialog</resource>
<resource name="editor_storedtoclipboard">Gambar tersimpan di papan klip.</resource>
<resource name="editor_thickness">Ketebalan garis</resource>

View file

@ -83,7 +83,7 @@ Controlla i permessi di accesso per '{0}'.</resource>
<resource name="editor_arrowheads_none">Nessuna</resource>
<resource name="editor_arrowheads_start">Punto iniziale</resource>
<resource name="editor_autocrop">Ritaglia Automaticamente</resource>
<resource name="editor_backcolor">Colore di riempimento</resource>
<resource name="editor_backcolor">Colore di riempimento (0-9)</resource>
<resource name="editor_blur_radius">Raggio sfumatura</resource>
<resource name="editor_bold">Grassetto</resource>
<resource name="editor_border">Bordi</resource>
@ -116,7 +116,7 @@ Controlla i permessi di accesso per '{0}'.</resource>
<resource name="editor_email">Email</resource>
<resource name="editor_file">File</resource>
<resource name="editor_fontsize">Dimensioni</resource>
<resource name="editor_forecolor">Colore linea</resource>
<resource name="editor_forecolor">Colore linea (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Scala di grigi</resource>
<resource name="editor_highlight_area">Evidenzia l'area</resource>
<resource name="editor_highlight_grayscale">Scala di grigi</resource>
@ -152,7 +152,7 @@ Controlla i permessi di accesso per '{0}'.</resource>
<resource name="editor_saveas">Salva come...</resource>
<resource name="editor_selectall">Seleziona tutto</resource>
<resource name="editor_senttoprinter">Stampa inviata a '{0}'.</resource>
<resource name="editor_shadow">Ombra</resource>
<resource name="editor_shadow">Ombra (/)</resource>
<resource name="editor_storedtoclipboard">Immagine copiata negli Appunti.</resource>
<resource name="editor_thickness">Spessore linea</resource>
<resource name="editor_title">Gestione immagini di Greenshot</resource>

View file

@ -76,7 +76,7 @@ Greenshot には一切の保障がありません。GNU General Public License
<resource name="editor_arrowheads_none">なし</resource>
<resource name="editor_arrowheads_start">始点</resource>
<resource name="editor_autocrop">自動切り抜き</resource>
<resource name="editor_backcolor">塗りつぶし</resource>
<resource name="editor_backcolor">塗りつぶし (0-9)</resource>
<resource name="editor_blur_radius">ブラー半径</resource>
<resource name="editor_bold">太字</resource>
<resource name="editor_border">ボーダーライン</resource>
@ -114,7 +114,7 @@ Greenshot には一切の保障がありません。GNU General Public License
<resource name="editor_email">Eメール</resource>
<resource name="editor_file">ファイル</resource>
<resource name="editor_fontsize">サイズ</resource>
<resource name="editor_forecolor">ライン カラー</resource>
<resource name="editor_forecolor">ライン カラー (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">グレースケール</resource>
<resource name="editor_highlight_area">エリア ハイライト</resource>
<resource name="editor_highlight_grayscale">グレースケール</resource>
@ -155,7 +155,7 @@ Greenshot には一切の保障がありません。GNU General Public License
<resource name="editor_saveas">名付けて保存...</resource>
<resource name="editor_selectall">すべて選択</resource>
<resource name="editor_senttoprinter">'{0}' に印刷ジョブを送りました。</resource>
<resource name="editor_shadow">シャドウ</resource>
<resource name="editor_shadow">シャドウ (/)</resource>
<resource name="editor_speechbubble">吹き出しを挿入する (S)</resource>
<resource name="editor_storedtoclipboard">画像をクリップボードに送りました。</resource>
<resource name="editor_thickness">線の太さ</resource>

View file

@ -77,7 +77,7 @@ Rnu ɣur-s, nḥemmel aṭas ma yella tesneqdeḍ aneqqis igebren ugur-agi. (Tze
<resource name="editor_arrowheads_none">Ula yiwen</resource>
<resource name="editor_arrowheads_start">Taneqqiṭ n tazwara</resource>
<resource name="editor_autocrop">Aseggem awurman</resource>
<resource name="editor_backcolor">Ini n taččart</resource>
<resource name="editor_backcolor">Ini n taččart (0-9)</resource>
<resource name="editor_blur_radius">Aqqaṛ n udaɛmec</resource>
<resource name="editor_bold">Zur</resource>
<resource name="editor_border">Rnu leryuf</resource>
@ -115,7 +115,7 @@ Rnu ɣur-s, nḥemmel aṭas ma yella tesneqdeḍ aneqqis igebren ugur-agi. (Tze
<resource name="editor_email">Imayl</resource>
<resource name="editor_file">Afaylu</resource>
<resource name="editor_fontsize">Teɣzi</resource>
<resource name="editor_forecolor">Ini n izirig</resource>
<resource name="editor_forecolor">Ini n izirig (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Tifesniwin n umumed</resource>
<resource name="editor_highlight_area">Jerreḍ tamnaṭ</resource>
<resource name="editor_highlight_grayscale">Tifesniwin n umumed</resource>
@ -156,7 +156,7 @@ Rnu ɣur-s, nḥemmel aṭas ma yella tesneqdeḍ aneqqis igebren ugur-agi. (Tze
<resource name="editor_saveas">Sekles s yisem...</resource>
<resource name="editor_selectall">Fren akk</resource>
<resource name="editor_senttoprinter">Tamhelt n usiggez tettwazen ɣer '{0}'.</resource>
<resource name="editor_shadow">Tili tettwarfed</resource>
<resource name="editor_shadow">Tili tettwarfed (/)</resource>
<resource name="editor_speechbubble">tačuffiṭ n uḍris</resource>
<resource name="editor_storedtoclipboard">Tugna tetwasers ɣef afus.</resource>
<resource name="editor_thickness">Tuzert n izirig</resource>

View file

@ -77,7 +77,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e
<resource name="editor_arrowheads_none">없음</resource>
<resource name="editor_arrowheads_start">시작점</resource>
<resource name="editor_autocrop">자동 잘라내기</resource>
<resource name="editor_backcolor">채움 색상</resource>
<resource name="editor_backcolor">채움 색상 (0-9)</resource>
<resource name="editor_blur_radius">흐림 반경</resource>
<resource name="editor_bold">진하게</resource>
<resource name="editor_border">경계</resource>
@ -110,7 +110,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e
<resource name="editor_email">이메일</resource>
<resource name="editor_file">파일</resource>
<resource name="editor_fontsize">크기</resource>
<resource name="editor_forecolor">선 색상</resource>
<resource name="editor_forecolor">선 색상 (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">그레이스케일</resource>
<resource name="editor_highlight_area">구역 강조</resource>
<resource name="editor_highlight_grayscale">그레이스케일</resource>
@ -146,7 +146,7 @@ Also, we would highly appreciate if you checked whether a tracker item already e
<resource name="editor_saveas">다른 이름으로 저장...</resource>
<resource name="editor_selectall">전체 선택</resource>
<resource name="editor_senttoprinter">인쇄 작업을 '{0}'로 보내기.</resource>
<resource name="editor_shadow">그림자</resource>
<resource name="editor_shadow">그림자 (/)</resource>
<resource name="editor_storedtoclipboard">이미지를 클립보드로 저장.</resource>
<resource name="editor_thickness">선 두께</resource>
<resource name="editor_title">Greenshot 내장 이미지 편집기</resource>

View file

@ -47,7 +47,7 @@ Dėkojame už pagalbą :)</resource>
<resource name="editor_arrowheads_end">Pabaigoje</resource>
<resource name="editor_arrowheads_none">Ne</resource>
<resource name="editor_arrowheads_start">Pradžioje</resource>
<resource name="editor_backcolor">Fono spalva</resource>
<resource name="editor_backcolor">Fono spalva (0-9)</resource>
<resource name="editor_blur_radius">Išliejimo spindulys</resource>
<resource name="editor_bold">Pastorintas</resource>
<resource name="editor_brightness">Ryškumas</resource>
@ -77,7 +77,7 @@ Dėkojame už pagalbą :)</resource>
<resource name="editor_email">Išsiųsti elektroninu paštu</resource>
<resource name="editor_file">Failas</resource>
<resource name="editor_fontsize">Dydis</resource>
<resource name="editor_forecolor">Apvado spalva</resource>
<resource name="editor_forecolor">Apvado spalva (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_highlight_area">Skaidrus tarp blankaus (I)</resource>
<resource name="editor_highlight_grayscale">Zonos išskyrimas</resource>
<resource name="editor_highlight_magnify">Išdidinimas</resource>
@ -102,7 +102,7 @@ Dėkojame už pagalbą :)</resource>
<resource name="editor_saveas">Išsaugoti kaip...</resource>
<resource name="editor_selectall">išskirti viską</resource>
<resource name="editor_senttoprinter">Spausdinys nusiųstas į {0}.</resource>
<resource name="editor_shadow">Šešėlis</resource>
<resource name="editor_shadow">Šešėlis (/)</resource>
<resource name="editor_image_shadow">Šešėlis</resource>
<resource name="editor_storedtoclipboard">Vaizdas patalpintas į iškarpinių podelį.</resource>
<resource name="editor_thickness">Apvado storis</resource>

View file

@ -77,7 +77,7 @@ Mēs būtu Tev pateicīgi, ja Tu vispirms pārbaudītu, vai kāds cits jau nav z
<resource name="editor_arrowheads_none">Bez uzgaļiem</resource>
<resource name="editor_arrowheads_start">Līnjas sākumā</resource>
<resource name="editor_autocrop">Automātiski apcirst</resource>
<resource name="editor_backcolor">Aizpildījuma krāsa</resource>
<resource name="editor_backcolor">Aizpildījuma krāsa (0-9)</resource>
<resource name="editor_blur_radius">Izpludinājuma rādiuss</resource>
<resource name="editor_bold">Trekns</resource>
<resource name="editor_border">Apmale</resource>
@ -110,7 +110,7 @@ Mēs būtu Tev pateicīgi, ja Tu vispirms pārbaudītu, vai kāds cits jau nav z
<resource name="editor_email">E-pasts</resource>
<resource name="editor_file">Fails</resource>
<resource name="editor_fontsize">Izmērs</resource>
<resource name="editor_forecolor">Līnijas krāsa</resource>
<resource name="editor_forecolor">Līnijas krāsa (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Pelēko toņu</resource>
<resource name="editor_highlight_area">Aptumšot apkārt</resource>
<resource name="editor_highlight_grayscale">Bez krāsas apkārt</resource>
@ -146,7 +146,7 @@ Mēs būtu Tev pateicīgi, ja Tu vispirms pārbaudītu, vai kāds cits jau nav z
<resource name="editor_saveas">Saglbāt kā...</resource>
<resource name="editor_selectall">Saglabāt visu</resource>
<resource name="editor_senttoprinter">Izdrukāt tika nosūtīts uz '{0}'.</resource>
<resource name="editor_shadow">Veidot ēnu</resource>
<resource name="editor_shadow">Veidot ēnu (/)</resource>
<resource name="editor_storedtoclipboard">Attēls saglabāts starpliktuvē.</resource>
<resource name="editor_thickness">Līnijas biezums</resource>
<resource name="editor_title">„Greenshot” attēla redaktors</resource>

View file

@ -78,7 +78,7 @@ Controleer ook even of dit probleem mogelijk al gemeld is! Gebruik de zoekfuncti
<resource name="editor_arrowheads_none">Geen</resource>
<resource name="editor_arrowheads_start">Startpunt</resource>
<resource name="editor_autocrop">Automatisch bijsnijden</resource>
<resource name="editor_backcolor">Vulkleur</resource>
<resource name="editor_backcolor">Vulkleur (0-9)</resource>
<resource name="editor_blur_radius">Vervagingsradius</resource>
<resource name="editor_bold">Vet</resource>
<resource name="editor_border">Rand</resource>
@ -111,7 +111,7 @@ Controleer ook even of dit probleem mogelijk al gemeld is! Gebruik de zoekfuncti
<resource name="editor_email">E-mail</resource>
<resource name="editor_file">Bestand</resource>
<resource name="editor_fontsize">Grootte</resource>
<resource name="editor_forecolor">Lijnkleur</resource>
<resource name="editor_forecolor">Lijnkleur (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Grijstinten</resource>
<resource name="editor_highlight_area">Gebied markeren</resource>
<resource name="editor_highlight_grayscale">Grijstinten</resource>
@ -147,7 +147,7 @@ Controleer ook even of dit probleem mogelijk al gemeld is! Gebruik de zoekfuncti
<resource name="editor_saveas">Opslaan als…</resource>
<resource name="editor_selectall">Alles selecteren</resource>
<resource name="editor_senttoprinter">Afdruktaak verzonden naar '{0}'.</resource>
<resource name="editor_shadow">Schaduw</resource>
<resource name="editor_shadow">Schaduw (/)</resource>
<resource name="editor_storedtoclipboard">Afbeelding opgeslagen op het klembord.</resource>
<resource name="editor_thickness">Lijndikte</resource>
<resource name="editor_title">Greenshot beeldbewerker</resource>

View file

@ -65,7 +65,7 @@ Me sett òg pris på om du ved hjelp av søkefunksjonen på sida kan sjekke om d
<resource name="editor_arrowheads_none">Ingen</resource>
<resource name="editor_arrowheads_start">Startpunkt</resource>
<resource name="editor_autocrop">Auto-skjer</resource>
<resource name="editor_backcolor">Fyllfarge</resource>
<resource name="editor_backcolor">Fyllfarge (0-9)</resource>
<resource name="editor_blur_radius">Uskarp-radius</resource>
<resource name="editor_bold">Feit</resource>
<resource name="editor_border">Ramme</resource>
@ -98,7 +98,7 @@ Me sett òg pris på om du ved hjelp av søkefunksjonen på sida kan sjekke om d
<resource name="editor_email">E-post</resource>
<resource name="editor_file">Fil</resource>
<resource name="editor_fontsize">Storleik</resource>
<resource name="editor_forecolor">Linefarge</resource>
<resource name="editor_forecolor">Linefarge (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Gråtone</resource>
<resource name="editor_highlight_area">Marker område</resource>
<resource name="editor_highlight_grayscale">Gråtone</resource>
@ -131,7 +131,7 @@ Me sett òg pris på om du ved hjelp av søkefunksjonen på sida kan sjekke om d
<resource name="editor_saveas">Lagre som...</resource>
<resource name="editor_selectall">Vel alt</resource>
<resource name="editor_senttoprinter">Utskrifta vart sent til "{0}".</resource>
<resource name="editor_shadow">Skuggeeffekt</resource>
<resource name="editor_shadow">Skuggeeffekt (/)</resource>
<resource name="editor_image_shadow">Skuggeeffekt</resource>
<resource name="editor_storedtoclipboard">Bildet er sendt til utklyppstavla.</resource>
<resource name="editor_thickness">Linebreidde</resource>

View file

@ -78,7 +78,7 @@ Będziemy wdzięczni, jeśli najpierw sprawdzisz, czy takie zdarzenie nie zosta
<resource name="editor_arrowheads_none">Żaden</resource>
<resource name="editor_arrowheads_start">Początkowy</resource>
<resource name="editor_autocrop">Przytnij automatycznie</resource>
<resource name="editor_backcolor">Kolor wypełnienia</resource>
<resource name="editor_backcolor">Kolor wypełnienia (0-9)</resource>
<resource name="editor_blur_radius">Promień rozmycia</resource>
<resource name="editor_bold">Pogrubienie</resource>
<resource name="editor_border">Obramowanie</resource>
@ -115,7 +115,7 @@ Będziemy wdzięczni, jeśli najpierw sprawdzisz, czy takie zdarzenie nie zosta
<resource name="editor_email">Wyślij e-mailem</resource>
<resource name="editor_file">Plik</resource>
<resource name="editor_fontsize">Rozmiar</resource>
<resource name="editor_forecolor">Kolor linii</resource>
<resource name="editor_forecolor">Kolor linii (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Skala szarości</resource>
<resource name="editor_highlight_area">Uwydatnienie obszaru</resource>
<resource name="editor_highlight_grayscale">Wyszarzenie</resource>
@ -151,7 +151,7 @@ Będziemy wdzięczni, jeśli najpierw sprawdzisz, czy takie zdarzenie nie zosta
<resource name="editor_saveas">Zapisz jako...</resource>
<resource name="editor_selectall">Zaznacz wszystko</resource>
<resource name="editor_senttoprinter">Zadanie drukowania zostało wysłane do '{0}'.</resource>
<resource name="editor_shadow">Cień</resource>
<resource name="editor_shadow">Cień (/)</resource>
<resource name="editor_storedtoclipboard">Obraz został zapisany w schowku.</resource>
<resource name="editor_thickness">Grubość linii</resource>
<resource name="editor_title">Greenshot - edytor obrazów</resource>

View file

@ -75,7 +75,7 @@
<resource name="editor_arrowheads_end">No fim</resource>
<resource name="editor_arrowheads_none">Nenhuma</resource>
<resource name="editor_arrowheads_start">No início</resource>
<resource name="editor_backcolor">Cor de preenchimento</resource>
<resource name="editor_backcolor">Cor de preenchimento (0-9)</resource>
<resource name="editor_blur_radius">Raio de desfoque</resource>
<resource name="editor_bold">Negrito</resource>
<resource name="editor_brightness">Brilho</resource>
@ -105,7 +105,7 @@
<resource name="editor_email">Enviar por e-mail</resource>
<resource name="editor_file">Arquivo</resource>
<resource name="editor_fontsize">Tamanho</resource>
<resource name="editor_forecolor">Cor da linha</resource>
<resource name="editor_forecolor">Cor da linha (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_highlight_area">Destacar área</resource>
<resource name="editor_highlight_grayscale">Escalas de cinza</resource>
<resource name="editor_highlight_magnify">Ampliar</resource>
@ -130,7 +130,7 @@
<resource name="editor_saveas">Salvar como...</resource>
<resource name="editor_selectall">Selecionar tudo</resource>
<resource name="editor_senttoprinter">A impressão foi enviada para '{0}'.</resource>
<resource name="editor_shadow">Sombra</resource>
<resource name="editor_shadow">Sombra (/)</resource>
<resource name="editor_image_shadow">Sombra</resource>
<resource name="editor_storedtoclipboard">Imagem enviada para a área de transferência.</resource>
<resource name="editor_thickness">Espessura da linha</resource>

View file

@ -77,7 +77,7 @@ Também apreciaremos muito se puder verificar se não existe já um relatório d
<resource name="editor_arrowheads_none">Nenhuma</resource>
<resource name="editor_arrowheads_start">No início</resource>
<resource name="editor_autocrop">Recortar auto</resource>
<resource name="editor_backcolor">Cor de preenchimento</resource>
<resource name="editor_backcolor">Cor de preenchimento (0-9)</resource>
<resource name="editor_blur_radius">Raio de desfoque</resource>
<resource name="editor_bold">Negrito</resource>
<resource name="editor_border">Borda</resource>
@ -110,7 +110,7 @@ Também apreciaremos muito se puder verificar se não existe já um relatório d
<resource name="editor_email">Enviar por e-mail</resource>
<resource name="editor_file">Ficheiro</resource>
<resource name="editor_fontsize">Tamanho</resource>
<resource name="editor_forecolor">Cor da linha</resource>
<resource name="editor_forecolor">Cor da linha (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Escala cinza</resource>
<resource name="editor_highlight_area">Realçar área</resource>
<resource name="editor_highlight_grayscale">Escala de cinza</resource>
@ -146,7 +146,7 @@ Também apreciaremos muito se puder verificar se não existe já um relatório d
<resource name="editor_saveas">Guardar como...</resource>
<resource name="editor_selectall">Seleccionar tudo</resource>
<resource name="editor_senttoprinter">A impressão foi enviada para '{0}'.</resource>
<resource name="editor_shadow">Sombra projectada</resource>
<resource name="editor_shadow">Sombra projectada (/)</resource>
<resource name="editor_storedtoclipboard">Imagem enviada para a área de transferência.</resource>
<resource name="editor_thickness">Espessura da linha</resource>
<resource name="editor_title">Editor de Imagens do Greenshot</resource>

View file

@ -4,6 +4,7 @@
<!--
Note to translator: uncomment entry "about_translation" to have
your efforts honored in the "About Greenshot" dialog
TODO: remove newlines as in other files -> this leads to problems in multiline texts (or try xml:space=preserve)
-->
<resource name="about_translation">
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
</resource>
<resource name="editor_forecolor">
Culoare linie
Culoare linie (NumPad0-9, Shift+0-9)
</resource>
<resource name="editor_backcolor">
Culoare umplere
Culoare umplere (0-9)
</resource>
<resource name="editor_thickness">
Grosime linie
@ -456,7 +457,7 @@ timpul curent, ex. 11_58_32 (plus extensia fișierului definită în setări)
Factor de mărire
</resource>
<resource name="editor_shadow">
Umbră
Umbră (/)
</resource>
<resource name="editor_image_shadow">
Umbră

View file

@ -78,7 +78,7 @@ Greenshot поставляется БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ.
<resource name="editor_arrowheads_none">Ничего</resource>
<resource name="editor_arrowheads_start">Начальная точка</resource>
<resource name="editor_autocrop">Автообрезка</resource>
<resource name="editor_backcolor">Цвет заливки</resource>
<resource name="editor_backcolor">Цвет заливки (0-9)</resource>
<resource name="editor_blur_radius">Радиус размывания</resource>
<resource name="editor_bold">Жирный</resource>
<resource name="editor_border">Рамка</resource>
@ -115,7 +115,7 @@ Greenshot поставляется БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ.
<resource name="editor_email">E-Mail</resource>
<resource name="editor_file">Файл</resource>
<resource name="editor_fontsize">Размер</resource>
<resource name="editor_forecolor">Цвет линии</resource>
<resource name="editor_forecolor">Цвет линии (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Оттенки серого</resource>
<resource name="editor_highlight_area">Выделить область</resource>
<resource name="editor_highlight_grayscale">Оттенки серого</resource>
@ -151,7 +151,7 @@ Greenshot поставляется БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ.
<resource name="editor_saveas">Сохранить как...</resource>
<resource name="editor_selectall">Выбрать все</resource>
<resource name="editor_senttoprinter">Задание печати было направлено на '{0}'.</resource>
<resource name="editor_shadow">Тень</resource>
<resource name="editor_shadow">Тень (/)</resource>
<resource name="editor_storedtoclipboard">Изображения, хранящиеся в буфере обмена.</resource>
<resource name="editor_thickness">Толщина линии</resource>
<resource name="editor_title">Графический редактор Greenshot</resource>

View file

@ -65,7 +65,7 @@ Tiež by sme velmi ocenili, keby ste najskôr skontrolovali, či už neexistuje
<resource name="editor_arrowheads_none">Žiaden</resource>
<resource name="editor_arrowheads_start">Začiatočný bod</resource>
<resource name="editor_autocrop">Automatické orezanie</resource>
<resource name="editor_backcolor">Farba výplne</resource>
<resource name="editor_backcolor">Farba výplne (0-9)</resource>
<resource name="editor_blur_radius">Rádius rozmazania</resource>
<resource name="editor_bold">Tučné</resource>
<resource name="editor_border">Orámovať</resource>
@ -98,7 +98,7 @@ Tiež by sme velmi ocenili, keby ste najskôr skontrolovali, či už neexistuje
<resource name="editor_email">E-Mail</resource>
<resource name="editor_file">Súbor</resource>
<resource name="editor_fontsize">Veľkosť</resource>
<resource name="editor_forecolor">Farba čiary</resource>
<resource name="editor_forecolor">Farba čiary (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Stupne šedej</resource>
<resource name="editor_highlight_area">Zvýrazniť oblasť</resource>
<resource name="editor_highlight_grayscale">V odtieňoch šedej</resource>
@ -132,7 +132,7 @@ Tiež by sme velmi ocenili, keby ste najskôr skontrolovali, či už neexistuje
<resource name="editor_saveas">Uložiť ako...</resource>
<resource name="editor_selectall">Vybrať všetko</resource>
<resource name="editor_senttoprinter">Tlačová úloha odoslaná do '{0}'.</resource>
<resource name="editor_shadow">Tieň</resource>
<resource name="editor_shadow">Tieň (/)</resource>
<resource name="editor_image_shadow">Tieň</resource>
<resource name="editor_storedtoclipboard">Obrázek je uložený do schránky.</resource>
<resource name="editor_thickness">Hrúbka čiary</resource>

View file

@ -63,7 +63,7 @@ Pred objavo preverite tudi ali je napaka že prijavlja s strani kakšnega drugeg
<resource name="editor_arrowheads_none">Nič</resource>
<resource name="editor_arrowheads_start">Začetek</resource>
<resource name="editor_autocrop">Samodejno obreži</resource>
<resource name="editor_backcolor">Zapolni z barvo</resource>
<resource name="editor_backcolor">Zapolni z barvo (0-9)</resource>
<resource name="editor_blur_radius">Blur radija</resource>
<resource name="editor_bold">Krepko</resource>
<resource name="editor_border">Obroba</resource>
@ -96,7 +96,7 @@ Pred objavo preverite tudi ali je napaka že prijavlja s strani kakšnega drugeg
<resource name="editor_email">E-pošta</resource>
<resource name="editor_file">Datoteka</resource>
<resource name="editor_fontsize">Velikost</resource>
<resource name="editor_forecolor">Barva črte</resource>
<resource name="editor_forecolor">Barva črte (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Črno-belo</resource>
<resource name="editor_highlight_area">Označi področje</resource>
<resource name="editor_highlight_grayscale">Označi črno-belo</resource>
@ -130,7 +130,7 @@ Pred objavo preverite tudi ali je napaka že prijavlja s strani kakšnega drugeg
<resource name="editor_saveas">Shrani kot...</resource>
<resource name="editor_selectall">Izberi vse</resource>
<resource name="editor_senttoprinter">Tiskanje na '{0}'.</resource>
<resource name="editor_shadow">Spusti senco</resource>
<resource name="editor_shadow">Spusti senco (/)</resource>
<resource name="editor_storedtoclipboard">Slika shranjena na odložišče.</resource>
<resource name="editor_thickness">Debelina črte</resource>
<resource name="editor_title">Greenshot urejevalnik izrezkov</resource>

View file

@ -63,7 +63,7 @@
<resource name="editor_arrowheads_none">Ништа</resource>
<resource name="editor_arrowheads_start">Почетна тачка</resource>
<resource name="editor_autocrop">Аутоматско опсецање</resource>
<resource name="editor_backcolor">Пуне боје</resource>
<resource name="editor_backcolor">Пуне боје (0-9)</resource>
<resource name="editor_blur_radius">Замагљење радијуса</resource>
<resource name="editor_bold">Масно</resource>
<resource name="editor_border">Ивице</resource>
@ -96,7 +96,7 @@
<resource name="editor_email">Е-пошта</resource>
<resource name="editor_file">Датотека</resource>
<resource name="editor_fontsize">Величина</resource>
<resource name="editor_forecolor">Боја линије</resource>
<resource name="editor_forecolor">Боја линије (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Сиве нијансе</resource>
<resource name="editor_highlight_area">Истакни област</resource>
<resource name="editor_highlight_grayscale">Сиве нијансе</resource>
@ -130,7 +130,7 @@
<resource name="editor_saveas">Сачувај као…</resource>
<resource name="editor_selectall">Изабери све</resource>
<resource name="editor_senttoprinter">Задужење за штампање је послато у „{0}“.</resource>
<resource name="editor_shadow">Исцртај сенке</resource>
<resource name="editor_shadow">Исцртај сенке (/)</resource>
<resource name="editor_storedtoclipboard">Слика је смештена у оставу.</resource>
<resource name="editor_thickness">Дебљина линије</resource>
<resource name="editor_title">Уређивач слика</resource>

View file

@ -78,7 +78,7 @@ Innan du skickar uppskattar vi verkligen om du kontrollerar om felet redan blivi
<resource name="editor_arrowheads_none">Inget</resource>
<resource name="editor_arrowheads_start">Startpunkt</resource>
<resource name="editor_autocrop">Autobeskärning</resource>
<resource name="editor_backcolor">Fyllnadsfärg</resource>
<resource name="editor_backcolor">Fyllnadsfärg (0-9)</resource>
<resource name="editor_blur_radius">Oskärpans styrka</resource>
<resource name="editor_bold">Fetstil</resource>
<resource name="editor_border">Kantlinje</resource>
@ -111,7 +111,7 @@ Innan du skickar uppskattar vi verkligen om du kontrollerar om felet redan blivi
<resource name="editor_email">E-post</resource>
<resource name="editor_file">Arkiv</resource>
<resource name="editor_fontsize">Storlek</resource>
<resource name="editor_forecolor">Linjefärg</resource>
<resource name="editor_forecolor">Linjefärg (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Gråskala</resource>
<resource name="editor_highlight_area">Framhäv område</resource>
<resource name="editor_highlight_grayscale">Gråskala</resource>
@ -147,7 +147,7 @@ Innan du skickar uppskattar vi verkligen om du kontrollerar om felet redan blivi
<resource name="editor_saveas">Spara som...</resource>
<resource name="editor_selectall">Markera allt</resource>
<resource name="editor_senttoprinter">Utskriften skickades till '{0}'.</resource>
<resource name="editor_shadow">Skugga</resource>
<resource name="editor_shadow">Skugga (/)</resource>
<resource name="editor_storedtoclipboard">Bilden sparades i urklipp.</resource>
<resource name="editor_thickness">Linjetjocklek</resource>
<resource name="editor_title">Greenshot bildredigerare</resource>

View file

@ -63,7 +63,7 @@ Ayrıca bu hata için bir izleyici kaydının açılmış olup olmadığını da
<resource name="editor_arrowheads_none">Ok ucu olmasın</resource>
<resource name="editor_arrowheads_start">Başlangıçta</resource>
<resource name="editor_autocrop">Otomatik kırpma</resource>
<resource name="editor_backcolor">Art alan rengi</resource>
<resource name="editor_backcolor">Art alan rengi (0-9)</resource>
<resource name="editor_blur_radius">Bulanıklaştırma çapı</resource>
<resource name="editor_bold">Koyu</resource>
<resource name="editor_border">Kenarlar</resource>
@ -96,7 +96,7 @@ Ayrıca bu hata için bir izleyici kaydının açılmış olup olmadığını da
<resource name="editor_email">E-Posta Gönder</resource>
<resource name="editor_file">Dosya</resource>
<resource name="editor_fontsize">Boyut</resource>
<resource name="editor_forecolor">Çizgi rengi</resource>
<resource name="editor_forecolor">Çizgi rengi (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Gri Tonlamalı</resource>
<resource name="editor_highlight_area">Bölgeyi vurgula</resource>
<resource name="editor_highlight_grayscale">Gri tonlama</resource>
@ -129,7 +129,7 @@ Ayrıca bu hata için bir izleyici kaydının açılmış olup olmadığını da
<resource name="editor_saveas">Farklı kaydet...</resource>
<resource name="editor_selectall">Tümünü seç</resource>
<resource name="editor_senttoprinter">Yazdırma işi şuraya iletildi '{0}'.</resource>
<resource name="editor_shadow">Gölge</resource>
<resource name="editor_shadow">Gölge (/)</resource>
<resource name="editor_image_shadow">Gölge</resource>
<resource name="editor_storedtoclipboard">Görüntü panoya kopyalandı.</resource>
<resource name="editor_thickness">Çizgi kalınlığı</resource>

View file

@ -77,7 +77,7 @@ Greenshot постачається АБСОЛЮТНО БЕЗ ГАРАНТІЇ.
<resource name="editor_arrowheads_none">Немає</resource>
<resource name="editor_arrowheads_start">На початку</resource>
<resource name="editor_autocrop">Автоматичне обрізання</resource>
<resource name="editor_backcolor">Колір заливки</resource>
<resource name="editor_backcolor">Колір заливки (0-9)</resource>
<resource name="editor_blur_radius">Радіус розмиття</resource>
<resource name="editor_bold">Жирний</resource>
<resource name="editor_border">Межа</resource>
@ -110,7 +110,7 @@ Greenshot постачається АБСОЛЮТНО БЕЗ ГАРАНТІЇ.
<resource name="editor_email">Ел. пошта</resource>
<resource name="editor_file">Файл</resource>
<resource name="editor_fontsize">Розмір</resource>
<resource name="editor_forecolor">Колір лінії</resource>
<resource name="editor_forecolor">Колір лінії (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">Відтінки сірого</resource>
<resource name="editor_highlight_area">Підсвічення області</resource>
<resource name="editor_highlight_grayscale">Відтінки сірого</resource>
@ -146,7 +146,7 @@ Greenshot постачається АБСОЛЮТНО БЕЗ ГАРАНТІЇ.
<resource name="editor_saveas">Зберегти як...</resource>
<resource name="editor_selectall">Вибрати все</resource>
<resource name="editor_senttoprinter">Завдання друку надіслано на „{0}“.</resource>
<resource name="editor_shadow">Тінь</resource>
<resource name="editor_shadow">Тінь (/)</resource>
<resource name="editor_storedtoclipboard">Зображення надіслано в буфер обміну.</resource>
<resource name="editor_thickness">Товщина лінії</resource>
<resource name="editor_title">Редактор зображень Greenshot</resource>

View file

@ -44,7 +44,7 @@
<resource name="editor_arrowheads_end">Điểm cuối</resource>
<resource name="editor_arrowheads_none">không</resource>
<resource name="editor_arrowheads_start">Điểm đầu</resource>
<resource name="editor_backcolor">Tô đè</resource>
<resource name="editor_backcolor">Tô đè (0-9)</resource>
<resource name="editor_blur_radius">Bán kính blur</resource>
<resource name="editor_bold">Chữ đậm</resource>
<resource name="editor_brightness">Độ sáng</resource>
@ -74,7 +74,7 @@
<resource name="editor_email">Email</resource>
<resource name="editor_file">Tệp</resource>
<resource name="editor_fontsize">Cỡ</resource>
<resource name="editor_forecolor">Màu dòng kẻ</resource>
<resource name="editor_forecolor">Màu dòng kẻ (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_highlight_area">Tô sáng vùng</resource>
<resource name="editor_highlight_grayscale">tô xám</resource>
<resource name="editor_highlight_magnify">phóng to</resource>
@ -99,7 +99,7 @@
<resource name="editor_saveas">Lưu thành tệp...</resource>
<resource name="editor_selectall">Chọn tất cả</resource>
<resource name="editor_senttoprinter">Đã gửi yêu cầu in'{0}'.</resource>
<resource name="editor_shadow">Đổ bóng</resource>
<resource name="editor_shadow">Đổ bóng (/)</resource>
<resource name="editor_image_shadow">Đổ bóng</resource>
<resource name="editor_storedtoclipboard">Đã chép ảnh vào clipboard.</resource>
<resource name="editor_thickness">Độ dày của đường kẻ</resource>

View file

@ -69,7 +69,7 @@
<resource name="editor_arrowheads_none">不显示箭头</resource>
<resource name="editor_arrowheads_start">箭头在起点</resource>
<resource name="editor_autocrop">自动裁剪</resource>
<resource name="editor_backcolor">填充颜色</resource>
<resource name="editor_backcolor">填充颜色 (0-9)</resource>
<resource name="editor_blur_radius">模糊半径</resource>
<resource name="editor_bold">粗体</resource>
<resource name="editor_border">边框</resource>
@ -106,7 +106,7 @@
<resource name="editor_email">编辑E-Mail</resource>
<resource name="editor_file">文件</resource>
<resource name="editor_fontsize">字体大小</resource>
<resource name="editor_forecolor">线条颜色</resource>
<resource name="editor_forecolor">线条颜色 (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">灰度</resource>
<resource name="editor_highlight_area">高亮区域</resource>
<resource name="editor_highlight_grayscale">灰阶</resource>
@ -142,7 +142,7 @@
<resource name="editor_resize_percent">百分比</resource>
<resource name="editor_selectall">全选</resource>
<resource name="editor_senttoprinter">已使用 '{0}' 进行打印。</resource>
<resource name="editor_shadow">阴影</resource>
<resource name="editor_shadow">阴影 (/)</resource>
<resource name="editor_storedtoclipboard">图片已保存到剪贴板。</resource>
<resource name="editor_thickness">线条粗细</resource>
<resource name="editor_title">Greenshot 图片编辑器</resource>

View file

@ -77,7 +77,7 @@ Greenshot 不對這個程式做任何擔保。 這個程式是自由軟體,您
<resource name="editor_arrowheads_none"></resource>
<resource name="editor_arrowheads_start">起點</resource>
<resource name="editor_autocrop">自動裁剪</resource>
<resource name="editor_backcolor">填色</resource>
<resource name="editor_backcolor">填色 (0-9)</resource>
<resource name="editor_blur_radius">模糊半徑</resource>
<resource name="editor_bold">粗體</resource>
<resource name="editor_border">框線</resource>
@ -114,7 +114,7 @@ Greenshot 不對這個程式做任何擔保。 這個程式是自由軟體,您
<resource name="editor_email">電子郵件</resource>
<resource name="editor_file">檔案</resource>
<resource name="editor_fontsize">大小</resource>
<resource name="editor_forecolor">直線色彩</resource>
<resource name="editor_forecolor">直線色彩 (NumPad0-9, Shift+0-9)</resource>
<resource name="editor_grayscale">灰階</resource>
<resource name="editor_highlight_area">標示區域</resource>
<resource name="editor_highlight_grayscale">灰階</resource>
@ -150,7 +150,7 @@ Greenshot 不對這個程式做任何擔保。 這個程式是自由軟體,您
<resource name="editor_saveas">另存新檔...</resource>
<resource name="editor_selectall">全選</resource>
<resource name="editor_senttoprinter">列印工作已傳送到「{0}」。</resource>
<resource name="editor_shadow">陰影</resource>
<resource name="editor_shadow">陰影 (/)</resource>
<resource name="editor_storedtoclipboard">圖片已儲存到剪貼簿。</resource>
<resource name="editor_thickness">直線粗細</resource>
<resource name="editor_title">Greenshot 圖片編輯器</resource>