Showing
6 changed files
with
38 additions
and
6 deletions
| ... | @@ -5,7 +5,7 @@ android.buildFeatures.buildConfig = true | ... | @@ -5,7 +5,7 @@ android.buildFeatures.buildConfig = true |
| 5 | 5 | ||
| 6 | ext { | 6 | ext { |
| 7 | PUBLISH_GROUP_ID = 'ly.warp' | 7 | PUBLISH_GROUP_ID = 'ly.warp' |
| 8 | - PUBLISH_VERSION = '4.5.5.4r49' | 8 | + PUBLISH_VERSION = '4.5.5.4p1' |
| 9 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' | 9 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' |
| 10 | } | 10 | } |
| 11 | 11 | ... | ... |
| ... | @@ -24,7 +24,8 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList | ... | @@ -24,7 +24,8 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList |
| 24 | 24 | ||
| 25 | private ImageView mIvBack; | 25 | private ImageView mIvBack; |
| 26 | private TextView mFontHeader, mTvPassInfoHeader, mTvBasketTitle, mTvBasketSubtitle, | 26 | private TextView mFontHeader, mTvPassInfoHeader, mTvBasketTitle, mTvBasketSubtitle, |
| 27 | - mTvEshopTitle, mTvEshopSubtitle, mTvAbTitle, mTvAbSubtitle, mTvPassBack; | 27 | + mTvEshopTitle, mTvEshopSubtitle, mTvAbTitle, mTvAbSubtitle, mTvPassBack, |
| 28 | + mTvBasketProductTitle; | ||
| 28 | private LinearLayout mLlPassReturn; | 29 | private LinearLayout mLlPassReturn; |
| 29 | 30 | ||
| 30 | // =========================================================== | 31 | // =========================================================== |
| ... | @@ -40,6 +41,7 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList | ... | @@ -40,6 +41,7 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList |
| 40 | mFontHeader = findViewById(R.id.textView3); | 41 | mFontHeader = findViewById(R.id.textView3); |
| 41 | mTvPassInfoHeader = findViewById(R.id.tv_pass_info_header); | 42 | mTvPassInfoHeader = findViewById(R.id.tv_pass_info_header); |
| 42 | mTvBasketTitle = findViewById(R.id.tv_pass_info_basket_title); | 43 | mTvBasketTitle = findViewById(R.id.tv_pass_info_basket_title); |
| 44 | + mTvBasketProductTitle = findViewById(R.id.tv_pass_info_basket_product_title); | ||
| 43 | mTvBasketSubtitle = findViewById(R.id.tv_pass_info_basket_subtitle); | 45 | mTvBasketSubtitle = findViewById(R.id.tv_pass_info_basket_subtitle); |
| 44 | mTvEshopTitle = findViewById(R.id.tv_pass_info_eshop_title); | 46 | mTvEshopTitle = findViewById(R.id.tv_pass_info_eshop_title); |
| 45 | mTvEshopSubtitle = findViewById(R.id.tv_pass_info_eshop_subtitle); | 47 | mTvEshopSubtitle = findViewById(R.id.tv_pass_info_eshop_subtitle); |
| ... | @@ -50,7 +52,7 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList | ... | @@ -50,7 +52,7 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList |
| 50 | 52 | ||
| 51 | WarpUtils.renderCustomFont(this, R.font.bt_cosmo_bold, mFontHeader, mTvPassInfoHeader); | 53 | WarpUtils.renderCustomFont(this, R.font.bt_cosmo_bold, mFontHeader, mTvPassInfoHeader); |
| 52 | WarpUtils.renderCustomFont(this, R.font.peridot_bold, mTvBasketTitle, mTvEshopTitle, | 54 | WarpUtils.renderCustomFont(this, R.font.peridot_bold, mTvBasketTitle, mTvEshopTitle, |
| 53 | - mTvAbTitle, mTvPassBack); | 55 | + mTvAbTitle, mTvPassBack, mTvBasketProductTitle); |
| 54 | WarpUtils.renderCustomFont(this, R.font.peridot_regular, mTvBasketSubtitle, | 56 | WarpUtils.renderCustomFont(this, R.font.peridot_regular, mTvBasketSubtitle, |
| 55 | mTvEshopSubtitle, mTvAbSubtitle); | 57 | mTvEshopSubtitle, mTvAbSubtitle); |
| 56 | 58 | ... | ... |
| ... | @@ -160,6 +160,7 @@ | ... | @@ -160,6 +160,7 @@ |
| 160 | android:letterSpacing="0.04" | 160 | android:letterSpacing="0.04" |
| 161 | android:textColor="@color/white" | 161 | android:textColor="@color/white" |
| 162 | android:textSize="16sp" | 162 | android:textSize="16sp" |
| 163 | + android:paddingHorizontal="24dp" | ||
| 163 | app:lineHeight="22dp" /> | 164 | app:lineHeight="22dp" /> |
| 164 | </LinearLayout> | 165 | </LinearLayout> |
| 165 | 166 | ... | ... |
| ... | @@ -87,6 +87,34 @@ | ... | @@ -87,6 +87,34 @@ |
| 87 | <ImageView | 87 | <ImageView |
| 88 | android:layout_width="38dp" | 88 | android:layout_width="38dp" |
| 89 | android:layout_height="38dp" | 89 | android:layout_height="38dp" |
| 90 | + android:src="@drawable/ic_pass_info_basket_product" /> | ||
| 91 | + | ||
| 92 | + <LinearLayout | ||
| 93 | + android:layout_width="match_parent" | ||
| 94 | + android:layout_height="wrap_content" | ||
| 95 | + android:orientation="vertical" | ||
| 96 | + android:paddingHorizontal="10dp"> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/tv_pass_info_basket_product_title" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="wrap_content" | ||
| 102 | + android:letterSpacing="0.028" | ||
| 103 | + android:text="@string/cos_market_basket_product_title" | ||
| 104 | + android:textColor="@color/cos_light_black" | ||
| 105 | + android:textSize="19sp" /> | ||
| 106 | + </LinearLayout> | ||
| 107 | + </LinearLayout> | ||
| 108 | + | ||
| 109 | + <LinearLayout | ||
| 110 | + android:layout_width="match_parent" | ||
| 111 | + android:layout_height="wrap_content" | ||
| 112 | + android:layout_marginTop="32dp" | ||
| 113 | + android:orientation="horizontal"> | ||
| 114 | + | ||
| 115 | + <ImageView | ||
| 116 | + android:layout_width="38dp" | ||
| 117 | + android:layout_height="38dp" | ||
| 90 | android:src="@drawable/ic_pass_info_basket" /> | 118 | android:src="@drawable/ic_pass_info_basket" /> |
| 91 | 119 | ||
| 92 | <LinearLayout | 120 | <LinearLayout | ... | ... |
| ... | @@ -184,15 +184,16 @@ | ... | @@ -184,15 +184,16 @@ |
| 184 | <string name="cos_market_Pass_info_title">Οδηγίες χρήσης</string> | 184 | <string name="cos_market_Pass_info_title">Οδηγίες χρήσης</string> |
| 185 | <string name="cos_market_pass_info_header">Πως λειτουργεί:</string> | 185 | <string name="cos_market_pass_info_header">Πως λειτουργεί:</string> |
| 186 | <string name="cos_market_basket_title">Εξαργύρωση σε φυσικά καταστήματα</string> | 186 | <string name="cos_market_basket_title">Εξαργύρωση σε φυσικά καταστήματα</string> |
| 187 | + <string name="cos_market_basket_product_title">Επιλογή προϊόντων με εκπτωτικό κουπόνι SUPERMARKET DEALS για τις αγορές σου.</string> | ||
| 187 | <string name="cos_market_basket_subtitle">Σκάναρε το barcode από το κινητό σου στο ταμείο του καταστήματος και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string> | 188 | <string name="cos_market_basket_subtitle">Σκάναρε το barcode από το κινητό σου στο ταμείο του καταστήματος και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string> |
| 188 | <string name="cos_market_eshop_title">Εξαργύρωση στο eshop</string> | 189 | <string name="cos_market_eshop_title">Εξαργύρωση στο eshop</string> |
| 189 | <string name="cos_market_eshop_subtitle">Πληκτρολόγησε τον κωδικό σου στο αντίστοιχο πεδίο κατά το checkout στο eshop και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string> | 190 | <string name="cos_market_eshop_subtitle">Πληκτρολόγησε τον κωδικό σου στο αντίστοιχο πεδίο κατά το checkout στο eshop και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string> |
| 190 | <string name="cos_market_ab_title">Ειδικά για τον ΑΒ</string> | 191 | <string name="cos_market_ab_title">Ειδικά για τον ΑΒ</string> |
| 191 | - <string name="cos_market_ab_subtitle">1. Eνεργοποίησε τον κωδικό στην κάρτα ΑΒ PLUS στο kiosk του καταστήματος ή μέσω eshop / app στην ενοτητα στην ενότητα Συνεργασίες – SUPERMARKET DEALS.\n\n2. Κάνε τις αγορές σου και κέρδισε απευθείας έκπτωση με χρήση της AB PLUS από τα διαθέσιμα κουπόνια.</string> | 192 | + <string name="cos_market_ab_subtitle">1. Eνεργοποίησε τον κωδικό στην κάρτα ΑΒ PLUS στο kiosk του καταστήματος ή μέσω eshop / app στην ενότητα Συνεργασίες – SUPERMARKET DEALS.\n\n2. Κάνε τις αγορές σου και κέρδισε απευθείας έκπτωση με χρήση της AB PLUS από τα διαθέσιμα κουπόνια.</string> |
| 192 | <string name="cos_market_pass_title">SUPERMARKET DEALS CARD</string> | 193 | <string name="cos_market_pass_title">SUPERMARKET DEALS CARD</string> |
| 193 | - <string name="cos_market_pass_subtitle">Χρησιμοποίησε τον κωδικό σου και κέρδισε έκπτωση στις αγορές σου!</string> | 194 | + <string name="cos_market_pass_subtitle">Χρησιμοποίησε το μοναδικό κωδικό σου για να κερδίσεις έκπτωση σε επιλεγμένα προϊόντα. Ανακάλυψε τα κουπόνια στο For You.</string> |
| 194 | <string name="cos_market_pass_return">Επιστροφή</string> | 195 | <string name="cos_market_pass_return">Επιστροφή</string> |
| 195 | - <string name="cos_market_pass_coupons_title">Έχεις κουπόνια συνολικής αξίας %1$s€</string> | 196 | + <string name="cos_market_pass_coupons_title">Με τα διαθέσιμα κουπόνια μπορείς να εξοικονομήσεις έως και %1$s€.</string> |
| 196 | <string name="cos_market_subtitle">Δημιούργησε το δικό σου ενιαίο κουπόνι προσφορών, και εξαργύρωσέ το στα supermarket της επιλογής σου γρήγορα και εύκολα με ένα μόνο κωδικό κουπονιού!</string> | 197 | <string name="cos_market_subtitle">Δημιούργησε το δικό σου ενιαίο κουπόνι προσφορών, και εξαργύρωσέ το στα supermarket της επιλογής σου γρήγορα και εύκολα με ένα μόνο κωδικό κουπονιού!</string> |
| 197 | <string name="cos_market_close">Τέλος</string> | 198 | <string name="cos_market_close">Τέλος</string> |
| 198 | <string name="cos_rewards_title2">COSMOTE Επιβράβευση</string> | 199 | <string name="cos_rewards_title2">COSMOTE Επιβράβευση</string> | ... | ... |
-
Please register or login to post a comment