summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2010-08-04 18:14:08 -0700
committerMichael Jurka <mikejurka@google.com>2010-08-04 18:19:40 -0700
commitd4ede5325bb7b0da58d8a03a6246d8daae31fb97 (patch)
tree8d236619c5bcf10983baabf59d6fb7350788e29c
parent7247f6315baf16eacb3286f21bd80321385c1def (diff)
downloadandroid_packages_apps_Trebuchet-d4ede5325bb7b0da58d8a03a6246d8daae31fb97.tar.gz
android_packages_apps_Trebuchet-d4ede5325bb7b0da58d8a03a6246d8daae31fb97.tar.bz2
android_packages_apps_Trebuchet-d4ede5325bb7b0da58d8a03a6246d8daae31fb97.zip
improved comments in strings file
- also added/updated some copyright notices
-rw-r--r--res/drawable-xlarge/search_button.xml2
-rw-r--r--res/values/strings.xml10
-rw-r--r--src/com/android/launcher2/FolderListAdapter.java16
-rw-r--r--src/com/android/launcher2/HomeCustomizationItemGallery.java17
4 files changed, 44 insertions, 1 deletions
diff --git a/res/drawable-xlarge/search_button.xml b/res/drawable-xlarge/search_button.xml
index 6d5d949be..8f18e677e 100644
--- a/res/drawable-xlarge/search_button.xml
+++ b/res/drawable-xlarge/search_button.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2008 The Android Open Source Project
+<!-- Copyright (C) 2010 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.
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 60cf9ca3b..0a704f812 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -45,14 +45,24 @@
<string name="configure_wallpaper">Configure...</string>
<!-- Labels for the tabs in the customize drawer -->
<string name="widgets_tab_label">Widgets</string>
+ <!-- Title of tab containing all possible folders (ie standard Folders and Live Folders) that
+ can be added to the home screen -->
<string name="folders_tab_label">Folders</string>
+ <!-- Title of tab containing all possible shortcuts (eg Contacts, Bookmarks) that can be
+ added to the home screen -->
<string name="shortcuts_tab_label">Shortcuts</string>
+ <!-- Title of tab for configuring wallpapers -->
<string name="wallpapers_tab_label">Wallpapers</string>
+ <!-- Placeholder text, will be removed -->
<string name="wallpapers_temp_tab_text">This will be the wallpapers tab</string>
<!-- Labels for the tabs in All Apps -->
+ <!-- Title of the tab for all applications (includes games and non-games) -->
<string name="all_apps_tab_all">All</string>
+ <!-- Title of the tab for all applications *except* games -->
<string name="all_apps_tab_apps">Apps</string>
+ <!-- Title of the tab for applications labeled as games -->
<string name="all_apps_tab_games">Games</string>
+ <!-- Tile of the tab for applications that were downloaded from market -->
<string name="all_apps_tab_downloaded">Downloaded</string>
<!-- Folders -->
diff --git a/src/com/android/launcher2/FolderListAdapter.java b/src/com/android/launcher2/FolderListAdapter.java
index bdfeaeb3d..ebb3332d6 100644
--- a/src/com/android/launcher2/FolderListAdapter.java
+++ b/src/com/android/launcher2/FolderListAdapter.java
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2010 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.
+ */
+
package com.android.launcher2;
import com.android.launcher.R;
diff --git a/src/com/android/launcher2/HomeCustomizationItemGallery.java b/src/com/android/launcher2/HomeCustomizationItemGallery.java
index df64d5e99..2eba49f14 100644
--- a/src/com/android/launcher2/HomeCustomizationItemGallery.java
+++ b/src/com/android/launcher2/HomeCustomizationItemGallery.java
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2010 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.
+ */
+
+
package com.android.launcher2;
import android.content.Context;