forked from udacity/Just-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final state of app at end of Lesson 3
- Loading branch information
Lyla
committed
Jul 8, 2015
1 parent
ee20086
commit d60ff1e
Showing
5 changed files
with
313 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!-- Copyright (C) 2015 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 | ||
http://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 xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> | ||
<!-- Title for the application. [CHAR LIMIT=12] --> | ||
<string name="app_name">Sólo Java</string> | ||
|
||
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] --> | ||
<string name="name">Nombre</string> | ||
|
||
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] --> | ||
<string name="toppings">Ingredientes</string> | ||
|
||
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] --> | ||
<string name="whipped_cream">Crema batida</string> | ||
|
||
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] --> | ||
<string name="chocolate">Chocolate</string> | ||
|
||
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] --> | ||
<string name="quantity">Cantidad</string> | ||
|
||
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=5] --> | ||
<string name="initial_quantity_value">2</string> | ||
|
||
<!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] --> | ||
<string name="order">Ordenar</string> | ||
|
||
<!-- | ||
Name for the order summary. It will be shown in the format of "Name: Amy" where Amy is the | ||
user's name. [CHAR LIMIT=NONE] | ||
--> | ||
<string name="order_summary_name">Nombre: <xliff:g id="name" example="Amy">%s</xliff:g></string> | ||
|
||
<!-- | ||
Whipped cream topping for the order summary. It will be shown in the format of | ||
"Add whipped cream? true" or "Add whipped cream? false". [CHAR LIMIT=NONE] | ||
--> | ||
<string name="order_summary_whipped_cream">Agregue la crema batida? <xliff:g id="addWhippedCream" example="true">%b</xliff:g></string> | ||
|
||
<!-- | ||
Chocolate topping for the order summary. It will be shown in the format of | ||
"Add chocolate? true" or "Add chocolate? false". [CHAR LIMIT=NONE] | ||
--> | ||
<string name="order_summary_chocolate">Agregue el chocolate? <xliff:g id="addChocolate" example="true">%b</xliff:g></string> | ||
|
||
<!-- | ||
Quantity of coffee cups for the order summary. It will be shown in the format of | ||
"Quantity: 2", where 2 is the number of cups ordered. [CHAR LIMIT=NONE] | ||
--> | ||
<string name="order_summary_quantity">Cantidad: <xliff:g id="quantity" example="2">%d</xliff:g></string> | ||
|
||
<!-- | ||
Total price for the order summary. It will be shown in the format of | ||
"Total: $10" where $10 is the price. [CHAR LIMIT=NONE] | ||
--> | ||
<string name="order_summary_price">Total: <xliff:g id="price" example="$10">%s</xliff:g></string> | ||
|
||
<!-- Thank you message for the order summary. [CHAR LIMIT=NONE] --> | ||
<string name="thank_you">¡Gracias!</string> | ||
|
||
<!-- | ||
Subject line for the order summary email. It will be in the format of | ||
"Just Java order for Amy" where Amy is the user's name. [CHAR LIMIT=NONE] | ||
--> | ||
<string name="order_summary_email_subject">Sólo java para <xliff:g id="name" example="Amy">%s</xliff:g></string> | ||
</resources> |
Oops, something went wrong.