initial commit

This commit is contained in:
2019-03-16 17:18:27 +03:00
parent 02ff66bd16
commit 8b066ff771
155 changed files with 1161 additions and 787 deletions

View File

@@ -7,11 +7,11 @@
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white"
tools:context="ch.pizzapp.android.activity.AddAddressActivity"
tools:context="ch.pizzamaxx.android.activity.AddAddressActivity"
android:focusable="true"
android:focusableInTouchMode="true">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/addAddressToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -56,7 +56,7 @@
android:orientation="vertical"
android:background="@color/white">
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/address1PizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -64,7 +64,7 @@
app:inputType="address"
app:hint="@string/addres_line_1"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/postcodePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -72,14 +72,14 @@
app:inputType="postcode"
app:hint="@string/postcode"/>
<ch.pizzapp.android.view.AppDropdownView
<ch.pizzamaxx.android.view.AppDropdownView
android:id="@+id/cityPizzalinkDropdown"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:dropdownTheme="navy"
app:dropdownHintView="@string/city"/>
<ch.pizzapp.android.view.AppDropdownView
<ch.pizzamaxx.android.view.AppDropdownView
android:id="@+id/countryPizzalinkDropdown"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -87,7 +87,7 @@
app:dropdownHintView="@string/country"
android:visibility="gone"/>
<ch.pizzapp.android.view.AppDropdownView
<ch.pizzamaxx.android.view.AppDropdownView
android:id="@+id/zonePizzalinkDropdown"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -7,7 +7,7 @@
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white"
tools:context="ch.pizzapp.android.activity.CampaignProductDetailsActivity">
tools:context="ch.pizzamaxx.android.activity.CampaignProductDetailsActivity">
<ImageView
android:layout_width="36dp"

View File

@@ -5,7 +5,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="ch.pizzapp.android.activity.CampaignProductListActivity">
tools:context="ch.pizzamaxx.android.activity.CampaignProductListActivity">
<ImageView
android:layout_width="match_parent"
@@ -13,7 +13,7 @@
android:scaleType="centerCrop"
android:src="@drawable/background_wood"/>
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/campaignProductsAppToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -8,9 +8,9 @@
android:background="@color/white"
android:focusable="true"
android:focusableInTouchMode="true"
tools:context="ch.pizzapp.android.activity.CreateOrderActivity">
tools:context="ch.pizzamaxx.android.activity.CreateOrderActivity">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/orderToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -42,7 +42,7 @@
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
tools:context="ch.pizzapp.android.activity.CreateOrderActivity">
tools:context="ch.pizzamaxx.android.activity.CreateOrderActivity">
<LinearLayout
android:id="@+id/stepIndicatorLayout"

View File

