Skip to content

added dutch translation - minor en tweak #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
<uses-permission android:name="android.settings.MANAGE_UNKNOWN_APP_SOURCES"/>
<uses-permission android:name="android.settings.action.MANAGE_OVERLAY_PERMISSION" />
</config-file>

<config-file target="AndroidManifest.xml" parent="/manifest/application">
Expand Down Expand Up @@ -65,6 +68,7 @@
<source-file src="res/values-pl/appupdate_strings.xml" target-dir="res/values-pl"/>
<source-file src="res/values-it/appupdate_strings.xml" target-dir="res/values-it"/>
<source-file src="res/values-ko/appupdate_strings.xml" target-dir="res/values-ko"/>
<source-file src="res/values-nl/appupdate_strings.xml" target-dir="res/values-nl"/>
<source-file src="res/layout/appupdate_progress.xml" target-dir="res/layout"/>
<source-file src="res/xml/appupdate_paths.xml" target-dir="res/xml" />

Expand Down
4 changes: 2 additions & 2 deletions res/values-en/appupdate_strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<resources>
<string name="update_latest">Now you have the latest update</string>
<string name="update_title">New update</string>
<string name="update_message">The software need to be updated!</string>
<string name="update_update_btn">Update</string>
<string name="update_message">The software needs to be updated!</string>
<string name="update_update_btn">Download Update</string>
<string name="updating">Updating</string>
<string name="update_cancel">Cancel</string>
<string name="update_bg">Update in background</string>
Expand Down
18 changes: 18 additions & 0 deletions res/values-nl/appupdate_strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="update_latest">U beschikt over de laatste versie</string>
<string name="update_title">Nieuwe versie</string>
<string name="update_message">Er is een nieuwe versie beschikbaar!</string>
<string name="update_update_btn">Update</string>
<string name="updating">Update downloaden</string>
<string name="update_cancel">Annuleer</string>
<string name="update_bg">Download in de achtergrond</string>
<string name="download_complete">Download volledig</string>
<string name="download_complete_title">Download volledig</string>
<string name="download_complete_pos_btn">Opnieuw downloaden</string>
<string name="download_complete_neu_btn">Manueel installeren</string>

<string name="update_error_title">Fout</string>
<string name="update_error_message">Het huidige netwerk is niet beschikbaar , aub controleer uw netwerk settings.</string>
<string name="update_error_yes_btn">Ok</string>
</resources>
2 changes: 1 addition & 1 deletion res/values/appupdate_strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>
<string name="update_latest">Now you have the latest update</string>
<string name="update_title">New update</string>
<string name="update_message">The software need to be updated!</string>
<string name="update_message">The software needs to be updated!</string>
<string name="update_update_btn">Update</string>
<string name="updating">Updating</string>
<string name="update_cancel">Cancel</string>
Expand Down
2 changes: 1 addition & 1 deletion src/android/UpdateManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void handleMessage(android.os.Message msg) {
callbackContext.success(Utils.makeJSON(Constants.VERSION_UPDATING, "success, version updating."));
break;
case Constants.VERSION_NEED_UPDATE:
callbackContext.success(Utils.makeJSON(Constants.VERSION_NEED_UPDATE, "success, need date."));
callbackContext.success(Utils.makeJSON(Constants.VERSION_NEED_UPDATE, "success, need update."));
break;
case Constants.VERSION_UP_TO_UPDATE:
callbackContext.success(Utils.makeJSON(Constants.VERSION_UP_TO_UPDATE, "success, up to date."));
Expand Down