Skip to content

Commit 350d08b

Browse files
authored
Merge pull request #695 from rupesh-kumar-lpu/patch-2
Minor fixes to package export implementation
2 parents 9e57a33 + 59d0f8e commit 350d08b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mode/languages/mode.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ menu.android.reset_adb = Reset ADB
3232
# | File | Edit | Sketch | Android | Tools | Help |
3333
# | Help |
3434

35+
menu.file.export_signed_package = Export Signed Package
3536
menu.help.processing_for_android_site = Processing for Android Site
3637
menu.help.android_developer_site = Android Developer Site
3738

@@ -243,7 +244,7 @@ keystore_manager.country_code_label = Country code (XX):
243244
# Manifest
244245

245246
manifest.warn.cannot_handle_file_title = Error handling %s
246-
manifest.warn.cannot_handle_file_body = Errors occurred while reading or writing %s\nwhich means lots of things are likely to stop working properly.\nTo prevent losing any data, it's recommended that you use Save As”\n"to save a separate copy of your sketch, and then restart Processing.";
247+
manifest.warn.cannot_handle_file_body = Errors occurred while reading or writing %s\nwhich means lots of things are likely to stop working properly.\nTo prevent losing any data, it's recommended that you use “Save As”\n"to save a separate copy of your sketch, and then restart Processing.";
247248

248249
# ---------------------------------------
249250
# Permissions
@@ -309,4 +310,3 @@ sdk_updater.download_canceled_message = Download canceled
309310
sdk_updater.update_button_label = Update
310311
sdk_updater.cancel_button_label = Cancel
311312
sdk_updater.close_button_label = Close
312-

mode/src/processing/mode/android/AndroidEditor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public void actionPerformed(ActionEvent e) {
149149
}
150150
});
151151

152-
return buildFileMenu(new JMenuItem[] { exportBundle, exportProject});
152+
return buildFileMenu(new JMenuItem[] {exportPackage, exportBundle, exportProject});
153153
}
154154

155155

@@ -544,7 +544,7 @@ public void startExportPackage(final String keyStorePassword) {
544544
new Thread() {
545545
public void run() {
546546
startIndeterminate();
547-
statusNotice(AndroidMode.getTextString("android_editor.status.exporting_bundle"));
547+
statusNotice(AndroidMode.getTextString("android_editor.status.exporting_package"));
548548
AndroidBuild build = new AndroidBuild(sketch, androidMode, appComponent);
549549
try {
550550
File projectFolder = build.exportPackage(keyStorePassword);

0 commit comments

Comments
 (0)