@@ -9,9 +9,9 @@
android:background="@color/white"
android:focusable="true"
android:focusableInTouchMode="true"
tools:context="ch.pizzapp.android.activity.ForgotPasswordActivity">
tools:context="ch.pizzamaxx.android.activity.ForgotPasswordActivity">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/forgotPasswordPizzalinkToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -45,7 +45,7 @@
android:text="@string/reset_password_hint"
android:textColor="@color/white" />
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/forgotPasswordEmailPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -7,11 +7,11 @@
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white"
tools:context="ch.pizzapp.android.activity.LoginActivity"
tools:context="ch.pizzamaxx.android.activity.LoginActivity"
android:focusable="true"
android:focusableInTouchMode="true">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/loginAppToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -42,14 +42,14 @@
android:src="@drawable/splash_logo"
android:layout_gravity="center_horizontal" />
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/emailPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/email"
app:inputType="email" />
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/passwordPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -7,9 +7,9 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="ch.pizzapp.android.activity.MainActivity">
tools:context="ch.pizzamaxx.android.activity.MainActivity">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/pizzalinkToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -6,9 +6,9 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
tools:context="ch.pizzapp.android.activity.MyAddressesActivity">
tools:context="ch.pizzamaxx.android.activity.MyAddressesActivity">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/myAddressesToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -8,11 +8,11 @@
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white"
tools:context="ch.pizzapp.android.activity.OrderHistoryDetailsActivity"
tools:context="ch.pizzamaxx.android.activity.OrderHistoryDetailsActivity"
android:focusable="true"
android:focusableInTouchMode="true">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/orderHistoryDetailsToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -53,32 +53,32 @@
android:orientation="vertical"
android:background="@color/white">
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderDatePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_history_order_date" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderStatusPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_history_order_status"
android:visibility="gone"/>
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderShippingTimePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_history_order_shipping_time" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderTotalPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_history_order_total" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderPaymentMethodPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -107,25 +107,25 @@
</LinearLayout>
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderFullnamePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_history_order_fullname" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderShippingMethodPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_history_order_shipping_method" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderShippingAddressPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_history_order_shipping_address" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderNotePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -7,11 +7,11 @@
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white"
tools:context="ch.pizzapp.android.activity.RegisterActivity"
tools:context="ch.pizzamaxx.android.activity.RegisterActivity"
android:focusable="true"
android:focusableInTouchMode="true">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/registerToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -41,76 +41,76 @@
android:layout_height="wrap_content"
android:orientation="vertical">
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/firstnamePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:inputType="name"
app:hint="@string/firstname"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/lasstnamePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:inputType="name"
app:hint="@string/lastname"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/telephonePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/telephone"
app:inputType="phone"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/emailPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/email"
app:inputType="email"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/passwordPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/password"
app:inputType="password"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/passwordAgainPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/password_again"
app:inputType="password"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/address1PizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:inputType="address"
app:hint="@string/addres_line_1"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/postcodePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:inputType="postcode"
app:hint="@string/postcode"/>
<ch.pizzapp.android.view.AppDropdownView
<ch.pizzamaxx.android.view.AppDropdownView
android:id="@+id/cityPizzalinkDropdown"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:dropdownHintView="@string/city"/>
<ch.pizzapp.android.view.AppDropdownView
<ch.pizzamaxx.android.view.AppDropdownView
android:id="@+id/countryPizzalinkDropdown"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:dropdownHintView="@string/country"
android:visibility="gone"/>
<ch.pizzapp.android.view.AppDropdownView
<ch.pizzamaxx.android.view.AppDropdownView
android:id="@+id/zonePizzalinkDropdown"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -6,7 +6,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="ch.pizzapp.android.activity.SplashActivity"
tools:context="ch.pizzamaxx.android.activity.SplashActivity"
android:background="@color/white">
<ImageView

View File

