Browse Source

Before changing eng translation

master
preyearegmi 6 years ago
parent
commit
22ae74407d
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. BIN
      .idea/caches/gradle_models.ser
  3. 3
      app/build.gradle
  4. 4
      app/src/main/java/com/gmeremit/online/gmeremittance_native/homeV2/view/HomeActivityV2.java
  5. 14
      app/src/main/java/com/gmeremit/online/gmeremittance_native/recipientV2/view/recipientlisting/RecipientListingV2Activity.java
  6. 2
      app/src/main/res/values-ne/strings.xml
  7. 2
      app/src/main/res/values/strings.xml

BIN
.idea/caches/build_file_checksums.ser

BIN
.idea/caches/gradle_models.ser

3
app/build.gradle

@ -93,7 +93,8 @@ android {
manifestPlaceholders.fileProvider = "com.gmeremit.online.gmeremittance_native.uat.fileprovider"
applicationIdSuffix ".uat"
signingConfig signingConfigs.debug
buildConfigField 'String', 'BASE_URL', '"http://gmeuat.gmeremit.com:5012/api/"'
// buildConfigField 'String', 'BASE_URL', '"http://gmeuat.gmeremit.com:5012/api/"'
buildConfigField 'String', 'BASE_URL', '"http://gmeuat.gmeremit.com:5029/api/"'
buildConfigField 'String', 'BASE_URL_SOCIAL', '"http://10.1.1.171:8080/v1/"'
debuggable true
minifyEnabled false

4
app/src/main/java/com/gmeremit/online/gmeremittance_native/homeV2/view/HomeActivityV2.java

@ -404,12 +404,12 @@ public class HomeActivityV2 extends BaseActivity implements HomeParentViewContra
if(action) {
withdrawView.setVisibility(View.VISIBLE);
manageAccountDivider.setVisibility(View.VISIBLE);
manageAccountViewGroup.setVisibility(View.VISIBLE);
// manageAccountViewGroup.setVisibility(View.VISIBLE);
}
else {
withdrawView.setVisibility(View.INVISIBLE);
manageAccountDivider.setVisibility(View.GONE);
manageAccountViewGroup.setVisibility(View.GONE);
// manageAccountViewGroup.setVisibility(View.GONE);
}
}

14
app/src/main/java/com/gmeremit/online/gmeremittance_native/recipientV2/view/recipientlisting/RecipientListingV2Activity.java

@ -166,9 +166,19 @@ public class RecipientListingV2Activity extends BaseActivity implements Recipien
@Override
public void onRecipientSelected(RecipientInfoModel recipientInfoModel) {
this.recipientListingV2PresenterInterface.saveSelectedRecipientInfomation(recipientInfoModel);
//Proceed to send money
this.recipientListingV2PresenterInterface.saveSelectedRecipientInfomation(recipientInfoModel);
this.recipientListingV2PresenterInterface.getAllAutoDebitAccounts();
// this.recipientListingV2PresenterInterface.getAllAutoDebitAccounts();
//TODO payment through wallet only
AutoDebitAccount selectedAccount=new AutoDebitAccount();
selectedAccount.setType("Wallet");
selectedAccount.setKftcAccountId("");
SendMoneyRequiredData sendMoneyRequiredData=recipientListingV2PresenterInterface.getSendMoneyRequiredData(selectedAccount);
Intent intent = new Intent(RecipientListingV2Activity.this, SendMoneyV2Activity.class);
intent.putExtra(RecipientAddV2Activity.RECIPIENT_INFO_BUNDLE_KEY, sendMoneyRequiredData);
startActivity(intent);
}

2
app/src/main/res/values-ne/strings.xml

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="ExtraTranslation">
<resources xmlns:tools="http://schemas.android.com/tools" >
<string name="login_text">लग इन </string>
<string name="new_user_text">नयाँ युजर </string>
<string name="hassle_free_transfer_text">बिना झनझट आफ्नो मान्छेलाई पैसा पठाउनुहोस </string>

2
app/src/main/res/values/strings.xml

@ -357,6 +357,8 @@
<string name="success_text">Success</string>
<string name="out_text">OUT</string>
<string name="help_you_text">We are there to help you \n(Available time 10:00AM - 12:00AM)</string>
<string name="state_text">State/Province</string>
<string name="district_text">District</string>

Loading…
Cancel
Save