mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 18:12:05 +08:00

License: Redistributable in unmodified form. Statement from the author on the above website: "Do with them what you want. Improve them, republish them, as long as my legacy can live on"
302 lines
18 KiB
ObjectPascal
302 lines
18 KiB
ObjectPascal
{Portable Network Graphics Delphi Language Info (24 July 2002)}
|
||
|
||
{Feel free to change the text bellow to adapt to your language}
|
||
{Also if you have a translation to other languages and want to}
|
||
{share it, send me: gubadaud@terra.com.br }
|
||
unit pnglang;
|
||
|
||
interface
|
||
|
||
{$DEFINE English}
|
||
{.$DEFINE Portuguese}
|
||
{.$DEFINE German}
|
||
{.$DEFINE French}
|
||
{.$DEFINE Slovenian}
|
||
|
||
{Language strings for english}
|
||
resourcestring
|
||
{$IFDEF English}
|
||
EPngInvalidCRCText = 'This "Portable Network Graphics" image is not valid ' +
|
||
'because it contains invalid pieces of data (crc error)';
|
||
EPNGInvalidIHDRText = 'The "Portable Network Graphics" image could not be ' +
|
||
'loaded because one of its main piece of data (ihdr) might be corrupted';
|
||
EPNGMissingMultipleIDATText = 'This "Portable Network Graphics" image is ' +
|
||
'invalid because it has missing image parts.';
|
||
EPNGZLIBErrorText = 'Could not decompress the image because it contains ' +
|
||
'invalid compressed data.'#13#10 + ' Description: ';
|
||
EPNGInvalidPaletteText = 'The "Portable Network Graphics" image contains ' +
|
||
'an invalid palette.';
|
||
EPNGInvalidFileHeaderText = 'The file being readed is not a valid '+
|
||
'"Portable Network Graphics" image because it contains an invalid header.' +
|
||
' This file may be corruped, try obtaining it again.';
|
||
EPNGIHDRNotFirstText = 'This "Portable Network Graphics" image is not ' +
|
||
'supported or it might be invalid.'#13#10 + '(IHDR chunk is not the first)';
|
||
EPNGNotExistsText = 'The png file could not be loaded because it does not ' +
|
||
'exists.';
|
||
EPNGSizeExceedsText = 'This "Portable Network Graphics" image is not ' +
|
||
'supported because either it''s width or height exceeds the maximum ' +
|
||
'size, which is 65535 pixels length.';
|
||
EPNGUnknownPalEntryText = 'There is no such palette entry.';
|
||
EPNGMissingPaletteText = 'This "Portable Network Graphics" could not be ' +
|
||
'loaded because it uses a color table which is missing.';
|
||
EPNGUnknownCriticalChunkText = 'This "Portable Network Graphics" image ' +
|
||
'contains an unknown critical part which could not be decoded.';
|
||
EPNGUnknownCompressionText = 'This "Portable Network Graphics" image is ' +
|
||
'encoded with an unknown compression scheme which could not be decoded.';
|
||
EPNGUnknownInterlaceText = 'This "Portable Network Graphics" image uses ' +
|
||
'an unknown interlace scheme which could not be decoded.';
|
||
EPNGCannotAssignChunkText = 'The chunks must be compatible to be assigned.';
|
||
EPNGUnexpectedEndText = 'This "Portable Network Graphics" image is invalid ' +
|
||
'because the decoder found an unexpected end of the file.';
|
||
EPNGNoImageDataText = 'This "Portable Network Graphics" image contains no ' +
|
||
'data.';
|
||
EPNGCannotChangeSizeText = 'The "Portable Network Graphics" image can not ' +
|
||
'be resize by changing width and height properties. Try assigning the ' +
|
||
'image from a bitmap.';
|
||
EPNGCannotAddChunkText = 'The program tried to add a existent critical ' +
|
||
'chunk to the current image which is not allowed.';
|
||
EPNGCannotAddInvalidImageText = 'It''s not allowed to add a new chunk ' +
|
||
'because the current image is invalid.';
|
||
EPNGCouldNotLoadResourceText = 'The png image could not be loaded from the ' +
|
||
'resource ID.';
|
||
EPNGOutMemoryText = 'Some operation could not be performed because the ' +
|
||
'system is out of resources. Close some windows and try again.';
|
||
EPNGCannotChangeTransparentText = 'Setting bit transparency color is not ' +
|
||
'allowed for png images containing alpha value for each pixel ' +
|
||
'(COLOR_RGBALPHA and COLOR_GRAYSCALEALPHA)';
|
||
EPNGHeaderNotPresentText = 'This operation is not valid because the ' +
|
||
'current image contains no valid header.';
|
||
{$ENDIF}
|
||
{$IFDEF Portuguese}
|
||
EPngInvalidCRCText = 'Essa imagem "Portable Network Graphics" n<>o <20> v<>lida ' +
|
||
'porque cont<6E>m chunks inv<6E>lidos de dados (erro crc)';
|
||
EPNGInvalidIHDRText = 'A imagem "Portable Network Graphics" n<>o pode ser ' +
|
||
'carregada porque um dos seus chunks importantes (ihdr) pode estar '+
|
||
'inv<6E>lido';
|
||
EPNGMissingMultipleIDATText = 'Essa imagem "Portable Network Graphics" <20> ' +
|
||
'inv<6E>lida porque tem chunks de dados faltando.';
|
||
EPNGZLIBErrorText = 'N<>o foi poss<73>vel descomprimir os dados da imagem ' +
|
||
'porque ela cont<6E>m dados inv<6E>lidos.'#13#10 + ' Descri<72><69>o: ';
|
||
EPNGInvalidPaletteText = 'A imagem "Portable Network Graphics" cont<6E>m ' +
|
||
'uma paleta inv<6E>lida.';
|
||
EPNGInvalidFileHeaderText = 'O arquivo sendo lido n<>o <20> uma imagem '+
|
||
'"Portable Network Graphics" v<>lida porque cont<6E>m um cabe<62>alho inv<6E>lido.' +
|
||
' O arquivo pode estar corrompida, tente obter ela novamente.';
|
||
EPNGIHDRNotFirstText = 'Essa imagem "Portable Network Graphics" n<>o <20> ' +
|
||
'suportada ou pode ser inv<6E>lida.'#13#10 + '(O chunk IHDR n<>o <20> o ' +
|
||
'primeiro)';
|
||
EPNGNotExistsText = 'A imagem png n<>o pode ser carregada porque ela n<>o ' +
|
||
'existe.';
|
||
EPNGSizeExceedsText = 'Essa imagem "Portable Network Graphics" n<>o <20> ' +
|
||
'suportada porque a largura ou a altura ultrapassam o tamanho m<>ximo, ' +
|
||
'que <20> de 65535 pixels de di<64>metro.';
|
||
EPNGUnknownPalEntryText = 'N<>o existe essa entrada de paleta.';
|
||
EPNGMissingPaletteText = 'Essa imagem "Portable Network Graphics" n<>o pode ' +
|
||
'ser carregada porque usa uma paleta que est<73> faltando.';
|
||
EPNGUnknownCriticalChunkText = 'Essa imagem "Portable Network Graphics" ' +
|
||
'cont<6E>m um chunk cr<63>tico desconhe<68>ido que n<>o pode ser decodificado.';
|
||
EPNGUnknownCompressionText = 'Essa imagem "Portable Network Graphics" est<73> ' +
|
||
'codificada com um esquema de compress<73>o desconhe<68>ido e n<>o pode ser ' +
|
||
'decodificada.';
|
||
EPNGUnknownInterlaceText = 'Essa imagem "Portable Network Graphics" usa um ' +
|
||
'um esquema de interlace que n<>o pode ser decodificado.';
|
||
EPNGCannotAssignChunkText = 'Os chunk devem ser compat<61>veis para serem ' +
|
||
'copiados.';
|
||
EPNGUnexpectedEndText = 'Essa imagem "Portable Network Graphics" <20> ' +
|
||
'inv<6E>lida porque o decodificador encontrou um fim inesperado.';
|
||
EPNGNoImageDataText = 'Essa imagem "Portable Network Graphics" n<>o cont<6E>m ' +
|
||
'dados.';
|
||
EPNGCannotChangeSizeText = 'A imagem "Portable Network Graphics" n<>o pode ' +
|
||
'ser redimensionada mudando as propriedades width e height. Tente ' +
|
||
'copiar a imagem de um bitmap usando a fun<75><6E>o assign.';
|
||
EPNGCannotAddChunkText = 'O programa tentou adicionar um chunk cr<63>tico ' +
|
||
'j<> existente para a imagem atual, oque n<>o <20> permitido.';
|
||
EPNGCannotAddInvalidImageText = 'N<>o <20> permitido adicionar um chunk novo ' +
|
||
'porque a imagem atual <20> inv<6E>lida.';
|
||
EPNGCouldNotLoadResourceText = 'A imagem png n<>o pode ser carregada apartir' +
|
||
' do resource.';
|
||
EPNGOutMemoryText = 'Uma opera<72><61>o n<>o pode ser completada porque o sistema ' +
|
||
'est<73> sem recursos. Fecha algumas janelas e tente novamente.';
|
||
EPNGCannotChangeTransparentText = 'Definir transpar<61>ncia booleana n<>o <20> ' +
|
||
'permitido para imagens png contendo informa<6D><61>o alpha para cada pixel ' +
|
||
'(COLOR_RGBALPHA e COLOR_GRAYSCALEALPHA)';
|
||
EPNGHeaderNotPresentText = 'Essa opera<72><61>o n<>o <20> v<>lida porque a ' +
|
||
'imagem atual n<>o cont<6E>m um cabe<62>alho v<>lido.';
|
||
{$ENDIF}
|
||
{Language strings for German}
|
||
{$IFDEF German}
|
||
EPngInvalidCRCText = 'Dieses "Portable Network Graphics" Image ist ' +
|
||
'ung<6E>ltig, weil Teile der Daten ung<6E>ltig sind (CRC-Fehler).';
|
||
EPNGInvalidIHDRText = 'Dieses "Portable Network Graphics" Image konnte ' +
|
||
'nicht geladen werden, weil eine der Hauptdaten (IHDR) besch<63>digt ' +
|
||
'sein k<>nnte.';
|
||
EPNGMissingMultipleIDATText = 'Dieses "Portable Network Graphics" Image ' +
|
||
'ist ung<6E>ltig, weil Grafikdaten fehlen.';
|
||
EPNGZLIBErrorText = 'Die Grafik konnte nicht entpackt werden, weil sie ' +
|
||
'fehlerhafte komprimierte Daten enth<74>lt.'#13#10 + ' Beschreibung: ';
|
||
EPNGInvalidPaletteText = 'Das "Portable Network Graphics" Image enth<74>lt ' +
|
||
'eine ung<6E>ltige Palette.';
|
||
EPNGInvalidFileHeaderText = 'Die Datei, die gelesen wird, ist kein ' +
|
||
'g<>ltiges "Portable Network Graphics" Image, da es keinen g<>ltigen ' +
|
||
'Header enth<74>lt. Die Datei k<>nnte besch<63>digt sein, versuchen Sie, ' +
|
||
'eine neue Kopie zu bekommen.';
|
||
EPNGIHDRNotFirstText = 'Dieses "Portable Network Graphics" Image wird ' +
|
||
'nicht unterst<73>tzt bzw. es k<>nnte ung<6E>ltig sein.'#13#10 +
|
||
'(Der IHDR-Chunk ist nicht der erste Chunk in der Datei).';
|
||
EPNGNotExistsText = 'Die PNG Datei konnte nicht geladen werden, da sie ' +
|
||
'nicht existiert.';
|
||
EPNGSizeExceedsText = 'Dieses "Portable Network Graphics" Image wird nicht ' +
|
||
'unterst<73>tzt, weil entweder seine Breite oder seine H<>he das Maximum von ' +
|
||
'65535 Pixeln <20>berschreitet.';
|
||
EPNGUnknownPalEntryText = 'Es gibt keinen solchen Palettenwert.';
|
||
EPNGMissingPaletteText = 'Dieses "Portable Network Graphics" Image konnte ' +
|
||
'nicht geladen werden, weil die ben<65>tigte Farbtabelle fehlt.';
|
||
EPNGUnknownCriticalChunkText = 'Dieses "Portable Network Graphics" Image ' +
|
||
'enh<6E>lt einen unbekannten kritischen Teil, welcher nicht entschl<68>sselt ' +
|
||
'werden kann.';
|
||
EPNGUnknownCompressionText = 'Dieses "Portable Network Graphics" Image ' +
|
||
'wurde mit einem unbekannten Komprimierungsalgorithmus kodiert, welcher ' +
|
||
'nicht entschl<68>sselt werden kann.';
|
||
EPNGUnknownInterlaceText = 'Dieses "Portable Network Graphics" Image ' +
|
||
'benutzt ein unbekanntes Interlace-Schema, welcher nicht entschl<68>sselt ' +
|
||
'werden kann.';
|
||
EPNGCannotAssignChunkText = 'Die Chunks m<>ssen kompatibel sein, um ' +
|
||
'zugewiesen werden zu k<>nnen.';
|
||
EPNGUnexpectedEndText = 'Dieses "Portable Network Graphics" Image ist ' +
|
||
'ung<6E>ltig, der Dekoder stie<69> unerwarteterweise auf das Ende der Datei.';
|
||
EPNGNoImageDataText = 'Dieses "Portable Network Graphics" Image enth<74>lt ' +
|
||
'keine Daten.';
|
||
EPNGCannotChangeSizeText = 'Das "Portable Network Graphics" Image kann ' +
|
||
'nicht durch <20>ndern der Eigenschaften Width und Height in seinen ' +
|
||
'Abmessungen ge<67>ndert werden. Versuchen Sie das Image von einer Bitmap ' +
|
||
'aus zuzuweisen.';
|
||
EPNGCannotAddChunkText = 'Das Programm versucht einen existierenden ' +
|
||
'kritischen Chunk zum aktuellen Image hinzuzuf<75>gen. Dies ist nicht ' +
|
||
'zul<75>ssig.';
|
||
EPNGCannotAddInvalidImageText = 'Es ist nicht zul<75>ssig, dem aktuellen ' +
|
||
'Image einen neuen Chunk hinzuzuf<75>gen, da es ung<6E>ltig ist.';
|
||
EPNGCouldNotLoadResourceText = 'Das PNG Image konnte nicht von den ' +
|
||
'Resourcendaten geladen werden.';
|
||
EPNGOutMemoryText = 'Es stehen nicht gen<65>gend Resourcen im System zur ' +
|
||
'Verf<72>gung, um die Operation auszuf<75>hren. Schlie<69>en Sie einige Fenster '+
|
||
'und versuchen Sie es erneut.';
|
||
EPNGCannotChangeTransparentText = 'Das Setzen der Bit-' +
|
||
'Transparent-Farbe ist fuer PNG-Images die Alpha-Werte fuer jedes ' +
|
||
'Pixel enthalten (COLOR_RGBALPHA und COLOR_GRAYSCALEALPHA) nicht ' +
|
||
'zulaessig';
|
||
EPNGHeaderNotPresentText = 'Die Datei, die gelesen wird, ist kein ' +
|
||
'g<>ltiges "Portable Network Graphics" Image, da es keinen g<>ltigen ' +
|
||
'Header enth<74>lt.';
|
||
{$ENDIF}
|
||
{Language strings for French}
|
||
{$IFDEF French}
|
||
EPngInvalidCRCText = 'Cette image "Portable Network Graphics" n''est pas valide ' +
|
||
'car elle contient des donn<6E>es invalides (erreur crc)';
|
||
EPNGInvalidIHDRText = 'Cette image "Portable Network Graphics" n''a pu <20>tre ' +
|
||
'charg<72>e car l''une de ses principale donn<6E>e (ihdr) doit <20>tre corrompue';
|
||
EPNGMissingMultipleIDATText = 'Cette image "Portable Network Graphics" est ' +
|
||
'invalide car elle contient des parties d''image manquantes.';
|
||
EPNGZLIBErrorText = 'Impossible de d<>compresser l''image car elle contient ' +
|
||
'des donn<6E>es compress<73>es invalides.'#13#10 + ' Description: ';
|
||
EPNGInvalidPaletteText = 'L''image "Portable Network Graphics" contient ' +
|
||
'une palette invalide.';
|
||
EPNGInvalidFileHeaderText = 'Le fichier actuellement lu est une image '+
|
||
'"Portable Network Graphics" invalide car elle contient un en-t<>te invalide.' +
|
||
' Ce fichier doit <20>tre corrompu, essayer de l''obtenir <20> nouveau.';
|
||
EPNGIHDRNotFirstText = 'Cette image "Portable Network Graphics" n''est pas ' +
|
||
'support<72>e ou doit <20>tre invalide.'#13#10 + '(la partie IHDR n''est pas la premi<6D>re)';
|
||
EPNGNotExistsText = 'Le fichier png n''a pu <20>tre charg<72> car il n''<27>xiste pas.';
|
||
EPNGSizeExceedsText = 'Cette image "Portable Network Graphics" n''est pas support<72>e ' +
|
||
'car sa longueur ou sa largeur exc<78>de la taille maximale, qui est de 65535 pixels.';
|
||
EPNGUnknownPalEntryText = 'Il n''y a aucune entr<74>e pour cette palette.';
|
||
EPNGMissingPaletteText = 'Cette image "Portable Network Graphics" n''a pu <20>tre ' +
|
||
'charg<72>e car elle utilise une table de couleur manquante.';
|
||
EPNGUnknownCriticalChunkText = 'Cette image "Portable Network Graphics" ' +
|
||
'contient une partie critique inconnue qui n'' pu <20>tre d<>cod<6F>e.';
|
||
EPNGUnknownCompressionText = 'Cette image "Portable Network Graphics" est ' +
|
||
'encod<6F>e <20> l''aide d''un sch<63>mas de compression inconnu qui ne peut <20>tre d<>cod<6F>.';
|
||
EPNGUnknownInterlaceText = 'Cette image "Portable Network Graphics" utilise ' +
|
||
'un sch<63>mas d''entrelacement inconnu qui ne peut <20>tre d<>cod<6F>.';
|
||
EPNGCannotAssignChunkText = 'Ce morceau doit <20>tre compatible pour <20>tre assign<67>.';
|
||
EPNGUnexpectedEndText = 'Cette image "Portable Network Graphics" est invalide ' +
|
||
'car le decodeur est arriv<69> <20> une fin de fichier non attendue.';
|
||
EPNGNoImageDataText = 'Cette image "Portable Network Graphics" ne contient pas de ' +
|
||
'donn<6E>es.';
|
||
EPNGCannotChangeSizeText = 'Cette image "Portable Network Graphics" ne peut pas ' +
|
||
'<27>tre retaill<6C>e en changeant ses propri<72>t<EFBFBD>s width et height. Essayer d''assigner l''image depuis ' +
|
||
'un bitmap.';
|
||
EPNGCannotAddChunkText = 'Le programme a essay<61> d''ajouter un morceau critique existant ' +
|
||
'<27> l''image actuelle, ce qui n''est pas autoris<69>.';
|
||
EPNGCannotAddInvalidImageText = 'Il n''est pas permis d''ajouter un nouveau morceau ' +
|
||
'car l''image actuelle est invalide.';
|
||
EPNGCouldNotLoadResourceText = 'L''image png n''a pu <20>tre charg<72>e depuis ' +
|
||
'l''ID ressource.';
|
||
EPNGOutMemoryText = 'Certaines op<6F>rations n''ont pu <20>tre effectu<74>e car le ' +
|
||
'syst<73>me n''a plus de ressources. Fermez quelques fen<65>tres et essayez <20> nouveau.';
|
||
EPNGCannotChangeTransparentText = 'D<>finir le bit de transparence n''est pas ' +
|
||
'permis pour des images png qui contiennent une valeur alpha pour chaque pixel ' +
|
||
'(COLOR_RGBALPHA et COLOR_GRAYSCALEALPHA)';
|
||
EPNGHeaderNotPresentText = 'Cette op<6F>ration n''est pas valide car l''image ' +
|
||
'actuelle ne contient pas de header valide.';
|
||
EPNGAlphaNotSupportedText = 'Le type de couleur de l''image "Portable Network Graphics" actuelle ' +
|
||
'contient d<>j<EFBFBD> des informations alpha ou il ne peut <20>tre converti.';
|
||
{$ENDIF}
|
||
{Language strings for slovenian}
|
||
{$IFDEF Slovenian}
|
||
EPngInvalidCRCText = 'Ta "Portable Network Graphics" slika je neveljavna, ' +
|
||
'ker vsebuje neveljavne dele podatkov (CRC napaka).';
|
||
EPNGInvalidIHDRText = 'Slike "Portable Network Graphics" ni bilo mo<6D>no ' +
|
||
'nalo<6C>iti, ker je eden od glavnih delov podatkov (IHDR) verjetno pokvarjen.';
|
||
EPNGMissingMultipleIDATText = 'Ta "Portable Network Graphics" slika je ' +
|
||
'naveljavna, ker manjkajo deli slike.';
|
||
EPNGZLIBErrorText = 'Ne morem raztegniti slike, ker vsebuje ' +
|
||
'neveljavne stisnjene podatke.'#13#10 + ' Opis: ';
|
||
EPNGInvalidPaletteText = 'Slika "Portable Network Graphics" vsebuje ' +
|
||
'neveljavno barvno paleto.';
|
||
EPNGInvalidFileHeaderText = 'Datoteka za branje ni veljavna '+
|
||
'"Portable Network Graphics" slika, ker vsebuje neveljavno glavo.' +
|
||
' Datoteka je verjetno pokvarjena, poskusite jo ponovno nalo<6C>iti.';
|
||
EPNGIHDRNotFirstText = 'Ta "Portable Network Graphics" slika ni ' +
|
||
'podprta ali pa je neveljavna.'#13#10 + '(IHDR del datoteke ni prvi).';
|
||
EPNGNotExistsText = 'Ne morem nalo<6C>iti png datoteke, ker ta ne ' +
|
||
'obstaja.';
|
||
EPNGSizeExceedsText = 'Ta "Portable Network Graphics" slika ni ' +
|
||
'podprta, ker ali njena <20>irina ali vi<76>ina presega najvecjo mo<6D>no vrednost ' +
|
||
'65535 pik.';
|
||
EPNGUnknownPalEntryText = 'Slika nima vne<6E>ene take barvne palete.';
|
||
EPNGMissingPaletteText = 'Te "Portable Network Graphics" ne morem ' +
|
||
'nalo<6C>iti, ker uporablja manjkajoco barvno paleto.';
|
||
EPNGUnknownCriticalChunkText = 'Ta "Portable Network Graphics" slika ' +
|
||
'vsebuje neznan kriticni del podatkov, ki ga ne morem prebrati.';
|
||
EPNGUnknownCompressionText = 'Ta "Portable Network Graphics" slika je ' +
|
||
'kodirana z neznano kompresijsko shemo, ki je ne morem prebrati.';
|
||
EPNGUnknownInterlaceText = 'Ta "Portable Network Graphics" slika uporablja ' +
|
||
'neznano shemo za preliv, ki je ne morem prebrati.';
|
||
EPNGCannotAssignChunkText = Ko<EFBFBD>cki morajo biti med seboj kompatibilni za prireditev vrednosti.';
|
||
EPNGUnexpectedEndText = 'Ta "Portable Network Graphics" slika je neveljavna, ' +
|
||
'ker je bralnik pri<72>el do nepricakovanega konca datoteke.';
|
||
EPNGNoImageDataText = 'Ta "Portable Network Graphics" ne vsebuje nobenih ' +
|
||
'podatkov.';
|
||
EPNGCannotChangeSizeText = 'Te "Portable Network Graphics" sliki ne morem ' +
|
||
'spremeniti velikosti s spremembo lastnosti vi<76>ine in <20>irine. Poskusite ' +
|
||
'sliko prirediti v bitno sliko.';
|
||
EPNGCannotAddChunkText = 'Program je poskusil dodati obstojeci kriticni ' +
|
||
'kos podatkov k trenutni sliki, kar ni dovoljeno.';
|
||
EPNGCannotAddInvalidImageText = 'Ni dovoljeno dodati nov kos podatkov, ' +
|
||
'ker trenutna slika ni veljavna.';
|
||
EPNGCouldNotLoadResourceText = 'Ne morem nalo<6C>iti png slike iz ' +
|
||
'skladi<64>ca.';
|
||
EPNGOutMemoryText = 'Ne morem izvesti operacije, ker je ' +
|
||
'sistem ostal brez resorjev. Zaprite nekaj oken in poskusite znova.';
|
||
EPNGCannotChangeTransparentText = 'Ni dovoljeno nastaviti prosojnosti posamezne barve ' +
|
||
'za png slike, ki vsebujejo alfa prosojno vrednost za vsako piko ' +
|
||
'(COLOR_RGBALPHA and COLOR_GRAYSCALEALPHA)';
|
||
EPNGHeaderNotPresentText = 'Ta operacija ni veljavna, ker ' +
|
||
'izbrana slika ne vsebuje veljavne glave.';
|
||
{$ENDIF}
|
||
|
||
|
||
implementation
|
||
|
||
end.
|