@@ -8,9 +8,9 @@
android:background="@color/white"
android:focusable="true"
android:focusableInTouchMode="true"
tools:context="ch.pizzapp.android.activity.UpdatePasswordActivity">
tools:context="ch.pizzamaxx.android.activity.UpdatePasswordActivity">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/updatePasswordToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -42,7 +42,7 @@
android:layout_height="match_parent"
android:orientation="vertical">
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/oldPasswordPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -50,7 +50,7 @@
app:inputType="password"
app:hint="@string/hint_old_password"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/newPasswordPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -58,7 +58,7 @@
app:inputType="password"
app:hint="@string/hint_new_password"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/confirmNewPasswordPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -8,9 +8,9 @@
android:background="@color/white"
android:focusable="true"
android:focusableInTouchMode="true"
tools:context="ch.pizzapp.android.activity.UpdateProfileActivity">
tools:context="ch.pizzamaxx.android.activity.UpdateProfileActivity">
<ch.pizzapp.android.view.AppToolbar
<ch.pizzamaxx.android.view.AppToolbar
android:id="@+id/updateProfileToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -47,7 +47,7 @@
android:orientation="vertical"
android:layout_above="@+id/updateProfileButton">
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/firstnamePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -55,7 +55,7 @@
app:inputType="name"
app:hint="@string/firstname"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/lasstnamePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -63,7 +63,7 @@
app:inputType="name"
app:hint="@string/lastname"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/telephonePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -71,7 +71,7 @@
app:hint="@string/telephone"
app:inputType="phone"/>
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/emailPizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -11,7 +11,7 @@
android:focusable="true"
android:focusableInTouchMode="true">
<ch.pizzapp.android.view.AppEditText
<ch.pizzamaxx.android.view.AppEditText
android:id="@+id/orderNotePizzalinkEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -23,32 +23,32 @@
android:layout_height="wrap_content"
android:orientation="vertical">
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderPersonFullnamePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_person_fullname" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderShippingMethodPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_shipping_method" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderShippingAddressPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_shipping_address" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderPaymentMethodPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/order_payment_method" />
<!--
<ch.pizzapp.android.view.AppInfoView
<pizzamaxxxx.android.view.AppInfoView
android:id="@+id/orderTotalPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -97,7 +97,7 @@
android:layout_height="wrap_content"
android:scrollbars="none"/>
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/orderNotePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -34,31 +34,31 @@
android:layout_height="wrap_content"
android:orientation="vertical">
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/pizzapassCountPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/pizza_pass" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/firstnamePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/profile_firstname" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/lastnamePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/profile_lastname" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/emailPizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:description="@string/profile_email" />
<ch.pizzapp.android.view.AppInfoView
<ch.pizzamaxx.android.view.AppInfoView
android:id="@+id/phonePizzalinkInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -0,0 +1,242 @@
<resources>
<!-- General-->
<string name="app_name">Pizzamaxx</string>
<string name="something_went_wrong">Es ist ein Fehler aufgetreten.</string>
<string name="alert">Warnung</string>
<string name="error_message">Es ist ein Fehler aufgetreten.</string>
<string name="bad_request">Bad Request</string>
<string name="failed">Connection failed</string>
<string name="ok">Ok</string>
<string name="cancel">Beenden</string>    
<string name="loading">Bitte warten...</string>    
<string name="month_name_january">Jan.</string>    
<string name="month_name_february">Feb.</string>    
<string name="month_name_march">März</string>    
<string name="month_name_april">Apr.</string>    
<string name="month_name_may">Mai</string>    
<string name="month_name_jun">Juni</string>    
<string name="month_name_july">Juli</string>  
<string name="month_name_august">Aug.</string>    
<string name="month_name_september">Sept.</string>    
<string name="month_name_october">Okt.</string>  
<string name="month_name_november">Nov.</string> 
<string name="month_name_december">Dez.</string>
<string name="chf">CHF</string> 
<string name="empty_description">..</string>
<string name="choose">Wählen</string>
<string name="need_to_login_for_shopping">Bitte einloggen um zu bestellen.</string>
<string name="need_to_login_for_that_part">Sie müssen sich registrieren um diese Seite zu besuchen.</string>
<string name="cancel_all_caps">BEENDEN</string>
<!-- General-->
<!-- SplashActivity -->  
<string name="no_network_message">Keine Internetverbindung. Bitte versuchen Sie es später noch einmal.</string>
<string name="alert_update_app">Sie müssen die PizzApp-Applikation aktualisieren, um sie zu verwenden.</string>
<string name="update_app">AKTUALISIEREN</string>
<string name="choose_store">Wählen Sie Postleitzahl</string>
<string name="choose_post_code">Code Postal</string>
<string name="choose_post_code_button">GO!</string>
<!-- SplashActivity -->
<!-- LoginActivity-->
<string name="activity_title_login">Einloggen</string>
<string name="button_login">EINLOGGEN</string>
<string name="not_have_an_accaount">Sie haben kein Konto?</string>
<string name="register_text">REGISTRIEREN</string>    
<string name="forgot_password_hint">Haben Sie Ihr Passwort vergessen?</string>  
<string name="reset_password"><b><u>\nPASSWORT ZURÜCKSETZEN</u></b></string>
<string name="login_as_guest">Als Gast einloggen</string>
<!-- LoginActivity-->
<!-- ForgotPasswordActivity-->
<string name="activity_title_forgot_password">Passwort vergessen</string>    
<string name="reset_password_hint"> Geben sie beim registrieren ihre E-Mail-Adresse ein und folgen Sie den Anweisungen.</string>
    
