Don't use "done" for string name.

Change-Id: Ied4449f02ef5683764fcfeb9b95b6d0c665c1132
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 3588ec3..d1c9c7f 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -25,5 +25,5 @@
     <string name="copy_number">Copy phone number</string>
     <!-- Text displayed in the enter key slot when the recipientedittextview has focus.
          [CHAR LIMIT=12] -->
-    <string name="done">Return</string>
+    <string name="action_label">Return</string>
 </resources>
diff --git a/src/com/android/ex/chips/RecipientEditTextView.java b/src/com/android/ex/chips/RecipientEditTextView.java
index fb8e81c..a98d8bb 100644
--- a/src/com/android/ex/chips/RecipientEditTextView.java
+++ b/src/com/android/ex/chips/RecipientEditTextView.java
@@ -398,7 +398,7 @@
         }
 
         outAttrs.actionId = EditorInfo.IME_ACTION_DONE;
-        outAttrs.actionLabel = getContext().getString(R.string.done);
+        outAttrs.actionLabel = getContext().getString(R.string.action_label);
         return connection;
     }