b/4560383 pick googlemail.com by default in germany. DO NOT MERGE

Change-Id: I64ab42f5f2c3d85e9f71b0e2e5feaedf53801b69
diff --git a/res/values-mcc262/strings.xml b/res/values-mcc262/strings.xml
new file mode 100644
index 0000000..b7071a1
--- /dev/null
+++ b/res/values-mcc262/strings.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 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">
+    <!-- DO NOT TRANSLATE the domain to use for auto-completing email addresses-->
+    <string name="google_email_domain">googlemail.com</string>
+</resources>
\ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 59dbbc7..9a7f2b7 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -237,6 +237,8 @@
     <string name="content_description_edit_event_reminders">Reminders</string>
     <!-- The content description for the widget for removing a reminder from an event. [CHAR LIMIT=NONE] -->
     <string name="content_description_edit_event_remove_reminder">Remove reminder</string>
+<!-- DO NOT TRANSLATE the domain to use for auto-completing email addresses-->
+    <string name="google_email_domain">gmail.com</string>
 
     <!-- View Event -->
     <skip />
diff --git a/src/com/android/calendar/EditEvent.java b/src/com/android/calendar/EditEvent.java
index 43d99a3..59343a0 100644
--- a/src/com/android/calendar/EditEvent.java
+++ b/src/com/android/calendar/EditEvent.java
@@ -657,7 +657,7 @@
         long begin = intent.getLongExtra(EVENT_BEGIN_TIME, 0);
         long end = intent.getLongExtra(EVENT_END_TIME, 0);
 
-        String domain = "gmail.com";
+        String domain = getResources().getString(R.string.google_email_domain);
 
         boolean allDay = false;
         if (mEventCursor != null) {