<string name="reset_password_button">SENDEN</string>    
<string name="password_reset">Erforderliche Informationen wurden an Ihre E-Mail-Adresse geschickt. Folgen Sie den Anweisungen um Ihr Passwort zurückzusetzen.</string>
<!-- ForgotPasswordActivity-->
<!-- RegisterActivity-->
<string name="activity_title_register">Registrieren</string>    
<string name="firstname">Vorname</string>    
<string name="lastname">Nachname</string>    
<string name="telephone">Natel</string>    
<string name="email">E-Mail-Adresse</string>    
<string name="password">Passwort</string>    
<string name="password_again">Passwort (erneut eingeben)</string>    
<string name="addres_line_1">Adresse</string>    
<string name="addres_line_2">Adresse 2</string>    
<string name="city">Stadt</string>    
<string name="postcode">Postleitzahl</string>    
<string name="zone">Gebiet</string>    
<string name="country">Land</string> 
<string name="alert_fill_all_fields">Bitte füllen Sie alle Felder aus.</string>    
<string name="alert_invalid_email">Bitte geben sie eine gültige E-Mail-Adresse ein.</string>  
<string name="alert_passwords_not_matched">Passwörter stimmen nicht überein.</string>    
<string name="alert_invalid_post_code">Bitte geben sie eine gültige Postleitzahl ein.</string> 
  
<string name="alert_select_country_first">Bitte wählen Sie zuerst ein Land.</string>    
<string name="button_register">REGISTRIEREN</string>
<!-- RegisterActivity-->
<!-- MainAcitivity -->    
<string name="bottom_nav_menu_item_menu">Menu</string>    
<string name="bottom_nav_menu_item_cart">Warenkorb</string>    
<string name="bottom_nav_menu_item_history">Bestellungshistorie</string>    
<string name="bottom_nav_menu_item_profile">Mein Konto</string>    
<string name="bottom_nav_menu_item_info">Info</string>
<string name="cart_total">ZWISHENSUMME</string>
<!-- MainAcitivity -->
<!-- ProductPropertiesBottomSheetDialog -->    
<string name="add_to_cart">IN DEN WARENKORB</string>    
<string name="count">Stückzahl</string>    
<string name="no_options_selected_part">wurde nicht ausgewählt.</string>
<string name="cannot_use_campaign">Kampagne kann nicht in den Warenkorb gelegt werden, da sie schon benutzt wurde.</string>
<string name="restaurant_out_of_order">Bestellung ausserhalb der Öffnungszeiten. Bitte den gewünschten Liefertermin auswählen.</string>
<string name="restaurant_out_of_order_on_selected_date">Restaurant am gewählten Datum und Uhrzeit ausser Betrieb. Möchten Sie eine Bestellung für ein anderes Datum und eine andere Uhrzeit geben?</string>
<!-- ProductPropertiesBottomSheetDialog -->
<!-- CartFragment-->    
<string name="continue_cart">WEITER</string>    
<string name="clear_cart">ALLE LÖSCHEN</string>    
<string name="no_product_on_cart">Es befindet sich kein Produkt im Warenkorb.</string>    
<string name="alert_remove_prdocut_from_cart">Möchten Sie das Produkt aus dem Warenkorb entfernen?</string>
    
<string name="product_removed_from_cart">Produkt wurde aus dem Warenkorb entfernt.</string>    
<string name="alert_clear_cart">Möchten Sie alle Produkte aus dem Warenkorb entfernen?</string>
<string name="minimum_order_price_alert_part_1">Die Summe Ihres Warenkorbes muss mindestens</string>
<string name="minimum_order_price_alert_part_2">betragen, um die Bestellung auszuführen.</string>
<!-- CartFragment-->
<!-- OrderHistoryFragment-->
<string name="order_history_total">Gesamtbetrag :</string>    
<string name="order_history_date">Datum</string>    
<string name="order_history_status">Status</string>
<string name="repeat_order_lowercased"><u>Bestellung Wiederholen</u></string>
<!-- OrderHistoryFragment-->
<!-- OrderHistoryDetailsActivity-->
<string name="activity_title_order_history_details">Bestellungsdetail</string>    
<string name="order_history_order_date">BESTELLUNGSDATUM</string>    
<string name="order_history_order_status">STATUS</string>    
<string name="order_history_order_shipping_time">VERSANDZEIT</string>    
<string name="order_history_order_total">ZWISHENSUMME</string>    
<string name="order_history_order_payment_method">ZAHLUNGSART</string>    
<string name="order_products">PRODUKTE</string>    
<string name="order_history_order_fullname">VOLLNAME</string>    
<string name="order_history_order_shipping_method">LIEFERUNGSART</string>    
<string name="order_history_order_shipping_address">LIEFERUNGSADRESSE</string>     
<string name="order_history_order_note">BEMERKUNGEN</string> 
<string name="repeat_order_uppercased">BESTELLUNG WIEDERHOLEN</string>
<!-- OrderHistoryDetailsActivity-->
<!-- CreateOrderActivity --> 
<string name="activity_title_create_order">Bestellen</string>    
<string name="next">NÄCHSTE</string>    
<string name="previous">VORHERIGE</string>    
<string name="confirm_order">JETZT BESTELLEN</string>    
<string name="done_order">FERTIG</string>    
<string-array name="stepperLabels">
<item>Lieferung</item>
<item>Adresse</item>        
<item>Zahlung</item>
<item>Bemerkung</item>        
<item>Übersicht</item>    
</string-array>
<!-- CreateOrderActivity -->
<!-- ShippingMethodFragment-->    
<string name="alert_choose_shipping_method">Bitte wählen Sie eine Lieferungsmethode</string>
<string name="shipping_method_info">Der Mindestbestellwert für die kostenlose Lieferung beträgt</string>
<!-- ShippingMethodFragment-->
    
