mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-20 14:39:22 +02:00
IDEIntf/ImageListEditor: Hide unnecessary menu items when only a single resolution is available. Update German translation.
This commit is contained in:
parent
80cf03723e
commit
5ab8254f9c
@ -149,8 +149,9 @@ type
|
|||||||
protected
|
protected
|
||||||
procedure DoDestroy; override;
|
procedure DoDestroy; override;
|
||||||
procedure InternalAddImageToList(const Picture: TPicture; AddType: TAddType);
|
procedure InternalAddImageToList(const Picture: TPicture; AddType: TAddType);
|
||||||
procedure UpdateCmds;
|
procedure UpdateCmds; virtual;
|
||||||
procedure UpdatePreviewImage;
|
procedure UpdateMenus; virtual;
|
||||||
|
procedure UpdatePreviewImage; virtual;
|
||||||
public
|
public
|
||||||
procedure LoadFromImageList(AImageList: TImageList);
|
procedure LoadFromImageList(AImageList: TImageList);
|
||||||
procedure SaveToImageList;
|
procedure SaveToImageList;
|
||||||
@ -322,8 +323,8 @@ begin
|
|||||||
tbRemove.ImageIndex := IDEImages.GetImageIndex('laz_delete', 16);
|
tbRemove.ImageIndex := IDEImages.GetImageIndex('laz_delete', 16);
|
||||||
acDelete.ImageIndex := IDEImages.GetImageIndex('item_delete', 16);
|
acDelete.ImageIndex := IDEImages.GetImageIndex('item_delete', 16);
|
||||||
acClear.ImageIndex := IDEImages.GetImageIndex('menu_clean', 16);
|
acClear.ImageIndex := IDEImages.GetImageIndex('menu_clean', 16);
|
||||||
acMoveUp.ImageIndex := IDEImages.GetImageIndex('item_up', 16);
|
acMoveUp.ImageIndex := IDEImages.GetImageIndex('arrow_up', 16); //'item_up', 16);
|
||||||
acMoveDown.ImageIndex := IDEImages.GetImageIndex('item_down', 16);
|
acMoveDown.ImageIndex := IDEImages.GetImageIndex('arrow_down', 16); //'item_down', 16);
|
||||||
tbSave.ImageIndex := IDEImages.GetImageIndex('laz_save', 16);
|
tbSave.ImageIndex := IDEImages.GetImageIndex('laz_save', 16);
|
||||||
acSave.ImageIndex := IDEImages.GetImageIndex('menu_saveas', 16);
|
acSave.ImageIndex := IDEImages.GetImageIndex('menu_saveas', 16);
|
||||||
acSaveAll.ImageIndex := IDEImages.GetImageIndex('menu_save_all', 16);
|
acSaveAll.ImageIndex := IDEImages.GetImageIndex('menu_save_all', 16);
|
||||||
@ -353,6 +354,8 @@ begin
|
|||||||
OpenDialog.Title := sccsILEdtOpenDialog;
|
OpenDialog.Title := sccsILEdtOpenDialog;
|
||||||
SaveDialog.Title := sccsILEdtSaveDialog;
|
SaveDialog.Title := sccsILEdtSaveDialog;
|
||||||
IDEDialogLayoutList.ApplyLayout(Self);
|
IDEDialogLayoutList.ApplyLayout(Self);
|
||||||
|
|
||||||
|
UpdateMenus;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TImageListEditorDlg.FormResize(Sender: TObject);
|
procedure TImageListEditorDlg.FormResize(Sender: TObject);
|
||||||
@ -530,7 +533,7 @@ begin
|
|||||||
ImageList.DeleteResolution(RA[TD.SelectionRes]);
|
ImageList.DeleteResolution(RA[TD.SelectionRes]);
|
||||||
ImageListBox.Repaint;
|
ImageListBox.Repaint;
|
||||||
UpdatePreviewImage;
|
UpdatePreviewImage;
|
||||||
// UpdateImagesGroupBoxWidth;
|
UpdateMenus;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -583,6 +586,7 @@ begin
|
|||||||
RefreshItemHeight;
|
RefreshItemHeight;
|
||||||
ImageListBox.Repaint;
|
ImageListBox.Repaint;
|
||||||
// UpdateImagesGroupBoxWidth;
|
// UpdateImagesGroupBoxWidth;
|
||||||
|
UpdateMenus;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
cInputQueryEditSizePercents := perc;
|
cInputQueryEditSizePercents := perc;
|
||||||
@ -853,6 +857,25 @@ begin
|
|||||||
tbSave.Enabled := acSave.Enabled or acSaveAll.Enabled;
|
tbSave.Enabled := acSave.Enabled or acSaveAll.Enabled;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TImageListEditorDlg.UpdateMenus;
|
||||||
|
var
|
||||||
|
multipleRes: Boolean;
|
||||||
|
begin
|
||||||
|
multipleRes := ImageList.ResolutionCount > 1;
|
||||||
|
acAddMultiple.Visible := multipleRes;
|
||||||
|
acReplaceAll.Visible := multipleRes;
|
||||||
|
if multipleRes then
|
||||||
|
begin
|
||||||
|
acAddSingle.Caption := sccsILEdtAddSingleResolution;
|
||||||
|
acReplaceSingle.Caption := sccsILEdtReplaceSingleResolution;
|
||||||
|
end else
|
||||||
|
begin
|
||||||
|
acAddSingle.Caption := sccsILEdtAddImg;
|
||||||
|
acReplaceSingle.Caption := sccsILEdtReplaceImg;
|
||||||
|
end;
|
||||||
|
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TImageListEditorDlg.UpdatePreviewImage;
|
procedure TImageListEditorDlg.UpdatePreviewImage;
|
||||||
procedure DisablePreview;
|
procedure DisablePreview;
|
||||||
begin
|
begin
|
||||||
|
@ -1452,6 +1452,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Afegeix..."
|
msgstr "Afegeix..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1583,6 +1587,10 @@ msgstr ""
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1414,6 +1414,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Přidat ..."
|
msgstr "Přidat ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1555,6 +1559,10 @@ msgstr "&Nahradit"
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Nahradit všechny rozlišení ..."
|
msgstr "Nahradit všechny rozlišení ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"POT-Creation-Date: \n"
|
"POT-Creation-Date: \n"
|
||||||
"PO-Revision-Date: 2024-07-02 13:08+0200\n"
|
"PO-Revision-Date: 2024-07-03 12:28+0200\n"
|
||||||
"Last-Translator: Swen Heinig <swen@heinig.email>\n"
|
"Last-Translator: Swen Heinig <swen@heinig.email>\n"
|
||||||
"Language-Team: Deutsch <lazarus@miraclec.com>\n"
|
"Language-Team: Deutsch <lazarus@miraclec.com>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
@ -322,7 +322,7 @@ msgstr "Datenmenge erzeugen"
|
|||||||
|
|
||||||
#: objinspstrconsts.lrsdatasetactive
|
#: objinspstrconsts.lrsdatasetactive
|
||||||
msgid "Dataset is already active, close it first."
|
msgid "Dataset is already active, close it first."
|
||||||
msgstr "Datenmenge ist bereits aktive. Zuerst schließen"
|
msgstr "Datenmenge ist bereits aktive. Zuerst schließen."
|
||||||
|
|
||||||
#: objinspstrconsts.lrsloadfromfile
|
#: objinspstrconsts.lrsloadfromfile
|
||||||
msgid "Load data from file"
|
msgid "Load data from file"
|
||||||
@ -330,7 +330,7 @@ msgstr "Daten aus Datei laden"
|
|||||||
|
|
||||||
#: objinspstrconsts.lrsnodatasetsavailableforcopy
|
#: objinspstrconsts.lrsnodatasetsavailableforcopy
|
||||||
msgid "No dataset available to copy data from."
|
msgid "No dataset available to copy data from."
|
||||||
msgstr "Keine Datenmenge zum Kopieren verfügbar"
|
msgstr "Keine Datenmenge zum Kopieren verfügbar."
|
||||||
|
|
||||||
#: objinspstrconsts.lrsprovidedatafilename
|
#: objinspstrconsts.lrsprovidedatafilename
|
||||||
msgid "Select a data file to save data to"
|
msgid "Select a data file to save data to"
|
||||||
@ -1408,22 +1408,22 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Hinzufügen"
|
msgstr "Hinzufügen"
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr "Bild hinzufügen ..."
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Add image from multiple resolutions ..."
|
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr "Bild aus mehreren Auflösungen hinzufügen …"
|
msgstr "Bild in mehreren Auflösungen hinzufügen …"
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddnewresolution
|
#: objinspstrconsts.sccsiledtaddnewresolution
|
||||||
msgid "Register new resolution (image size) ..."
|
msgid "Register new resolution (image size) ..."
|
||||||
msgstr "Neue Auflösung (Bild-Größe) registrieren ..."
|
msgstr "Neue Auflösung (Bild-Größe) registrieren ..."
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddsingleresolution
|
#: objinspstrconsts.sccsiledtaddsingleresolution
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Add image(s) from single resolution..."
|
|
||||||
msgctxt "objinspstrconsts.sccsiledtaddsingleresolution"
|
msgctxt "objinspstrconsts.sccsiledtaddsingleresolution"
|
||||||
msgid "Add image(s) with single resolution..."
|
msgid "Add image(s) with single resolution..."
|
||||||
msgstr "Bild(er) aus einzelner Auflösung hinzufügen ..."
|
msgstr "Bild(er) in einzelner Auflösung hinzufügen ..."
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddsliced
|
#: objinspstrconsts.sccsiledtaddsliced
|
||||||
msgid "Add sliced ..."
|
msgid "Add sliced ..."
|
||||||
@ -1532,14 +1532,14 @@ msgid "Replace"
|
|||||||
msgstr "Ersetzen"
|
msgstr "Ersetzen"
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplaceallresolutions
|
#: objinspstrconsts.sccsiledtreplaceallresolutions
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Replace image by all resolutions ..."
|
|
||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Bild durch alle Auflösungen ersetzen …"
|
msgstr "Alle Auflösungen eines Bildes ersetzen …"
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr "Bild ersetzen ..."
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Replace image by appropriate resolution ..."
|
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr "Bild durch passende Auflösung ersetzen ..."
|
msgstr "Bild durch passende Auflösung ersetzen ..."
|
||||||
|
|
||||||
@ -1905,4 +1905,3 @@ msgstr "Tab nach links bewegen"
|
|||||||
#: objinspstrconsts.tccesmovetabright
|
#: objinspstrconsts.tccesmovetabright
|
||||||
msgid "Move tab right"
|
msgid "Move tab right"
|
||||||
msgstr "Tab nach rechts bewegen"
|
msgstr "Tab nach rechts bewegen"
|
||||||
|
|
||||||
|
@ -1415,6 +1415,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Añadir ..."
|
msgstr "Añadir ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1543,6 +1547,10 @@ msgstr "Reemplazar"
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1413,6 +1413,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "&Lisää ..."
|
msgstr "&Lisää ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1554,6 +1558,10 @@ msgstr "&Korvaa ..."
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Korvaa kaikki tarkkuudet ..."
|
msgstr "Korvaa kaikki tarkkuudet ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1410,6 +1410,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "&Ajouter..."
|
msgstr "&Ajouter..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1553,6 +1557,10 @@ msgstr "&Remplacer..."
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Remplacer toutes les résolutions..."
|
msgstr "Remplacer toutes les résolutions..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1458,6 +1458,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "הוסף ..."
|
msgstr "הוסף ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1592,6 +1596,10 @@ msgstr "החלף"
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1413,6 +1413,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Hozzá&adás ..."
|
msgstr "Hozzá&adás ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1556,6 +1560,10 @@ msgstr "Csere ..."
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Az összes felbontás cseréléje ..."
|
msgstr "Az összes felbontás cseréléje ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1456,6 +1456,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Tambah..."
|
msgstr "Tambah..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1587,6 +1591,10 @@ msgstr ""
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1416,6 +1416,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "&Aggiungi..."
|
msgstr "&Aggiungi..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1544,6 +1548,10 @@ msgstr "Sostituisci"
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1423,6 +1423,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "追加(&A) ..."
|
msgstr "追加(&A) ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1551,6 +1555,10 @@ msgstr "置換"
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1415,6 +1415,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "&Pridėti…"
|
msgstr "&Pridėti…"
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1544,6 +1548,10 @@ msgstr "Pa&keisti…"
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1448,6 +1448,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Toevoegen..."
|
msgstr "Toevoegen..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1579,6 +1583,10 @@ msgstr ""
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1408,6 +1408,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Dodaj ..."
|
msgstr "Dodaj ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1537,6 +1541,10 @@ msgstr "Z&amień..."
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1398,6 +1398,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1521,6 +1525,10 @@ msgstr ""
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1409,6 +1409,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "&Adicionar ..."
|
msgstr "&Adicionar ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1552,6 +1556,10 @@ msgstr "S&ubstituir"
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Substituir todas as resoluções ..."
|
msgstr "Substituir todas as resoluções ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1407,6 +1407,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Добавить"
|
msgstr "Добавить"
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
msgid "Add image with multiple resolutions ..."
|
msgid "Add image with multiple resolutions ..."
|
||||||
msgstr "Добавить изображение с несколькими разрешениями ..."
|
msgstr "Добавить изображение с несколькими разрешениями ..."
|
||||||
@ -1530,6 +1534,10 @@ msgstr "Заменить"
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Заменить все разрешения изображения ..."
|
msgstr "Заменить все разрешения изображения ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr "Заменить единственное разрешение изображения ..."
|
msgstr "Заменить единственное разрешение изображения ..."
|
||||||
|
@ -1423,6 +1423,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Pridať..."
|
msgstr "Pridať..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1562,6 +1566,10 @@ msgstr "Nahradiť ..."
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Nahradiť všetky rozlíšenia ..."
|
msgstr "Nahradiť všetky rozlíšenia ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1409,6 +1409,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "&Ekle ..."
|
msgstr "&Ekle ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1552,6 +1556,10 @@ msgstr "&Değiştir ..."
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Tüm çözünürlükleri değiştir ..."
|
msgstr "Tüm çözünürlükleri değiştir ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1412,6 +1412,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "&Додати ..."
|
msgstr "&Додати ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1555,6 +1559,10 @@ msgstr "За&мінити ..."
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "Замінити всі роздільності ..."
|
msgstr "Замінити всі роздільності ..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1410,6 +1410,10 @@ msgctxt "objinspstrconsts.sccsiledtadd"
|
|||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "添加...(&A)"
|
msgstr "添加...(&A)"
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtaddimg
|
||||||
|
msgid "Add image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
#: objinspstrconsts.sccsiledtaddmoreresolutions
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Add more resolutions ..."
|
#| msgid "Add more resolutions ..."
|
||||||
@ -1549,6 +1553,10 @@ msgstr "替换(&R) ..."
|
|||||||
msgid "Replace all resolutions of an image ..."
|
msgid "Replace all resolutions of an image ..."
|
||||||
msgstr "替换所有分辨率(resolution)..."
|
msgstr "替换所有分辨率(resolution)..."
|
||||||
|
|
||||||
|
#: objinspstrconsts.sccsiledtreplaceimg
|
||||||
|
msgid "Replace image ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
#: objinspstrconsts.sccsiledtreplacesingleresolution
|
||||||
msgid "Replace single resolution of an image ..."
|
msgid "Replace single resolution of an image ..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -142,10 +142,12 @@ resourcestring
|
|||||||
sccsILEdtGrpLCaption = 'Images';
|
sccsILEdtGrpLCaption = 'Images';
|
||||||
sccsILEdtGrpRCaption = 'Selected Image';
|
sccsILEdtGrpRCaption = 'Selected Image';
|
||||||
sccsILEdtAdd = 'Add';
|
sccsILEdtAdd = 'Add';
|
||||||
|
sccsILEdtAddImg = 'Add image ...';
|
||||||
sccsILEdtAddSingleResolution = 'Add image(s) with single resolution...';
|
sccsILEdtAddSingleResolution = 'Add image(s) with single resolution...';
|
||||||
sccsILEdtAddMoreResolutions = 'Add image with multiple resolutions ...';
|
sccsILEdtAddMoreResolutions = 'Add image with multiple resolutions ...';
|
||||||
sccsILEdtAddSliced = 'Add sliced ...';
|
sccsILEdtAddSliced = 'Add sliced ...';
|
||||||
sccsILEdtReplace = 'Replace';
|
sccsILEdtReplace = 'Replace';
|
||||||
|
sccsILEdtReplaceImg = 'Replace image ...';
|
||||||
sccsILEdtReplaceSingleResolution = 'Replace single resolution of an image ...';
|
sccsILEdtReplaceSingleResolution = 'Replace single resolution of an image ...';
|
||||||
sccsILEdtReplaceAllResolutions = 'Replace all resolutions of an image ...';
|
sccsILEdtReplaceAllResolutions = 'Replace all resolutions of an image ...';
|
||||||
sccsILEdtPasteFromClipboard = 'Paste image from clipboard';
|
sccsILEdtPasteFromClipboard = 'Paste image from clipboard';
|
||||||
|
Loading…
Reference in New Issue
Block a user