[453] | 1 | {Portable Network Graphics Delphi Language Info (24 July 2002)}
|
---|
| 2 |
|
---|
| 3 | {Feel free to change the text bellow to adapt to your language}
|
---|
| 4 | {Also if you have a translation to other languages and want to}
|
---|
| 5 | {share it, send me: gubadaud@terra.com.br }
|
---|
| 6 | unit pnglang;
|
---|
| 7 |
|
---|
| 8 | interface
|
---|
| 9 |
|
---|
| 10 | {$DEFINE English}
|
---|
| 11 | {.$DEFINE Portuguese}
|
---|
| 12 | {.$DEFINE German}
|
---|
| 13 | {.$DEFINE French}
|
---|
| 14 | {.$DEFINE Slovenian}
|
---|
| 15 |
|
---|
| 16 | {Language strings for english}
|
---|
| 17 | resourcestring
|
---|
| 18 | {$IFDEF English}
|
---|
| 19 | EPngInvalidCRCText = 'This "Portable Network Graphics" image is not valid ' +
|
---|
| 20 | 'because it contains invalid pieces of data (crc error)';
|
---|
| 21 | EPNGInvalidIHDRText = 'The "Portable Network Graphics" image could not be ' +
|
---|
| 22 | 'loaded because one of its main piece of data (ihdr) might be corrupted';
|
---|
| 23 | EPNGMissingMultipleIDATText = 'This "Portable Network Graphics" image is ' +
|
---|
| 24 | 'invalid because it has missing image parts.';
|
---|
| 25 | EPNGZLIBErrorText = 'Could not decompress the image because it contains ' +
|
---|
| 26 | 'invalid compressed data.'#13#10 + ' Description: ';
|
---|
| 27 | EPNGInvalidPaletteText = 'The "Portable Network Graphics" image contains ' +
|
---|
| 28 | 'an invalid palette.';
|
---|
| 29 | EPNGInvalidFileHeaderText = 'The file being readed is not a valid '+
|
---|
| 30 | '"Portable Network Graphics" image because it contains an invalid header.' +
|
---|
| 31 | ' This file may be corruped, try obtaining it again.';
|
---|
| 32 | EPNGIHDRNotFirstText = 'This "Portable Network Graphics" image is not ' +
|
---|
| 33 | 'supported or it might be invalid.'#13#10 + '(IHDR chunk is not the first)';
|
---|
| 34 | EPNGNotExistsText = 'The png file could not be loaded because it does not ' +
|
---|
| 35 | 'exists.';
|
---|
| 36 | EPNGSizeExceedsText = 'This "Portable Network Graphics" image is not ' +
|
---|
| 37 | 'supported because either it''s width or height exceeds the maximum ' +
|
---|
| 38 | 'size, which is 65535 pixels length.';
|
---|
| 39 | EPNGUnknownPalEntryText = 'There is no such palette entry.';
|
---|
| 40 | EPNGMissingPaletteText = 'This "Portable Network Graphics" could not be ' +
|
---|
| 41 | 'loaded because it uses a color table which is missing.';
|
---|
| 42 | EPNGUnknownCriticalChunkText = 'This "Portable Network Graphics" image ' +
|
---|
| 43 | 'contains an unknown critical part which could not be decoded.';
|
---|
| 44 | EPNGUnknownCompressionText = 'This "Portable Network Graphics" image is ' +
|
---|
| 45 | 'encoded with an unknown compression scheme which could not be decoded.';
|
---|
| 46 | EPNGUnknownInterlaceText = 'This "Portable Network Graphics" image uses ' +
|
---|
| 47 | 'an unknown interlace scheme which could not be decoded.';
|
---|
| 48 | EPNGCannotAssignChunkText = 'The chunks must be compatible to be assigned.';
|
---|
| 49 | EPNGUnexpectedEndText = 'This "Portable Network Graphics" image is invalid ' +
|
---|
| 50 | 'because the decoder found an unexpected end of the file.';
|
---|
| 51 | EPNGNoImageDataText = 'This "Portable Network Graphics" image contains no ' +
|
---|
| 52 | 'data.';
|
---|
| 53 | EPNGCannotChangeSizeText = 'The "Portable Network Graphics" image can not ' +
|
---|
| 54 | 'be resize by changing width and height properties. Try assigning the ' +
|
---|
| 55 | 'image from a bitmap.';
|
---|
| 56 | EPNGCannotAddChunkText = 'The program tried to add a existent critical ' +
|
---|
| 57 | 'chunk to the current image which is not allowed.';
|
---|
| 58 | EPNGCannotAddInvalidImageText = 'It''s not allowed to add a new chunk ' +
|
---|
| 59 | 'because the current image is invalid.';
|
---|
| 60 | EPNGCouldNotLoadResourceText = 'The png image could not be loaded from the ' +
|
---|
| 61 | 'resource ID.';
|
---|
| 62 | EPNGOutMemoryText = 'Some operation could not be performed because the ' +
|
---|
| 63 | 'system is out of resources. Close some windows and try again.';
|
---|
| 64 | EPNGCannotChangeTransparentText = 'Setting bit transparency color is not ' +
|
---|
| 65 | 'allowed for png images containing alpha value for each pixel ' +
|
---|
| 66 | '(COLOR_RGBALPHA and COLOR_GRAYSCALEALPHA)';
|
---|
| 67 | EPNGHeaderNotPresentText = 'This operation is not valid because the ' +
|
---|
| 68 | 'current image contains no valid header.';
|
---|
| 69 | {$ENDIF}
|
---|
| 70 | {$IFDEF Portuguese}
|
---|
| 71 | EPngInvalidCRCText = 'Essa imagem "Portable Network Graphics" não é válida ' +
|
---|
| 72 | 'porque contém chunks inválidos de dados (erro crc)';
|
---|
| 73 | EPNGInvalidIHDRText = 'A imagem "Portable Network Graphics" não pode ser ' +
|
---|
| 74 | 'carregada porque um dos seus chunks importantes (ihdr) pode estar '+
|
---|
| 75 | 'inválido';
|
---|
| 76 | EPNGMissingMultipleIDATText = 'Essa imagem "Portable Network Graphics" é ' +
|
---|
| 77 | 'inválida porque tem chunks de dados faltando.';
|
---|
| 78 | EPNGZLIBErrorText = 'Não foi possível descomprimir os dados da imagem ' +
|
---|
| 79 | 'porque ela contém dados inválidos.'#13#10 + ' Descrição: ';
|
---|
| 80 | EPNGInvalidPaletteText = 'A imagem "Portable Network Graphics" contém ' +
|
---|
| 81 | 'uma paleta inválida.';
|
---|
| 82 | EPNGInvalidFileHeaderText = 'O arquivo sendo lido não é uma imagem '+
|
---|
| 83 | '"Portable Network Graphics" válida porque contém um cabeçalho inválido.' +
|
---|
| 84 | ' O arquivo pode estar corrompida, tente obter ela novamente.';
|
---|
| 85 | EPNGIHDRNotFirstText = 'Essa imagem "Portable Network Graphics" não é ' +
|
---|
| 86 | 'suportada ou pode ser inválida.'#13#10 + '(O chunk IHDR não é o ' +
|
---|
| 87 | 'primeiro)';
|
---|
| 88 | EPNGNotExistsText = 'A imagem png não pode ser carregada porque ela não ' +
|
---|
| 89 | 'existe.';
|
---|
| 90 | EPNGSizeExceedsText = 'Essa imagem "Portable Network Graphics" não é ' +
|
---|
| 91 | 'suportada porque a largura ou a altura ultrapassam o tamanho máximo, ' +
|
---|
| 92 | 'que é de 65535 pixels de diâmetro.';
|
---|
| 93 | EPNGUnknownPalEntryText = 'Não existe essa entrada de paleta.';
|
---|
| 94 | EPNGMissingPaletteText = 'Essa imagem "Portable Network Graphics" não pode ' +
|
---|
| 95 | 'ser carregada porque usa uma paleta que está faltando.';
|
---|
| 96 | EPNGUnknownCriticalChunkText = 'Essa imagem "Portable Network Graphics" ' +
|
---|
| 97 | 'contém um chunk crítico desconheçido que não pode ser decodificado.';
|
---|
| 98 | EPNGUnknownCompressionText = 'Essa imagem "Portable Network Graphics" está ' +
|
---|
| 99 | 'codificada com um esquema de compressão desconheçido e não pode ser ' +
|
---|
| 100 | 'decodificada.';
|
---|
| 101 | EPNGUnknownInterlaceText = 'Essa imagem "Portable Network Graphics" usa um ' +
|
---|
| 102 | 'um esquema de interlace que não pode ser decodificado.';
|
---|
| 103 | EPNGCannotAssignChunkText = 'Os chunk devem ser compatíveis para serem ' +
|
---|
| 104 | 'copiados.';
|
---|
| 105 | EPNGUnexpectedEndText = 'Essa imagem "Portable Network Graphics" é ' +
|
---|
| 106 | 'inválida porque o decodificador encontrou um fim inesperado.';
|
---|
| 107 | EPNGNoImageDataText = 'Essa imagem "Portable Network Graphics" não contém ' +
|
---|
| 108 | 'dados.';
|
---|
| 109 | EPNGCannotChangeSizeText = 'A imagem "Portable Network Graphics" não pode ' +
|
---|
| 110 | 'ser redimensionada mudando as propriedades width e height. Tente ' +
|
---|
| 111 | 'copiar a imagem de um bitmap usando a função assign.';
|
---|
| 112 | EPNGCannotAddChunkText = 'O programa tentou adicionar um chunk crítico ' +
|
---|
| 113 | 'já existente para a imagem atual, oque não é permitido.';
|
---|
| 114 | EPNGCannotAddInvalidImageText = 'Não é permitido adicionar um chunk novo ' +
|
---|
| 115 | 'porque a imagem atual é inválida.';
|
---|
| 116 | EPNGCouldNotLoadResourceText = 'A imagem png não pode ser carregada apartir' +
|
---|
| 117 | ' do resource.';
|
---|
| 118 | EPNGOutMemoryText = 'Uma operação não pode ser completada porque o sistema ' +
|
---|
| 119 | 'está sem recursos. Fecha algumas janelas e tente novamente.';
|
---|
| 120 | EPNGCannotChangeTransparentText = 'Definir transparência booleana não é ' +
|
---|
| 121 | 'permitido para imagens png contendo informação alpha para cada pixel ' +
|
---|
| 122 | '(COLOR_RGBALPHA e COLOR_GRAYSCALEALPHA)';
|
---|
| 123 | EPNGHeaderNotPresentText = 'Essa operação não é válida porque a ' +
|
---|
| 124 | 'imagem atual não contém um cabeçalho válido.';
|
---|
| 125 | {$ENDIF}
|
---|
| 126 | {Language strings for German}
|
---|
| 127 | {$IFDEF German}
|
---|
| 128 | EPngInvalidCRCText = 'Dieses "Portable Network Graphics" Bild ist ' +
|
---|
| 129 | 'ungültig, weil Teile der Daten fehlerhaft sind (CRC-Fehler)';
|
---|
| 130 | EPNGInvalidIHDRText = 'Dieses "Portable Network Graphics" Bild konnte ' +
|
---|
| 131 | 'nicht geladen werden, weil wahrscheinlich einer der Hauptdatenbreiche ' +
|
---|
| 132 | '(IHDR) beschädigt ist';
|
---|
| 133 | EPNGMissingMultipleIDATText = 'Dieses "Portable Network Graphics" Bild ' +
|
---|
| 134 | 'ist ungültig, weil Grafikdaten fehlen.';
|
---|
| 135 | EPNGZLIBErrorText = 'Die Grafik konnte nicht entpackt werden, weil Teile der ' +
|
---|
| 136 | 'komprimierten Daten fehlerhaft sind.'#13#10 + ' Beschreibung: ';
|
---|
| 137 | EPNGInvalidPaletteText = 'Das "Portable Network Graphics" Bild enthält ' +
|
---|
| 138 | 'eine ungültige Palette.';
|
---|
| 139 | EPNGInvalidFileHeaderText = 'Die Datei, die gelesen wird, ist kein ' +
|
---|
| 140 | 'gültiges "Portable Network Graphics" Bild, da es keinen gültigen ' +
|
---|
| 141 | 'Header enthält. Die Datei könnte beschädigt sein, versuchen Sie, ' +
|
---|
| 142 | 'eine neue Kopie zu bekommen.';
|
---|
| 143 | EPNGIHDRNotFirstText = 'Dieses "Portable Network Graphics" Bild wird ' +
|
---|
| 144 | 'nicht unterstützt oder ist ungültig.'#13#10 +
|
---|
| 145 | '(Der IHDR-Abschnitt ist nicht der erste Abschnitt in der Datei).';
|
---|
| 146 | EPNGNotExistsText = 'Die PNG Datei konnte nicht geladen werden, da sie ' +
|
---|
| 147 | 'nicht existiert.';
|
---|
| 148 | EPNGSizeExceedsText = 'Dieses "Portable Network Graphics" Bild wird nicht ' +
|
---|
| 149 | 'unterstützt, weil entweder seine Breite oder seine Höhe das Maximum von ' +
|
---|
| 150 | '65535 Pixeln überschreitet.';
|
---|
| 151 | EPNGUnknownPalEntryText = 'Es gibt keinen solchen Palettenwert.';
|
---|
| 152 | EPNGMissingPaletteText = 'Dieses "Portable Network Graphics" Bild konnte ' +
|
---|
| 153 | 'nicht geladen werden, weil die benötigte Farbtabelle fehlt.';
|
---|
| 154 | EPNGUnknownCriticalChunkText = 'Dieses "Portable Network Graphics" Bild ' +
|
---|
| 155 | 'enhält einen unbekannten aber notwendigen Teil, welcher nicht entschlüsselt ' +
|
---|
| 156 | 'werden kann.';
|
---|
| 157 | EPNGUnknownCompressionText = 'Dieses "Portable Network Graphics" Bild ' +
|
---|
| 158 | 'wurde mit einem unbekannten Komprimierungsalgorithmus kodiert, welcher ' +
|
---|
| 159 | 'nicht entschlüsselt werden kann.';
|
---|
| 160 | EPNGUnknownInterlaceText = 'Dieses "Portable Network Graphics" Bild ' +
|
---|
| 161 | 'benutzt ein unbekanntes Interlace-Schema, welches nicht entschlüsselt ' +
|
---|
| 162 | 'werden kann.';
|
---|
| 163 | EPNGCannotAssignChunkText = 'Die Abschnitte müssen kompatibel sein, damit ' +
|
---|
| 164 | 'sie zugewiesen werden können.';
|
---|
| 165 | EPNGUnexpectedEndText = 'Dieses "Portable Network Graphics" Bild ist ' +
|
---|
| 166 | 'ungültig: Der Dekoder ist unerwartete auf das Ende der Datei gestoßen.';
|
---|
| 167 | EPNGNoImageDataText = 'Dieses "Portable Network Graphics" Bild enthält ' +
|
---|
| 168 | 'keine Daten.';
|
---|
| 169 | EPNGCannotChangeSizeText = 'Das "Portable Network Graphics" Bild kann ' +
|
---|
| 170 | 'nicht durch Ändern der Eigenschaften Width und Height in seinen ' +
|
---|
| 171 | 'Abmessungen geändert werden. Versuchen Sie das Bild von einer Bitmap ' +
|
---|
| 172 | 'aus zuzuweisen.';
|
---|
| 173 | EPNGCannotAddChunkText = 'Das Programm versucht einen existierenden und ' +
|
---|
| 174 | 'notwendigen Abschnitt zum aktuellen Bild hinzuzufügen. Dies ist nicht ' +
|
---|
| 175 | 'zulässig.';
|
---|
| 176 | EPNGCannotAddInvalidImageText = 'Es ist nicht zulässig, einem ungültigen ' +
|
---|
| 177 | 'Bild einen neuen Abschnitt hinzuzufügen.';
|
---|
| 178 | EPNGCouldNotLoadResourceText = 'Das PNG Bild konnte nicht aus den ' +
|
---|
| 179 | 'Resourcendaten geladen werden.';
|
---|
| 180 | EPNGOutMemoryText = 'Es stehen nicht genügend Resourcen im System zur ' +
|
---|
| 181 | 'Verfügung, um die Operation auszuführen. Schließen Sie einige Fenster '+
|
---|
| 182 | 'und versuchen Sie es erneut.';
|
---|
| 183 | EPNGCannotChangeTransparentText = 'Das Setzen der Bit-' +
|
---|
| 184 | 'Transparent-Farbe ist für PNG-Images die Alpha-Werte für jedes ' +
|
---|
| 185 | 'Pixel enthalten (COLOR_RGBALPHA und COLOR_GRAYSCALEALPHA) nicht ' +
|
---|
| 186 | 'zulässig';
|
---|
| 187 | EPNGHeaderNotPresentText = 'Die Datei, die gelesen wird, ist kein ' +
|
---|
| 188 | 'gültiges "Portable Network Graphics" Bild, da es keinen gültigen ' +
|
---|
| 189 | 'Header enthält.';
|
---|
| 190 | {$ENDIF}
|
---|
| 191 | {Language strings for French}
|
---|
| 192 | {$IFDEF French}
|
---|
| 193 | EPngInvalidCRCText = 'Cette image "Portable Network Graphics" n''est pas valide ' +
|
---|
| 194 | 'car elle contient des données invalides (erreur crc)';
|
---|
| 195 | EPNGInvalidIHDRText = 'Cette image "Portable Network Graphics" n''a pu être ' +
|
---|
| 196 | 'chargée car l''une de ses principale donnée (ihdr) doit être corrompue';
|
---|
| 197 | EPNGMissingMultipleIDATText = 'Cette image "Portable Network Graphics" est ' +
|
---|
| 198 | 'invalide car elle contient des parties d''image manquantes.';
|
---|
| 199 | EPNGZLIBErrorText = 'Impossible de décompresser l''image car elle contient ' +
|
---|
| 200 | 'des données compressées invalides.'#13#10 + ' Description: ';
|
---|
| 201 | EPNGInvalidPaletteText = 'L''image "Portable Network Graphics" contient ' +
|
---|
| 202 | 'une palette invalide.';
|
---|
| 203 | EPNGInvalidFileHeaderText = 'Le fichier actuellement lu est une image '+
|
---|
| 204 | '"Portable Network Graphics" invalide car elle contient un en-tête invalide.' +
|
---|
| 205 | ' Ce fichier doit être corrompu, essayer de l''obtenir à nouveau.';
|
---|
| 206 | EPNGIHDRNotFirstText = 'Cette image "Portable Network Graphics" n''est pas ' +
|
---|
| 207 | 'supportée ou doit être invalide.'#13#10 + '(la partie IHDR n''est pas la première)';
|
---|
| 208 | EPNGNotExistsText = 'Le fichier png n''a pu être chargé car il n''éxiste pas.';
|
---|
| 209 | EPNGSizeExceedsText = 'Cette image "Portable Network Graphics" n''est pas supportée ' +
|
---|
| 210 | 'car sa longueur ou sa largeur excède la taille maximale, qui est de 65535 pixels.';
|
---|
| 211 | EPNGUnknownPalEntryText = 'Il n''y a aucune entrée pour cette palette.';
|
---|
| 212 | EPNGMissingPaletteText = 'Cette image "Portable Network Graphics" n''a pu être ' +
|
---|
| 213 | 'chargée car elle utilise une table de couleur manquante.';
|
---|
| 214 | EPNGUnknownCriticalChunkText = 'Cette image "Portable Network Graphics" ' +
|
---|
| 215 | 'contient une partie critique inconnue qui n'' pu être décodée.';
|
---|
| 216 | EPNGUnknownCompressionText = 'Cette image "Portable Network Graphics" est ' +
|
---|
| 217 | 'encodée à l''aide d''un schémas de compression inconnu qui ne peut être décodé.';
|
---|
| 218 | EPNGUnknownInterlaceText = 'Cette image "Portable Network Graphics" utilise ' +
|
---|
| 219 | 'un schémas d''entrelacement inconnu qui ne peut être décodé.';
|
---|
| 220 | EPNGCannotAssignChunkText = 'Ce morceau doit être compatible pour être assigné.';
|
---|
| 221 | EPNGUnexpectedEndText = 'Cette image "Portable Network Graphics" est invalide ' +
|
---|
| 222 | 'car le decodeur est arrivé à une fin de fichier non attendue.';
|
---|
| 223 | EPNGNoImageDataText = 'Cette image "Portable Network Graphics" ne contient pas de ' +
|
---|
| 224 | 'données.';
|
---|
| 225 | EPNGCannotChangeSizeText = 'Cette image "Portable Network Graphics" ne peut pas ' +
|
---|
| 226 | 'être retaillée en changeant ses propriétés width et height. Essayer d''assigner l''image depuis ' +
|
---|
| 227 | 'un bitmap.';
|
---|
| 228 | EPNGCannotAddChunkText = 'Le programme a essayé d''ajouter un morceau critique existant ' +
|
---|
| 229 | 'à l''image actuelle, ce qui n''est pas autorisé.';
|
---|
| 230 | EPNGCannotAddInvalidImageText = 'Il n''est pas permis d''ajouter un nouveau morceau ' +
|
---|
| 231 | 'car l''image actuelle est invalide.';
|
---|
| 232 | EPNGCouldNotLoadResourceText = 'L''image png n''a pu être chargée depuis ' +
|
---|
| 233 | 'l''ID ressource.';
|
---|
| 234 | EPNGOutMemoryText = 'Certaines opérations n''ont pu être effectuée car le ' +
|
---|
| 235 | 'système n''a plus de ressources. Fermez quelques fenêtres et essayez à nouveau.';
|
---|
| 236 | EPNGCannotChangeTransparentText = 'Définir le bit de transparence n''est pas ' +
|
---|
| 237 | 'permis pour des images png qui contiennent une valeur alpha pour chaque pixel ' +
|
---|
| 238 | '(COLOR_RGBALPHA et COLOR_GRAYSCALEALPHA)';
|
---|
| 239 | EPNGHeaderNotPresentText = 'Cette opération n''est pas valide car l''image ' +
|
---|
| 240 | 'actuelle ne contient pas de header valide.';
|
---|
| 241 | EPNGAlphaNotSupportedText = 'Le type de couleur de l''image "Portable Network Graphics" actuelle ' +
|
---|
| 242 | 'contient déjà des informations alpha ou il ne peut être converti.';
|
---|
| 243 | {$ENDIF}
|
---|
| 244 | {Language strings for slovenian}
|
---|
| 245 | {$IFDEF Slovenian}
|
---|
| 246 | EPngInvalidCRCText = 'Ta "Portable Network Graphics" slika je neveljavna, ' +
|
---|
| 247 | 'ker vsebuje neveljavne dele podatkov (CRC napaka).';
|
---|
| 248 | EPNGInvalidIHDRText = 'Slike "Portable Network Graphics" ni bilo mono ' +
|
---|
| 249 | 'naloiti, ker je eden od glavnih delov podatkov (IHDR) verjetno pokvarjen.';
|
---|
| 250 | EPNGMissingMultipleIDATText = 'Ta "Portable Network Graphics" slika je ' +
|
---|
| 251 | 'naveljavna, ker manjkajo deli slike.';
|
---|
| 252 | EPNGZLIBErrorText = 'Ne morem raztegniti slike, ker vsebuje ' +
|
---|
| 253 | 'neveljavne stisnjene podatke.'#13#10 + ' Opis: ';
|
---|
| 254 | EPNGInvalidPaletteText = 'Slika "Portable Network Graphics" vsebuje ' +
|
---|
| 255 | 'neveljavno barvno paleto.';
|
---|
| 256 | EPNGInvalidFileHeaderText = 'Datoteka za branje ni veljavna '+
|
---|
| 257 | '"Portable Network Graphics" slika, ker vsebuje neveljavno glavo.' +
|
---|
| 258 | ' Datoteka je verjetno pokvarjena, poskusite jo ponovno naloiti.';
|
---|
| 259 | EPNGIHDRNotFirstText = 'Ta "Portable Network Graphics" slika ni ' +
|
---|
| 260 | 'podprta ali pa je neveljavna.'#13#10 + '(IHDR del datoteke ni prvi).';
|
---|
| 261 | EPNGNotExistsText = 'Ne morem naloiti png datoteke, ker ta ne ' +
|
---|
| 262 | 'obstaja.';
|
---|
| 263 | EPNGSizeExceedsText = 'Ta "Portable Network Graphics" slika ni ' +
|
---|
| 264 | 'podprta, ker ali njena irina ali viina presega najvecjo mono vrednost ' +
|
---|
| 265 | '65535 pik.';
|
---|
| 266 | EPNGUnknownPalEntryText = 'Slika nima vneene take barvne palete.';
|
---|
| 267 | EPNGMissingPaletteText = 'Te "Portable Network Graphics" ne morem ' +
|
---|
| 268 | 'naloiti, ker uporablja manjkajoco barvno paleto.';
|
---|
| 269 | EPNGUnknownCriticalChunkText = 'Ta "Portable Network Graphics" slika ' +
|
---|
| 270 | 'vsebuje neznan kriticni del podatkov, ki ga ne morem prebrati.';
|
---|
| 271 | EPNGUnknownCompressionText = 'Ta "Portable Network Graphics" slika je ' +
|
---|
| 272 | 'kodirana z neznano kompresijsko shemo, ki je ne morem prebrati.';
|
---|
| 273 | EPNGUnknownInterlaceText = 'Ta "Portable Network Graphics" slika uporablja ' +
|
---|
| 274 | 'neznano shemo za preliv, ki je ne morem prebrati.';
|
---|
| 275 | EPNGCannotAssignChunkText = Kocki morajo biti med seboj kompatibilni za prireditev vrednosti.';
|
---|
| 276 | EPNGUnexpectedEndText = 'Ta "Portable Network Graphics" slika je neveljavna, ' +
|
---|
| 277 | 'ker je bralnik priel do nepricakovanega konca datoteke.';
|
---|
| 278 | EPNGNoImageDataText = 'Ta "Portable Network Graphics" ne vsebuje nobenih ' +
|
---|
| 279 | 'podatkov.';
|
---|
| 280 | EPNGCannotChangeSizeText = 'Te "Portable Network Graphics" sliki ne morem ' +
|
---|
| 281 | 'spremeniti velikosti s spremembo lastnosti viine in irine. Poskusite ' +
|
---|
| 282 | 'sliko prirediti v bitno sliko.';
|
---|
| 283 | EPNGCannotAddChunkText = 'Program je poskusil dodati obstojeci kriticni ' +
|
---|
| 284 | 'kos podatkov k trenutni sliki, kar ni dovoljeno.';
|
---|
| 285 | EPNGCannotAddInvalidImageText = 'Ni dovoljeno dodati nov kos podatkov, ' +
|
---|
| 286 | 'ker trenutna slika ni veljavna.';
|
---|
| 287 | EPNGCouldNotLoadResourceText = 'Ne morem naloiti png slike iz ' +
|
---|
| 288 | 'skladica.';
|
---|
| 289 | EPNGOutMemoryText = 'Ne morem izvesti operacije, ker je ' +
|
---|
| 290 | 'sistem ostal brez resorjev. Zaprite nekaj oken in poskusite znova.';
|
---|
| 291 | EPNGCannotChangeTransparentText = 'Ni dovoljeno nastaviti prosojnosti posamezne barve ' +
|
---|
| 292 | 'za png slike, ki vsebujejo alfa prosojno vrednost za vsako piko ' +
|
---|
| 293 | '(COLOR_RGBALPHA and COLOR_GRAYSCALEALPHA)';
|
---|
| 294 | EPNGHeaderNotPresentText = 'Ta operacija ni veljavna, ker ' +
|
---|
| 295 | 'izbrana slika ne vsebuje veljavne glave.';
|
---|
| 296 | {$ENDIF}
|
---|
| 297 |
|
---|
| 298 |
|
---|
| 299 | implementation
|
---|
| 300 |
|
---|
| 301 | end.
|
---|