This commit is contained in:
haebaru 2013-05-08 06:59:24 +09:00
commit 9ac79a8b28
5 changed files with 20 additions and 5 deletions

View File

@ -116,6 +116,7 @@ missing_file_error=Manglende PDF-fil
# Nogle almindelige typer er f.eks.: "Check", "Text", "Comment" og "Note"
text_annotation_type=[{{type}} Kommentar]
request_password=PDF filen er beskyttet med et kodeord:
invalid_password=Ugyldigt kodeord.
printing_not_supported=Advarsel: Denne browser er ikke fuldt understøttet ved udskrift.
printing_not_ready=Advarsel: PDF-filen er ikke helt klar til udskrivning.

View File

@ -116,6 +116,7 @@ missing_file_error=Missing PDF file.
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
text_annotation_type=[{{type}} Annotation]
request_password=PDF is protected by a password:
invalid_password=Invalid Password.
printing_not_supported=Warning: Printing is not fully supported by this browser.
printing_not_ready=Warning: The PDF is not fully loaded for printing.

View File

@ -120,4 +120,4 @@ request_password=Plik PDF jest chroniony przez hasło:
printing_not_supported=Ostrzeżenie: Drukowanie nie jest w pełni obsługiwane przez tę przeglądarkę.
printing_not_ready=Ostrzeżenie: Plik PDF nie jest całkowicie wczytany do drukowania.
web_fonts_disabled=Web fonty są nieaktywne. Nie można korzystać z osadzonych czcionek w plikach PDF.
web_colors_disabled=Kolory WWW są nieaktywne.
document_colors_disabled=Dokumenty PDF nie mają pozwolenia na korzystanie z ich własnych kolorów: \'Pozwalaj stronom stosować inne kolory niż ustawione tutaj\' nie jest aktywne w przeglądarce.

View File

@ -110,4 +110,4 @@ request_password=PDF檔案受密碼保護
printing_not_supported=警告:這個瀏覽器不完全支援列印。
printing_not_ready=警告PDF檔案未完全加載以進行打印。
web_fonts_disabled=禁止使用網路字型無法使用嵌入PDF檔案的字型。
web_colors_disabled=網絡顏色已被停用。
document_colors_disabled=PDF文件不容許使用自己的顏色瀏覽器的 “容許頁面選擇自己的顏色“ 選項已被停用。

View File

@ -1057,9 +1057,16 @@ var PDFView = {
},
function getDocumentError(message, exception) {
if (exception && exception.name === 'PasswordException') {
if (exception.code === 'needpassword') {
if (exception.code === 'needpassword' ||
exception.code === 'incorrectpassword') {
var promptString = mozL10n.get('request_password', null,
'PDF is protected by a password:');
if (exception.code === 'incorrectpassword') {
promptString += '\n' + mozL10n.get('invalid_password', null,
'Invalid Password.');
}
password = prompt(promptString);
if (password && password.length > 0) {
return PDFView.open(url, scale, password);
@ -2261,10 +2268,16 @@ var PageView = function pageView(container, id, scale,
return;
}
if (scale && scale !== PDFView.currentScale)
if (scale && scale !== PDFView.currentScale) {
PDFView.parseScale(scale, true, true);
else if (PDFView.currentScale === UNKNOWN_SCALE)
} else if (PDFView.currentScale === UNKNOWN_SCALE) {
PDFView.parseScale(DEFAULT_SCALE, true, true);
}
if (scale === 'page-fit' && !dest[4]) {
scrollIntoView(div);
return;
}
var boundingRect = [
this.viewport.convertToViewportPoint(x, y),