-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
888fce6
commit 4314dee
Showing
2 changed files
with
45 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"name": "localize-app-name", | ||
"version": "1.0.18", | ||
"description": "Allows localization of iOS/Android App Name", | ||
"cordova": { | ||
"id": "localize-app-name", | ||
"platforms": [ | ||
"ios", | ||
"android" | ||
] | ||
}, | ||
"keywords": [ | ||
"ecosystem:cordova", | ||
"cordova-android", | ||
"cordova-ios", | ||
"localize", | ||
"app name" | ||
], | ||
"author": "Mooee Company Ltd." | ||
} | ||
{ | ||
"name": "localize-app-name", | ||
"version": "1.0.19", | ||
"description": "Allows localization of iOS/Android App Name", | ||
"cordova": { | ||
"id": "localize-app-name", | ||
"platforms": [ | ||
"ios", | ||
"android" | ||
] | ||
}, | ||
"keywords": [ | ||
"ecosystem:cordova", | ||
"cordova-android", | ||
"cordova-ios", | ||
"localize", | ||
"app name" | ||
], | ||
"author": "Mooee Company Ltd." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" | ||
id="localize-app-name" | ||
version="1.0.18"> | ||
|
||
<name>localize-app-name</name> | ||
<description>Allows localization of iOS/Android App Name</description> | ||
<engines> | ||
<engine name="cordova" version=">=2.4.0" /> | ||
</engines> | ||
<keywords>ecosystem:cordova,cordova-android,cordova-ios,localize,app name</keywords> | ||
|
||
<!-- android --> | ||
<platform name="android"> | ||
<resource-file src="locales/android/values-zh-rCN/strings.xml" target="res/values-zh-rCN/strings.xml" /> | ||
</platform> | ||
|
||
<!-- ios --> | ||
<platform name="ios"> | ||
<resource-file src="locales/ios/zh-hans.lproj" /> | ||
<resource-file src="locales/ios/zh-hant.lproj" /> | ||
</platform> | ||
</plugin> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" | ||
id="localize-app-name" | ||
version="1.0.19"> | ||
|
||
<name>localize-app-name</name> | ||
<description>Allows localization of iOS/Android App Name</description> | ||
<engines> | ||
<engine name="cordova" version=">=2.4.0" /> | ||
</engines> | ||
<keywords>ecosystem:cordova,cordova-android,cordova-ios,localize,app name</keywords> | ||
|
||
<!-- android --> | ||
<platform name="android"> | ||
<resource-file src="locales/android/values-en/strings.xml" target="res/values-en/strings.xml" /> | ||
<resource-file src="locales/android/values-zh-rCN/strings.xml" target="res/values-zh-rCN/strings.xml" /> | ||
</platform> | ||
|
||
<!-- ios --> | ||
<platform name="ios"> | ||
<resource-file src="locales/ios/en.lproj" /> | ||
<resource-file src="locales/ios/zh-Hans.lproj" /> | ||
<resource-file src="locales/ios/zh-Hant.lproj" /> | ||
</platform> | ||
</plugin> |