Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: ui/file_manager/zip_archiver/html/passphrase-dialog.html

Issue 2807063002: Replace Libarchive with MiniZip. (Closed)
Patch Set: Fix a few nits. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/file_manager/zip_archiver/html/passphrase-dialog.html
diff --git a/ui/file_manager/zip_archiver/html/passphrase-dialog.html b/ui/file_manager/zip_archiver/html/passphrase-dialog.html
index 9ff53894821e3132cd49be063e6de79c892f5db0..0b0a82cac59f72f6d3086eb396debcabf3741dbc 100644
--- a/ui/file_manager/zip_archiver/html/passphrase-dialog.html
+++ b/ui/file_manager/zip_archiver/html/passphrase-dialog.html
@@ -1,24 +1,31 @@
<link rel="import" href="../third-party/polymer.html">
-<polymer-element name="passphrase-dialog">
+<dom-module id="passphrase-dialog">
<template>
<link rel="stylesheet" href="../css/passphrase-dialog.css">
- <h3>{{ 'passphraseTitle' | i18n }}</h3>
- <paper-input-decorator label="{{ 'passphraseInputLabel' | i18n }}">
+ <!-- TODO(takise): Translation -->
+ <h3>This file is password protected</h3>
+ <paper-input-decorator>
+ <!-- TODO(takise): Translation -->
+ Password
<input is="core-input" type="password" id="input" autofocus>
</paper-input-decorator>
<div id="bar">
- <paper-checkbox id="remember"
- label="{{ 'passphraseRemember' | i18n }}"></paper-checkbox>
+ <paper-checkbox id="remember">
+ <!-- TODO(takise): Translation -->
+ Remember
+ </paper-checkbox>
<div id="buttons">
- <paper-button on-click="{{cancel}}" id="cancelButton">
- {{ 'passphraseCancel' | i18n }}
+ <paper-button on-click="cancel" id="cancelButton">
+ <!-- TODO(takise): Translation -->
+ Cancel
</paper-button>
- <paper-button on-click="{{accept}}" id="acceptButton">
- {{ 'passphraseAccept' | i18n }}
+ <paper-button on-click="accept" id="acceptButton">
+ <!-- TODO(takise): Translation -->
+ Accept
</paper-button>
</div>
</div>
</template>
<script src="../js/passphrase-dialog.js"></script>
-</polymer-element>
+</dom-module>
« no previous file with comments | « ui/file_manager/zip_archiver/cpp/volume_reader_javascript_stream.cc ('k') | ui/file_manager/zip_archiver/js/app.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698