<!-- ShippingAddressFragment-->
<string name="add_new_shipping_address">ABWEICHENDE LIEFERADRESSE</string>
<string name="alert_choose_shipping_address">Bitte wählen Sie eine Lieferungsadresse aus oder fügen Sie eine neue Lieferungsadresse hinzu.</string>
<!-- ShippingAddressFragment-->
<!-- PaymentMethodFragment-->
<string name="alert_choose_payment_method">Bitte wählen Sie ein Bezahlverfahren aus.</string>
<string name="coupon_code">Gutscheincode (Wahlweise)</string>
<string name="payment_method">Zahlungsart</string>
<string name="coupon_used_dialog_title">Gutscheincode</string>
<string name="coupon_used_dialog_content_part_1">Sie haben erfolgreich Ihre</string>
<string name="coupon_used_dialog_content_part_2">eingelöst.</string>
<string name="coupon_is_not_active">Der Coupon ist nicht aktiv.</string>
<!-- PaymentMethodFragment-->
<!-- CreateOrderNoteFragment-->
<string name="order_note">Was sollen wir beachten?</string>
<string name="slice_pizza_for_customer">Aus Gründen der Qualität empfehlen wir nicht, die Pizza zu schneiden</string>
<string name="slice_pizza">Bitte Pizza Schneiden</string>
<string name="do_not_slice_pizza">Nein, bitte Pizza nicht schneiden</string>
<!-- CreateOrderNoteFragment-->
<!-- CreateOrderSummaryFragment-->    
<string name="order_person_fullname">AN</string>    
<string name="order_shipping_method">LIEFERUNGSART</string>    
<string name="order_shipping_address">LIEFERUNGSADRESSE</string>    
<string name="order_payment_method">ZAHLUNGSART</string>    
<string name="order_product_list">WARENKORB</string>    
<string name="order_total">KASSE</string>
<string name="order_notee">BEMERKUNGEN</string>
<string name="slice_pizza_for_store">Die Pizza zu schneiden</string>
<string name="delivery_date">Lieferungsdatum:</string>
<string name="delivery_time">Lieferungszeit:</string>
<string name="today">HEUTE</string>
<string name="unknown_payment_method">Unbekannte Zahlungsmethode.</string>
<string name="payment_canceled">Die Zahlung wurde storniert.</string>
<string name="andorid_pay_not_found">Android Pay konnte nicht finden.</string>
<!-- CreateOrderSummaryFragment-->
<!-- CreateOrderResultFragment-->
<string name="order_successed">Die Bestellung wurde erfolgreich entgegengenommen und wird schnellstmöglich bearbeitet.\n\nSie werden eine Bestätigungs-Email erhalten. Sollte die E-mail nach 1 Minute nicht eingetroffen sein, schauen Sie bitte in Ihrem Spam-, Bulk- oder Junk Mail Ordner nach.\n\nVielen Dank für den Einkauf bei uns.</string>
<string name="accept_campaign">JA</string>
<string name="decline_campaign">NEIN</string>
<!-- CreateOrderSummaryFragment-->
<!-- ProfileFragment-->    
<string name="pizza_pass">PIZZA PASS</string>    
<string name="profile_firstname">VORNAME</string>    
<string name="profile_lastname">NACHNAME</string>    
<string name="profile_telephone">NATEL</string>    
<string name="profile_email">E-MAIL-ADRESSE</string>    
<string name="my_addresses">Meine Adressen</string>    
<string name="update_profile">Profil Aktualisieren</string>    
<string name="update_password">Passwort Aktualisieren</string>    
<string name="enable_notifications">Benachrichtigungen Aktivieren</string>    
<string name="change_post_code">Postleitzahl Ändern</string>    
<string name="alert_logout">Möchten Sie sich abmelden?</string>
<string name="button_logout">Abmelden</string> 
<!-- ProfileFragment-->
<!-- UpdateProfilectivity-->
<string name="activity_title_update_profile">Profil Aktualisieren</string>
<string name="profile_updated">Ihr Profil wurde erfolgreich aktualisiert..</string>
<!-- UpdateProfilectivity-->
<!-- UpdatePasswordActivity-->    
<string name="activity_title_update_password">Passwort Aktualisieren</string>    
<string name="hint_old_password">Altes Passwort</string>    
<string name="hint_new_password">Neues Passwort</string>    
<string name="hint_confirm_new_password">Neues Passwort (erneut eingeben)</string>    
<string name="password_updated">Ihr Passwort wurde erfolgreich aktualisiert.</string>
<!-- UpdatePasswordActivity-->
<!-- MyAddressesActivity-->    
<string name="activity_title_my_addresses">Meine Adressen</string>    
<string name="add_new_address">NEUE ADRESSE HINZUFÜGEN</string>    
<string name="alert_delete_address">Möchten Sie diese Adresse löschen?</string>    
<string name="address_deleted">Ihre Adresse wurde erfolgreich gelöscht.</string>
<!-- MyAddressesActivity-->
<!-- AddAddressActivity-->
<string name="activity_title_add_address">Neue Adresse hinzufügen</string> 
<string name="add">HINZUFÜGEN</string>    
<string name="new_address_added">Adresse wurde erfolgreich hinzugefügt.</string>
<!-- AddAddressActivity-->
</resources>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#D03F3F</color>
</resources>

