Skip to content

Commit

Permalink
Merge pull request #125 from dearmai/master
Browse files Browse the repository at this point in the history
add korean string resource.
  • Loading branch information
mjwheatley authored Oct 4, 2018
2 parents da8da13 + 600912a commit 96a3751
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function isAvailableError(message) {
| token | String | undefined | Data to be decrypted. ***Required*** for `decrypt()`. |
| disableBackup | boolean | false | Set to true to remove the "USE BACKUP" button |
| maxAttempts | number | 5 | The device max is 5 attempts. Set this parameter if you want to allow fewer than 5 attempts. |
| locale | String | "en_US" | Change the language displayed on the authentication dialog.<br/><ul><li>English: "en_US"</li><li>Italian: "it"</li><li>Spanish: "es"</li><li>Russian: "ru"</li><li>French: "fr"</li><li>Chinese (Simplified): <ul><li>"zh_CN"</li><li>"zh_SG"</li></ul></li><li>Chinese (Traditional): <ul><li>"zh"</li><li>"zh_HK"</li><li>"zh_TW"</li><li>"zh_MO"</li></ul></li><li>Norwegian: "no"</li><li>Portuguese: "pt"</li><li>Japanese: "ja"</li><li>German: "de"</li><li>Thai: "th"</li><li>Arabic: "ar"</li></ul> |
| locale | String | "en_US" | Change the language displayed on the authentication dialog.<br/><ul><li>English: "en_US"</li><li>Italian: "it"</li><li>Spanish: "es"</li><li>Russian: "ru"</li><li>French: "fr"</li><li>Chinese (Simplified): <ul><li>"zh_CN"</li><li>"zh_SG"</li></ul></li><li>Chinese (Traditional): <ul><li>"zh"</li><li>"zh_HK"</li><li>"zh_TW"</li><li>"zh_MO"</li></ul></li><li>Norwegian: "no"</li><li>Portuguese: "pt"</li><li>Japanese: "ja"</li><li>German: "de"</li><li>Thai: "th"</li><li>Arabic: "ar"</li><li>Korean: "ko", "ko-KR"</li></ul> |
| userAuthRequired | boolean | false | Require the user to authenticate with a fingerprint to authorize every use of the key. New fingerprint enrollment will invalidate key and require backup authenticate to re-enable the fingerprint authentication dialog. |
| encryptNoAuth | boolean | undefined | Bypass authentication and just encrypt input. If `true` this option will not display the authentication dialog for fingerprint or backup credentials. It will just encrypt the input and return a token. |
| dialogTitle | String | undefined | Set the title of the fingerprint authentication dialog. |
Expand Down
1 change: 1 addition & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
<resource-file src="res/android/values-de" target="res/values-de" />
<resource-file src="res/android/values-th" target="res/values-th" />
<resource-file src="res/android/values-ar" target="res/values-ar" />
<resource-file src="res/android/values-ko" target="res/values-ko" />
</platform>

</plugin>
29 changes: 29 additions & 0 deletions res/android/values-ko/fpauth-strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->
<resources>
<string name="cancel">취소</string>
<string name="use_backup">백업 사용</string>
<string name="fingerprint_auth_dialog_title">지문 인증</string>
<string name="ok">확인</string>
<string name="fingerprint_description">계속하기 위해 지문을 인식해주세요.</string>
<string name="fingerprint_hint">센서를 터치해주세요.</string>
<string name="fingerprint_not_recognized">지문이 인식되지 않았습니다. 다시 시도해주세요.</string>
<string name="fingerprint_success">지문이 인식되었습니다.</string>
<string name="new_fingerprint_enrolled_description">새 지문이 저장되었습니다. 비밀번호를 입력해주세요.</string>
<string name="secure_lock_screen_required">보안 잠금 화면이 필요합니다.</string>
<string name="fingerprint_too_many_attempts">시도가 너무 많습니다. 잠시 후 다시 시도해주세요.</string>
</resources>

0 comments on commit 96a3751

Please sign in to comment.