Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2009 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7   
      8           http://www.apache.org/licenses/LICENSE-2.0
      9   
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
     18     <string name="app_name">Certificate Installer</string>
     19 
     20     <!-- Title of the file picker screen -->
     21     <string name="pick_file_title">Pick a certificate</string>
     22 
     23     <!-- Title of dialog to enter password for pkcs12 -->
     24     <string name="pkcs12_password_dialog_title">Extract certificate</string>
     25     <!-- message in progress bar when waiting for extracting certs from a pkcs12 package -->
     26     <string name="extracting_pkcs12">Extracting...</string>
     27     <!-- Title of dialog to enter password for pkcs12 file -->
     28     <string name="pkcs12_file_password_dialog_title">Extract from %s</string>
     29     <!-- Title of dialog to name a credential -->
     30     <string name="name_credential_dialog_title">Name the certificate</string>
     31     <!-- Description for the credential name input box -->
     32     <string name="credential_name">Certificate name:</string>
     33     <!-- Title of the credential info -->
     34     <!-- Description for the credential password input box -->
     35     <string name="credential_password">Enter the password to extract the certificates.</string>
     36     <string name="credential_info">The package contains:</string>
     37     <string name="p12_description">Certificates in PKCS12 keystore.</string>
     38 
     39     <!-- Item found in the PKCS12 keystore being investigated [CHAR LIMIT=NONE] -->
     40     <string name="one_userkey">one user key</string>
     41     <!-- Item found in the PKCS12 keystore being investigated [CHAR LIMIT=NONE] -->
     42     <string name="one_usercrt">one user certificate</string>
     43     <!-- Item found in the PKCS12 keystore being investigated [CHAR LIMIT=NONE] -->
     44     <string name="one_cacrt">one CA certificate</string>
     45     <!-- Item found in the PKCS12 keystore being investigated [CHAR LIMIT=NONE]-->
     46     <string name="n_cacrts">%d CA certificates</string>
     47 
     48     <string name="password_error">Please enter the correct password.</string>
     49     <string name="password_empty_error">Please enter the password.</string>
     50     <string name="name_empty_error">Please enter a name.</string>
     51     <string name="name_char_error">Please enter a name that contains only letters and numbers.</string>
     52     <string name="storage_error">Unable to save the certificate. Click OK to retry.</string>
     53     <string name="unable_to_save_cert">Unable to save the certificate. The credential storage is not enabled or properly initialized.</string>
     54     <string name="cert_not_saved">The certificate is not installed.</string>
     55     <string name="no_cert_to_saved">No certificate to install.</string>
     56     <string name="invalid_cert">The certificate is invalid.</string>
     57 
     58     <!-- toast message -->
     59     <string name="cert_is_added"><xliff:g id="credential">%s</xliff:g> is installed.</string>
     60     <!-- toast message -->
     61     <string name="cert_too_large_error">Installation failed. Certificate size is too large.</string>
     62     <!-- toast message -->
     63     <string name="cert_missing_error">Installation failed. Cannot locate the certificate file.</string>
     64     <!-- toast message -->
     65     <string name="cert_read_error">Installation failed. Cannot read the certificate file.</string>
     66 
     67     <!-- Shown when the certificate file can't be found.  [CHAR LIMIT=NONE] -->
     68     <string name="no_cert_file_found" product="nosdcard">No certificate file found in USB storage.</string>
     69     <string name="no_cert_file_found" product="default">No certificate file found in the SD card.</string>
     70     <!-- Shown when USB storage can't be found to look for a certificate.  [CHAR LIMIT=30] -->
     71     <string name="sdcard_not_present" product="nosdcard">USB storage not available.</string>
     72     <string name="sdcard_not_present" product="default">SD card is not present.</string>
     73 </resources>
     74