usk_promotion
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".dailyentry.CompetitionPromoActivity">
|
||||
|
||||
<android.support.design.widget.AppBarLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:theme="@style/AppTheme.AppBarOverlay">
|
||||
|
||||
<android.support.v7.widget.Toolbar
|
||||
android:id="@+id/toolbar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?attr/actionBarSize"
|
||||
android:background="?attr/colorPrimary"
|
||||
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
||||
|
||||
</android.support.design.widget.AppBarLayout>
|
||||
|
||||
<include layout="@layout/content_compition_promo" />
|
||||
|
||||
<android.support.design.widget.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom|end"
|
||||
android:layout_margin="@dimen/fab_margin"
|
||||
app:srcCompat="@mipmap/save_icon" />
|
||||
|
||||
</android.support.design.widget.CoordinatorLayout>
|
||||
@@ -41,7 +41,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="28">
|
||||
android:weightSum="24">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
@@ -118,20 +118,6 @@
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/colorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="4"
|
||||
android:gravity="center"
|
||||
android:padding="5dp"
|
||||
android:text="@string/category_performance_oss"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="#000" />
|
||||
|
||||
<View
|
||||
android:layout_width="1dp"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/colorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
|
||||
@@ -0,0 +1,299 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
||||
tools:context=".dailyentry.CompetitionPromoActivity"
|
||||
tools:showIn="@layout/activity_compition_promo"
|
||||
android:orientation="vertical">
|
||||
|
||||
<android.support.v7.widget.CardView
|
||||
android:id="@+id/card_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="5dp"
|
||||
card_view:cardCornerRadius="10dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:weightSum="4">
|
||||
|
||||
<!--Additional Promo-->
|
||||
<LinearLayout
|
||||
android:visibility="gone"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@color/colorPrimaryDark"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingBottom="5dp"
|
||||
android:paddingLeft="10dp"
|
||||
android:paddingTop="5dp"
|
||||
android:text="@string/promo_compliance_additional_promo"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="@color/black" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:padding="5dp"
|
||||
android:weightSum="2"
|
||||
android:background="@color/light_orange_background">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1.5"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingLeft="5dp"
|
||||
android:text="@string/exists" />
|
||||
|
||||
<ToggleButton
|
||||
android:id="@+id/btntoggle"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:textOn="@string/yes"
|
||||
android:textOff="@string/no"
|
||||
android:background="@drawable/toggle_selector_background"
|
||||
android:layout_weight=".5" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/lin_parent_promo"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_weight=".8"
|
||||
android:paddingBottom="5dp"
|
||||
android:paddingLeft="10dp"
|
||||
android:paddingTop="5dp"
|
||||
android:text="@string/promotion_type"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="@color/black" />
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/sp_promotion_typ"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1.2" />
|
||||
</LinearLayout>
|
||||
|
||||
//SUB CATEGORY
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_weight=".8"
|
||||
android:paddingBottom="5dp"
|
||||
android:paddingLeft="10dp"
|
||||
android:paddingTop="5dp"
|
||||
android:text="@string/sub_category"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="@color/black" />
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/sp_subcategory"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1.2" />
|
||||
</LinearLayout>
|
||||
|
||||
<!--Brand Spinner-->
|
||||
<LinearLayout
|
||||
android:id="@+id/lay_competitor_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:visibility="visible"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_weight=".8"
|
||||
android:paddingBottom="5dp"
|
||||
android:paddingLeft="10dp"
|
||||
android:paddingTop="5dp"
|
||||
android:text="@string/competitor"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="@color/black" />
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/sp_brand"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1.2" />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_weight=".8"
|
||||
android:paddingLeft="10dp"
|
||||
android:text="@string/comment"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="@color/black"
|
||||
android:textAllCaps="false"/>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/et_sku_name"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="@dimen/text_size_xsmall"
|
||||
android:inputType="text"
|
||||
android:layout_weight="1.2"
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="3">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_vertical"
|
||||
android:padding="@dimen/custom_margin"
|
||||
android:text="@string/image"
|
||||
android:textStyle="bold"
|
||||
android:visibility="invisible"/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="2"
|
||||
android:visibility="visible"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="3">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="10dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/img_cam"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_weight="1"
|
||||
android:background="@mipmap/camera_orange"
|
||||
android:padding="@dimen/custom_margin"
|
||||
android:text="@string/image" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="10dp"
|
||||
android:visibility="gone"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/img_cam1"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_weight="1"
|
||||
android:background="@mipmap/camera_orange"
|
||||
android:padding="@dimen/custom_margin"
|
||||
android:text="@string/image" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="10dp"
|
||||
android:visibility="gone"
|
||||
android:layout_weight="1">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/img_cam2"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_weight="1"
|
||||
android:background="@mipmap/camera_orange"
|
||||
android:padding="@dimen/custom_margin"
|
||||
android:text="@string/image" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<android.support.design.widget.FloatingActionButton
|
||||
android:id="@+id/fab_add"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="right"
|
||||
android:layout_margin="5dp"
|
||||
app:srcCompat="@drawable/add" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
</android.support.v7.widget.CardView>
|
||||
|
||||
<android.support.v7.widget.RecyclerView
|
||||
android:id="@+id/rec_added_counterfeit_product"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
</LinearLayout>
|
||||
@@ -41,7 +41,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="28">
|
||||
android:weightSum="24">
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
@@ -118,21 +118,6 @@
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/colorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="4"
|
||||
android:gravity="center"
|
||||
android:padding="5dp"
|
||||
android:text="@string/category_performance_oss"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="#000" />
|
||||
|
||||
<View
|
||||
android:layout_width="1dp"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/colorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="28">
|
||||
android:weightSum="24">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_period"
|
||||
@@ -96,21 +96,6 @@
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/colorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_oss"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="4"
|
||||
android:gravity="center"
|
||||
android:padding="5dp"
|
||||
android:text="OSS"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="#000" />
|
||||
|
||||
<View
|
||||
android:layout_width="1dp"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/colorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_planogram"
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
xmlns:card="http://schemas.android.com/tools"
|
||||
android:orientation="vertical">
|
||||
|
||||
<android.support.v7.widget.CardView
|
||||
android:id="@+id/card_view"
|
||||
android:layout_margin="5dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
card_view:cardCornerRadius="10dp"
|
||||
card:background="@color/white"
|
||||
android:elevation="5dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:layout_margin="5dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_brand"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="2"
|
||||
android:paddingBottom="2dp"
|
||||
android:paddingRight="2dp"
|
||||
android:paddingTop="2dp"
|
||||
android:text="@string/promotion_type"
|
||||
android:textColor="#222" />
|
||||
<TextView
|
||||
android:id="@+id/tv_competitor"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="2"
|
||||
android:paddingBottom="2dp"
|
||||
android:paddingRight="2dp"
|
||||
android:paddingTop="2dp"
|
||||
android:text="@string/competitor"
|
||||
android:textColor="#222" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_sku_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="2"
|
||||
android:paddingBottom="2dp"
|
||||
android:paddingRight="2dp"
|
||||
android:paddingTop="2dp"
|
||||
android:text="@string/comment"
|
||||
android:textColor="#222" />
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</android.support.v7.widget.CardView>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
@@ -14,7 +14,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="28">
|
||||
android:weightSum="24">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_period"
|
||||
@@ -96,21 +96,6 @@
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/colorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_oss"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="4"
|
||||
android:gravity="center"
|
||||
android:padding="5dp"
|
||||
android:text="OSS"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="#000" />
|
||||
<View
|
||||
android:layout_width="1dp"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/colorPrimary" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_planogram"
|
||||
android:layout_width="0dp"
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
@@ -231,4 +231,12 @@
|
||||
<string name="check_stock"> المخزون لا يمكن ان يكون مساوي او اكثر من الكميات التي يجب توافرها من الصنف MBQ</string>
|
||||
|
||||
<string name="check_faceing">المواجهه لا يمكن ان تكون اكثر من او مساويه للكميه الواجب توافرها MBQ</string>
|
||||
|
||||
|
||||
<!--usk competition promotion-->
|
||||
<string name="promotion_type">نوع العرض الترويجى</string>
|
||||
<string name="competitor">اسم المنافس</string>
|
||||
<string name="comment">تعليق</string>
|
||||
<string name="competition_promotion">تعليق</string>
|
||||
<string name="exists">التواجد</string>
|
||||
</resources>
|
||||
|
||||
@@ -200,28 +200,22 @@
|
||||
<string name="uploadimge">تحميل صور جغرافية</string>
|
||||
<string name="data_will_be_lost">هل ترغب في الاستمرار؟ سيتم حذف البيانات الغير المحفوظة</string>
|
||||
<string name="yes">نعم</string>
|
||||
|
||||
<!--Stock Facing Planogram Tracker-->
|
||||
<string name="stock_planogram_data_uploading">تحميل بيانات البلانوجرام الخاص بالمخزون</string>
|
||||
|
||||
<string name="daily_data_menu_category_picture">صور الفئة</string>
|
||||
<string name="title_activity_category_picture">صور الفئة</string>
|
||||
|
||||
<string name="stock_planogram_data_noCamera_data">رجاء املأ بيانات عدم امكانية التصوير</string>
|
||||
<string name="stock_planogram_shelf"> الرف</string>
|
||||
<string name="stock_planogram_shelf_position"> الموقع </string>
|
||||
<string name="stock_planogram_already_exists">موجود بالفعل</string>
|
||||
<string name="stock_planogram_data_select_one_sku">رجاء اختيار صنف واحد على الأقل</string>
|
||||
<string name="stock_planogram_data_add_shelf">أضف صنف لا يمكن ترك الرف فارغا</string>
|
||||
|
||||
<string name="stock_planogram_data_add_shelf_position_already_exists">الرف/ الموقع موجود بالفعل</string>
|
||||
|
||||
<string name="stock_planogram_add_shelf">إضافة الرف</string>
|
||||
<string name="stock_planogram_add_sku">الصنف إضافة</string>
|
||||
<string name="stock_planogram_add_sku_to_shelf">إضافة منتج إلى الجرف</string>
|
||||
<string name="stock_planogram_planogram_tracker">صورة مقطعية المقتفي</string>
|
||||
<string name="stock_planogram_position_on_shelf">موقف بشأن الجرف</string>
|
||||
|
||||
<!--Change 06-03-2017-->
|
||||
<string name="title_activity_store_checkout_image"> صوره الخروج من المتجر</string>
|
||||
<string name="store_checkout">انقر فوق الصورة الامامية لمخزن الصورة</string>
|
||||
@@ -229,6 +223,11 @@
|
||||
<string name="stock_value"> -برجاء تعبئه المخزون بقيمه عدد او صفر</string>
|
||||
<string name="msl_availability_new_stock_value">أول تعبئة لقيمة المخزون</string>
|
||||
<string name="check_stock"> المخزون لا يمكن ان يكون مساوي او اكثر من الكميات التي يجب توافرها من الصنف MBQ</string>
|
||||
|
||||
<string name="check_faceing">المواجهه لا يمكن ان تكون اكثر من او مساويه للكميه الواجب توافرها MBQ</string>
|
||||
<!--usk competition promotion-->
|
||||
<string name="promotion_type">نوع العرض الترويجى</string>
|
||||
<string name="competitor">اسم المنافس</string>
|
||||
<string name="comment">تعليق</string>
|
||||
<string name="competition_promotion">تعليق</string>
|
||||
<string name="exists">التواجد</string>
|
||||
</resources>
|
||||
|
||||
@@ -231,4 +231,11 @@
|
||||
<string name="check_stock"> المخزون لا يمكن ان يكون مساوي او اكثر من الكميات التي يجب توافرها من الصنف MBQ</string>
|
||||
|
||||
<string name="check_faceing">المواجهه لا يمكن ان تكون اكثر من او مساويه للكميه الواجب توافرها MBQ</string>
|
||||
|
||||
<!--usk competition promotion-->
|
||||
<string name="promotion_type">نوع العرض الترويجى</string>
|
||||
<string name="competitor">اسم المنافس</string>
|
||||
<string name="comment">تعليق</string>
|
||||
<string name="competition_promotion">تعليق</string>
|
||||
<string name="exists">التواجد</string>
|
||||
</resources>
|
||||
|
||||
@@ -335,4 +335,11 @@
|
||||
|
||||
<string name="additional_adhoc_stores">زيارات التحصيل الغير مخطط لها</string>
|
||||
|
||||
<!--usk competition promotion-->
|
||||
<string name="promotion_type">نوع العرض الترويجى</string>
|
||||
<string name="competitor">اسم المنافس</string>
|
||||
<string name="comment">تعليق</string>
|
||||
<string name="competition_promotion">تعليق</string>
|
||||
<string name="exists">التواجد</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -317,6 +317,13 @@
|
||||
<string name="you_need_to_be_in_the_store">Giriş/Çıkış yapmak için mağazada olmalısınız</string>
|
||||
<string name="distance_from_the_store">Mağazadan uzaklık</string>
|
||||
|
||||
<!--usk competition promotion-->
|
||||
<string name="promotion_type">نوع العرض الترويجى</string>
|
||||
<string name="competitor">اسم المنافس</string>
|
||||
<string name="comment">تعليق</string>
|
||||
<string name="competition_promotion">تعليق</string>
|
||||
<string name="exists">التواجد</string>
|
||||
|
||||
</resources>
|
||||
|
||||
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
<resources>
|
||||
<string name="app_name">GSK MT Orange</string>
|
||||
<string name="main_menu_activity_name">GSK Orange Stores</string>
|
||||
|
||||
<string name="navigation_drawer_open">Open navigation drawer</string>
|
||||
<string name="navigation_drawer_close">Close navigation drawer</string>
|
||||
|
||||
<string name="action_settings">Settings</string>
|
||||
<string name="title_activity_login">Sign in</string>
|
||||
|
||||
@@ -44,27 +42,19 @@
|
||||
<string name="delete">Delete</string>
|
||||
<string name="StoreVisited"> Store Visited</string>
|
||||
<string name="GSKMT">GSK MT ORANGE STORE</string>
|
||||
|
||||
<string name="storefront">Click Store Front Image</string>
|
||||
|
||||
<string name="select_language">Please select language</string>
|
||||
<string name="title_activity_select_language">Select Language</string>
|
||||
|
||||
<string name="title_activity_store_list">Store List</string>
|
||||
|
||||
<string name="title_activity_store_geotag">Geo Tag</string>
|
||||
|
||||
|
||||
<string name="menu_daily_route_plan">Daily Route Plan</string>
|
||||
<string name="menu_daily_download">Daily Data Download</string>
|
||||
<string name="menu_upload_data">Upload Data</string>
|
||||
<string name="menu_geotag">Geo Tag</string>
|
||||
<string name="menu_export">Data Export</string>
|
||||
|
||||
<string name="menu_exit">Exit</string>
|
||||
<string name="menu_setting">Settings</string>
|
||||
<string name="menu_services">Services</string>
|
||||
|
||||
<string name="title_activity_t2_pcompliance">Visibility/T2P</string>
|
||||
|
||||
<!--Gagan start code-->
|
||||
@@ -73,7 +63,6 @@
|
||||
<string name="title_activity_daily_main_menu">Daily Data Menu</string>
|
||||
<string name="title_activity_msl__availability">SKU Availability</string>
|
||||
<string name="title_activity_stock_facing">Stock and Facing</string>
|
||||
|
||||
<string name="daily_data_menu_msl_availability">SKU Availability</string>
|
||||
<string name="daily_data_menu_stock_facing">Stock and Facing</string>
|
||||
<string name="daily_data_menu_t2p">Visibility/T2P</string>
|
||||
@@ -81,11 +70,9 @@
|
||||
<string name="daily_data_menu_promo_compliance">Promo Compliance</string>
|
||||
<string name="daily_data_menu_competition_tracking">Competition Visibility</string>
|
||||
<string name="daily_data_menu_additional_promotions">Competition Promo</string>
|
||||
|
||||
<string name="msl_availability_sku">SKU Name</string>
|
||||
<string name="msl_availability_mbq">MBQ</string>
|
||||
<string name="msl_availability_availability">Availability</string>
|
||||
|
||||
<string name="stock_facing_reference_image">Reference Image</string>
|
||||
<string name="stock_facing_sku_name">SKU Name</string>
|
||||
<string name="stock_facing_stock">Stock</string>
|
||||
@@ -97,21 +84,16 @@
|
||||
<string name="title_geo_tag_activity_upload_data">Store Uploaded</string>
|
||||
<string name="title_geo_tag_activity_geo_data">Store Geo Data Uploaded</string>
|
||||
<string name="title_geo_tag_activity_geo_already_done">Store Already Geotagged</string>
|
||||
|
||||
<string name="title_store_list_activity_store_already_done">Store Already Uploaded</string>
|
||||
<string name="title_store_list_activity_store_data_uploaded">Store Data Uploaded</string>
|
||||
<string name="title_store_list_activity_store_already_checkout">Store Already Checkout</string>
|
||||
<string name="title_store_list_activity_store_again_uploaded">Please Upload data again</string>
|
||||
<string name="title_store_list_activity_store_closed">Store Closed</string>
|
||||
<string name="title_store_list_activity_already_store_closed">Store Already Closed</string>
|
||||
|
||||
<string name="title_store_list_checkout_current">Please checkout from current store</string>
|
||||
<string name="title_store_list_checkout_Already_filled">Data already filled</string>
|
||||
|
||||
<string name="title_store_list_download_data">Please Download Data First</string>
|
||||
|
||||
<string name="enter_the_values">Enter the values</string>
|
||||
|
||||
<string name="title_activity_upload">Upload Data</string>
|
||||
<string name="no_data_for_upload">No Data For Upload</string>
|
||||
<string name="first_checkout_store">First checkout of store</string>
|
||||
@@ -127,7 +109,6 @@
|
||||
<string name="promo_compliance_promoAnnouncer">Promo Announcer</string>
|
||||
<string name="promo_compliance_runningPOS">Running on POS</string>
|
||||
<string name="promo_compliance_add">Add</string>
|
||||
|
||||
<string name="category_performance_period">Period</string>
|
||||
<string name="category_performance_msl_availability">MSL</string>
|
||||
<string name="category_performance_sos">SOS</string>
|
||||
@@ -138,7 +119,6 @@
|
||||
<string name="category_performance_ltm">LTM</string>
|
||||
<string name="category_performance_mtd">MTD</string>
|
||||
<string name="category_performance_lsv">LSV</string>
|
||||
|
||||
<string name="title_activity_store_wise_performance">Store wise Performance</string>
|
||||
<!--Gagan end new code 1-->
|
||||
|
||||
@@ -147,7 +127,6 @@
|
||||
<string name="Display">Display</string>
|
||||
<string name="Photo">Photo</string>
|
||||
<string name="title_activity_Additional_visibility">Additional Visibility</string>
|
||||
|
||||
<string name="title_activity_Want_save"> Are you sure you want to save</string>
|
||||
<string name="title_activity_Want_add"> Please Add Data</string>
|
||||
<string name="title_activity_Want_to_add">Are you sure you want to add</string>
|
||||
@@ -157,11 +136,9 @@
|
||||
<string name="title_activity_click_delete">Click Yes To Delete!</string>
|
||||
<string name="title_activity_select_dropdown">Please Select dropdown</string>
|
||||
<string name="title_activity_take_image">Please Take a image</string>
|
||||
|
||||
<string name="title_activity_fill_sku">Please fill sku data</string>
|
||||
<string name="title_activity_enter_quantity">Please enter Quantity</string>
|
||||
<string name="title_activity_save_data">Do you want to save the data</string>
|
||||
|
||||
<string name="clickimage">Please click the image</string>
|
||||
<string name="gps">GPS IS DISABLED...</string>
|
||||
<string name="gpsebale">Click ok to enable GPS.</string>
|
||||
@@ -174,19 +151,15 @@
|
||||
<string name="success">success</string>
|
||||
<string name="wantcheckout">Are you sure you want to Checkout</string>
|
||||
<string name="nonetwork"> No Network Connection. Please Check Your Internet Connection</string>
|
||||
|
||||
<string name="title_activity_Non_Work">Non Working Reason</string>
|
||||
<string name="closed">Close</string>
|
||||
|
||||
<string name="click_image">Please click image</string>
|
||||
<string name="fill_sku_data">Please fill SKU data</string>
|
||||
<string name="fill_gaps_data">Please fill GAP data</string>
|
||||
<string name="data_will_be_lost">Do you Want to proceed? Unsaved Data will be deleted.</string>
|
||||
|
||||
<string name="download_data">Downloading Data</string>
|
||||
<string name="store_visited">Store Visited</string>
|
||||
<string name="store_image">Click Store Front Image</string>
|
||||
|
||||
<string name="title_activity_store_image">Store Front Image</string>
|
||||
<string name="reason">Reason</string>
|
||||
<string name="select_reason">Select Reason</string>
|
||||
@@ -195,7 +168,6 @@
|
||||
<!--Gagan start new code 2-->
|
||||
<string name="stock_facing_planogram_dialog_title">Reference Image</string>
|
||||
<string name="title_activity_settings">Settings</string>
|
||||
|
||||
<string name="ok">OK</string>
|
||||
<string name="check_save_message">Are you sure you want to save</string>
|
||||
<string name="save_message">Data has been saved</string>
|
||||
@@ -211,36 +183,24 @@
|
||||
<string name="hello_blank_fragment">Hello blank fragment</string>
|
||||
<string name="title_activity_checkout">Checkout Activity</string>
|
||||
<string name="checkout_successful">Checkout Success</string>
|
||||
|
||||
<string name="NetworkError">Network Error ,</string>
|
||||
<string name="DataNot"> Data Not Uploaded ,</string>
|
||||
<string name="displayname">Display Name</string>
|
||||
<string name="adddatatoclick">Click Yes To Add Data</string>
|
||||
<string name="Remark">Remark</string>
|
||||
<string name="pleaseenterRemarks">Please fill Remark</string>
|
||||
|
||||
<string name="title_activity_service">Service</string>
|
||||
|
||||
<string name="data_downloaded_successfully">Data downloaded successfully</string>
|
||||
<string name="export_database">Export Database</string>
|
||||
<string name="data_exported_successfully">Database Exported Successfully</string>
|
||||
|
||||
<string name="databasexported">Database Exported And Uploaded Successfully</string>
|
||||
|
||||
<string name="data_uploaded_successfully">Data Uploaded Successfully</string>
|
||||
|
||||
<string name="uploadeddata">Uploaded Data</string>
|
||||
|
||||
<string name="previous_data_upload">Please Upload Previous Data First</string>
|
||||
|
||||
<string name="error_incorrect_username">This username is incorrect</string>
|
||||
|
||||
<string name="error">Error Uploading</string>
|
||||
|
||||
|
||||
<string name="gallery">Gallery</string>
|
||||
<string name="camera">Camera</string>
|
||||
|
||||
<string name="DELETE_ALERT_MESSAGE">Saved data will be lost - Do you want to continue?</string>
|
||||
<string name="NodataAvailable">No data available</string>
|
||||
<string name="Pleasedownaloaddata">Please download data</string>
|
||||
@@ -389,6 +349,7 @@
|
||||
<string name="discount_value">Discount Percentage</string>
|
||||
<string name="pls_select_sub_category">Please select Sub category</string>
|
||||
<string name="pls_select_brand">Please select Brand</string>
|
||||
<string name="pls_select_promo_type">Please select Promotion Type</string>
|
||||
<string name="pls_select_sku">Please select SKU</string>
|
||||
<string name="pls_enter_discount">Please enter discount percentage </string>
|
||||
<string name="pls_enter_price">Please enter price</string>
|
||||
@@ -396,7 +357,6 @@
|
||||
<string name="exists">Exists</string>
|
||||
<string name="price_flasher_available">Price flasher available?</string>
|
||||
<string name="title_activity_change_password">Change Password</string>
|
||||
|
||||
<string name="want_to_download">Do you want to download data</string>
|
||||
<string name="want_to_upload">Do you want to upload data</string>
|
||||
<string name="want_to_exit">Do you want to exit</string>
|
||||
@@ -422,9 +382,12 @@
|
||||
<string name="incorrect_mpin_limit_reached">Incorrect MPin limit reached</string>
|
||||
<string name="need_to_reset_mpin">Need to reset MPin</string>
|
||||
<string name="title_activity_counterfeit_products">Counterfeit Products</string>
|
||||
<string name="title_activity_competition_promo">Competition Promo</string>
|
||||
<string name="is_there_counterfeit_product">Is there counterfeit products in Store?</string>
|
||||
<string name="pls_enter_sku">Please enter SKU name</string>
|
||||
<string name="pls_enter_comment">Please enter comment</string>
|
||||
<string name="pls_enter_stock">Please enter Stock</string>
|
||||
<string name="pls_select_competitor">Please select Competitor</string>
|
||||
|
||||
<!--MPin-->
|
||||
<string name="forget_mpin">Forgot MPin</string>
|
||||
@@ -442,16 +405,20 @@
|
||||
<string name="store_detail">Store Detail</string>
|
||||
<string name="additional_stores">Additional Stores</string>
|
||||
<string name="gsk">GSK</string>
|
||||
<string name="competitor">Competitor</string>
|
||||
<string name="sos_detail">SOS Detail</string>
|
||||
<string name="title_activity_stock_pricing">Stock Pricing</string>
|
||||
|
||||
<!--Stock Pricing-->
|
||||
<string name="price">Price</string>
|
||||
<!--Audit Turkey Number Input-->
|
||||
<string name="pls_fill_stock_count">Please fill Stock Count</string>
|
||||
<string name="title_activity_counterfeit_indicator_web">Counterfeit Indicators</string>
|
||||
|
||||
<string name="additional_adhoc_stores">Additional Stores - Adhoc</string>
|
||||
|
||||
<!-- usk competition promotion-->
|
||||
<string name="promotion_type">Promo Type</string>
|
||||
<string name="competitor">Competitor Name</string>
|
||||
<string name="comment">Comment</string>
|
||||
<string name="competition_promotion">Competition Promotion</string>
|
||||
|
||||
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user