Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1799 → Rev 1800

/pkg/trunk/nls_utf8/pkg_br.txt
72,7 → 72,7
#### unzip ####
 
10.0:OK
10.1:ERRO: Falha ao abrir o arquivo
?10.1:ERRO: Falha ao abrir o arquivo
10.2:ERRO: Arquivo ZIP inválido
10.3:ERRO: Arquivo já existe
10.4:ERRO: Falha na descompactação (%d)
/pkg/trunk/nls_utf8/pkg_de.txt
72,7 → 72,7
#### unzip ####
 
10.0:OK
10.1:FEHLER: Öffnen der Datei fehlgeschlagen
?10.1:FEHLER: Öffnen der Datei fehlgeschlagen
10.2:FEHLER: Ungültiges ZIP-Archiv
10.3:FEHLER: Datei existiert bereits
10.4:FEHLER: unzip-Fehler (%d)
/pkg/trunk/nls_utf8/pkg_en.txt
72,7 → 72,7
#### unzip ####
 
10.0:OK
10.1:ERROR: Failed to open the file
10.1:ERROR: File not found
10.2:ERROR: Invalid ZIP archive
10.3:ERROR: File already exists
10.4:ERROR: unzip failure (%d)
/pkg/trunk/nls_utf8/pkg_fr.txt
71,7 → 71,7
#### unzip ####
 
10.0:OK
10.1:ERREUR: Échec d'ouverture du fichier
10.1:ERREUR: Fichier non trouvé
10.2:ERREUR: Archive ZIP invalide
10.3:ERREUR: Fichier déjà existant
10.4:ERREUR: Échec de unzip (%d)
/pkg/trunk/nls_utf8/pkg_pl.txt
71,7 → 71,7
#### unzip ####
 
10.0:OK
10.1:BŁĄD: Otwarcie pliku nie powiodło się
10.1:BŁĄD: Nie znaleziono pliku
10.2:BŁĄD: Nieprawidłowe archiwum ZIP
10.3:BŁĄD: Plik już istnieje
10.4:BŁĄD: błąd unzip (%d)
/pkg/trunk/pkginst.c
125,6 → 125,12
if ((slen < 4) || (fname[slen - 4] != '.')) strcat(fname, ".SVP");
}
 
/* does the file exist? */
if (!fileexists(fname)) {
puts(svarlang_str(10, 1)); /* ERROR: File not found */
goto RAII;
}
 
/* now let's check the content of the zip file */
 
*zipfd = fopen(fname, "rb");