View File

@@ -1,7 +1,7 @@
<resources>
<!-- General-->
<string name="app_name">PizzApp</string>
<string name="app_name">Pizzamaxx</string>
<string name="something_went_wrong">Es ist ein Fehler aufgetreten.</string>
<string name="alert">Warnung</string>
<string name="error_message">Es ist ein Fehler aufgetreten.</string>
@@ -35,7 +35,7 @@
<string name="alert_update_app">Sie müssen die PizzApp-Applikation aktualisieren, um sie zu verwenden.</string>
<string name="update_app">AKTUALISIEREN</string>
<string name="choose_store">Wählen Sie Postleitzahl</string>
<string name="choose_post_code">Ihre PLZ</string>
<string name="choose_post_code">Postleitzahl</string>
<string name="choose_post_code_button">GO!</string>
<!-- SplashActivity -->
@@ -61,7 +61,7 @@
<string name="activity_title_register">Registrieren</string>    
<string name="firstname">Vorname</string>    
<string name="lastname">Nachname</string>    
<string name="telephone">Natal</string>    
<string name="telephone">Natel</string>    
<string name="email">E-Mail-Adresse</string>    
<string name="password">Passwort</string>    
<string name="password_again">Passwort (erneut eingeben)</string>    
@@ -201,7 +201,7 @@
<string name="pizza_pass">PIZZA PASS</string>    
<string name="profile_firstname">VORNAME</string>    
<string name="profile_lastname">NACHNAME</string>    
<string name="profile_telephone">NATAL</string>    
<string name="profile_telephone">NATEL</string>    
<string name="profile_email">E-MAIL-ADRESSE</string>    
<string name="my_addresses">Meine Adressen</string>    
<string name="update_profile">Profil Aktualisieren</string>