47 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<!--
 | 
						|
     Copyright (C) 2023 The Android Open Source Project
 | 
						|
 | 
						|
     Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
     you may not use this file except in compliance with the License.
 | 
						|
     You may obtain a copy of the License at
 | 
						|
 | 
						|
          https://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
     Unless required by applicable law or agreed to in writing, software
 | 
						|
     distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
     See the License for the specific language governing permissions and
 | 
						|
     limitations under the License.
 | 
						|
-->
 | 
						|
<resources>
 | 
						|
    <string name="app_name">Bread</string>
 | 
						|
    <string name="order_bread">Order Bread</string>
 | 
						|
    <string name="one_bread">One Bread</string>
 | 
						|
    <string name="six_bread">Six Breads</string>
 | 
						|
    <string name="twelve_bread">Twelve Breads</string>
 | 
						|
    <string name="choose_flavor">Choose Flavor</string>
 | 
						|
    <string name="coconut">Coconut</string>
 | 
						|
    <string name="chocolate">Chocolate</string>
 | 
						|
    <string name="cheese">Cheese</string>
 | 
						|
    <string name="mocha">Mocha</string>
 | 
						|
    <string name="coffee">Coffee</string>
 | 
						|
    <string name="special_flavor">Special Flavor</string>
 | 
						|
    <string name="cancel">Cancel</string>
 | 
						|
    <string name="next">Next</string>
 | 
						|
    <string name="choose_pickup_date">Choose Pickup Date</string>
 | 
						|
    <string name="order_summary">Order Summary</string>
 | 
						|
    <string name="send">Send Order to Another App</string>
 | 
						|
    <string name="quantity">Quantity</string>
 | 
						|
    <string name="flavor">Flavor</string>
 | 
						|
    <string name="pickup_date">Pickup date</string>
 | 
						|
    <string name="subtotal_price">Subtotal %s</string>
 | 
						|
    <string name="total_price">Total %s</string>
 | 
						|
    <string name="new_bread_order">New Bread Order</string>
 | 
						|
    <string name="order_details">Quantity: %1$s \nFlavor: %2$s \nPickup date: %3$s \nTotal: %4$s \n\nThank you!</string>
 | 
						|
    <string name="back_button">Back</string>
 | 
						|
    <plurals name="bread">
 | 
						|
        <item quantity="one">%d bread</item>
 | 
						|
        <item quantity="other">%d bread</item>
 | 
						|
    </plurals>
 | 
						|
</resources>
 |